(defparameter *knext-default-features* nil "A list of features (keywords) that will be added to each new KNEXT-derived type and individual.") (setq *knext-default-features* '(:knext :noun)) ;; Checks whether the concept already exists in Scone and ;; if that is not the case, adds a new type with the specified ;; features and parent. (defun new-knext-type (iname parent &key (features *knext-default-features*)) ;; Skip duplicates. Create the new type-node. (let ((e (lookup-element iname))) ;; Add the features for this new type-node. (unless e (setq e (new-type iname parent)) (dolist (f features) (set-element-property e f))) e)) ;; Checks whether the individual already exists in Scone and ;; creates it if that is not the case. (defun new-knext-indv (iname parent &key (features *knext-default-features*)) ;; Skip duplicates. Create the new indv-node. (unless (lookup-element iname) ;; Add the features for this new indv-node. (let ((e (new-indv iname parent))) (dolist (f features) (set-element-property e f)) e))) ;; Creates the two elements being equated first using the ;; helper function new-knext-type and then adds an eq link. (defun new-knext-eq (one-all two-all) (let ((first-el (apply 'new-knext-type one-all)) (second-el (apply 'new-knext-type two-all))) (handler-case (new-eq first-el second-el) (error nil)))) ;; Creates the two elements being equated first using the ;; helper function new-knext-type and then adds an is-a link. (defun new-knext-is-a (one-all two-all) (let ((first-el (apply 'new-knext-type one-all)) (second-el (apply 'new-knext-type two-all))) (handler-case (new-is-a first-el second-el) (error nil)))) ;; Given a list of inames and strings for them, determines whether ;; one already exists as a concept. If so, adds the rest as English ;; spellings. Otherwise, creates a new concept and adds the English ;; spellings - the expected use case is that the first element of l ;; and s is the element to be used as a concept if none already ;; exist in Scone. (defun add-english-names (l s) (let ((i 0) (e (nth 0 l))) (loop while (and (not (lookup-element e)) (< i (length l))) do (setq i (+ i 1)) (setq e (nth i l))) (if (= i (length l)) (progn (setq i 0) (new-knext-type (nth 0 l) {thing}))) (let ((strings (append (subseq s 0 i) (subseq s i (length l))))) (setq strings (cons (nth i l) strings)) (apply 'english strings)))) ;; Creates the parent of the split and then uses ;; new-split-subtypes to create and add members ;; to the split. (defun new-knext-split (parent members) ;; Skip duplicates. Create the new type-node.) (new-knext-type parent {thing}) (dolist (m members) (new-knext-type m parent)) ;; Add all the members to the split. (new-split members :parent parent)) (in-namespace "common") (new-relation {consists of}) (new-knext-split {thing} '({countable} {uncountable})) (new-knext-eq '({unit} {thing}) '({whole} {thing})) (new-knext-eq '({animate thing} {thing}) '({living thing} {thing})) (new-knext-eq '({being} {thing}) '({organism} {thing})) (new-knext-eq '({cause} {thing}) '({causal agent} {thing})) (new-knext-eq '({causal agency} {thing}) '({causal agent} {thing})) (new-knext-eq '({individual} {thing}) '({person} {thing})) (new-knext-eq '({someone} {thing}) '({person} {thing})) (new-knext-eq '({somebody} {thing}) '({person} {thing})) (new-knext-eq '({mortal} {thing}) '({person} {thing})) (new-knext-eq '({soul} {thing}) '({person} {thing})) (new-knext-eq '({animate being} {thing}) '({animal} {thing})) (new-knext-eq '({beast} {thing}) '({animal} {thing})) (new-knext-eq '({brute} {thing}) '({animal} {thing})) (new-knext-eq '({creature} {thing}) '({animal} {thing})) (new-knext-eq '({fauna} {thing}) '({animal} {thing})) (new-knext-eq '({flora} {thing}) '({plant} {thing})) (new-knext-type {plant} {countable}) (new-knext-type {plant life} {countable}) (new-statement {plant life} {consists of} {plant}) (new-knext-type {plant life} {uncountable}) (new-knext-type {plant} {uncountable}) (new-statement {plant life} {consists of} {plant}) (new-knext-type {natural object} {countable}) (new-knext-type {artifact} {countable}) (new-is-not-a {natural object} {artifact}) (new-knext-type {food} {uncountable}) (new-knext-type {nutrient} {uncountable}) (new-statement {food} {consists of} {nutrient}) (new-knext-is-a '({nutrient} {countable}) '({food} {uncountable})) (add-english-names (list {artifact} {artefact} {artefact}) (list "artifact" "artefact" "artefact")) (new-knext-eq '({artifact} {thing}) '({artifact} {thing})) (new-knext-type {artifact} {countable}) (new-knext-type {natural object} {countable}) (new-is-not-a {artifact} {natural object}) (new-knext-eq '({motive} {thing}) '({motivation} {thing})) (new-knext-eq '({need} {thing}) '({motivation} {thing})) (new-knext-eq '({form} {thing}) '({shape} {thing})) (new-knext-eq '({deed} {thing}) '({human action} {thing})) (new-knext-eq '({human activity} {thing}) '({human action} {thing})) (new-knext-eq '({grouping} {thing}) '({group} {thing})) (new-knext-eq '({measure} {thing}) '({quantity} {thing})) (new-knext-eq '({amount} {thing}) '({quantity} {thing})) (new-knext-eq '({kindness} {thing}) '({benignity} {thing})) (new-knext-eq '({achievement} {thing}) '({accomplishment} {thing})) (new-knext-eq '({effort} {thing}) '({feat} {thing})) (new-knext-eq '({exploit} {thing}) '({feat} {thing})) (new-knext-eq '({reciprocation} {thing}) '({interchange} {thing})) (new-knext-eq '({getting} {thing}) '({acquiring} {thing})) (new-knext-eq '({causation} {thing}) '({causing} {thing})) (new-knext-eq '({going} {thing}) '({departure} {thing})) (new-knext-eq '({going away} {thing}) '({departure} {thing})) (new-knext-is-a '({departure} {countable}) '({leaving} {countable})) (new-knext-is-a '({leaving} {countable}) '({departure} {countable})) (new-knext-eq '({find} {thing}) '({discovery} {thing})) (new-knext-eq '({uncovering} {thing}) '({discovery} {thing})) (new-knext-eq '({disposition} {thing}) '({disposal} {thing})) (add-english-names (list {equalization} {equalisation} {equalization} {equalisation}) (list "equalization" "equalisation" "equalization" "equalisation")) (new-knext-eq '({equalization} {thing}) '({equalization} {thing})) (new-knext-is-a '({equalization} {uncountable}) '({leveling} {uncountable})) (new-knext-is-a '({leveling} {uncountable}) '({equalization} {uncountable})) (new-knext-is-a '({propulsion} {uncountable}) '({actuation} {uncountable})) (new-knext-is-a '({actuation} {uncountable}) '({propulsion} {uncountable})) (new-knext-eq '({retrieval} {thing}) '({recovery} {thing})) (new-knext-eq '({touch} {thing}) '({touching} {thing})) (new-knext-eq '({reaching} {thing}) '({arrival} {thing})) (new-knext-eq '({coming} {thing}) '({advent} {thing})) (new-knext-eq '({entrance} {thing}) '({incoming} {thing})) (new-knext-eq '({entering} {thing}) '({incoming} {thing})) (new-knext-eq '({ingress} {thing}) '({incoming} {thing})) (new-knext-is-a '({entry} {countable}) '({incoming} {countable})) (new-knext-is-a '({incoming} {countable}) '({entry} {countable})) (new-knext-eq '({enrollment} {thing}) '({registration} {thing})) (add-english-names (list {enrollment} {enrolment} {enrolment}) (list "enrollment" "enrolment" "enrolment")) (new-knext-eq '({enrollment} {thing}) '({registration} {thing})) (new-knext-eq '({homecoming} {thing}) '({return} {thing})) (new-knext-eq '({farewell} {thing}) '({parting} {thing})) (new-knext-eq '({leave} {thing}) '({parting} {thing})) (new-knext-eq '({disappearing} {thing}) '({disappearance} {thing})) (new-knext-type {disappearance} {countable}) (new-knext-type {appearance} {countable}) (new-is-not-a {disappearance} {appearance}) (new-knext-is-a '({escape} {countable}) '({flight} {countable})) (new-knext-is-a '({flight} {countable}) '({escape} {countable})) (new-knext-eq '({eluding} {thing}) '({elusion} {thing})) (new-knext-eq '({despatch} {thing}) '({dispatch} {thing})) (new-knext-is-a '({dispatch} {countable}) '({shipment} {countable})) (new-knext-is-a '({shipment} {countable}) '({dispatch} {countable})) (new-knext-eq '({realization} {thing}) '({fruition} {thing})) (add-english-names (list {realization} {realisation} {realization} {realisation}) (list "realization" "realisation" "realization" "realisation")) (new-knext-eq '({realization} {thing}) '({fruition} {thing})) (add-english-names (list {fulfillment} {fulfilment} {fulfilment}) (list "fulfillment" "fulfilment" "fulfilment")) (new-knext-eq '({fulfillment} {thing}) '({fulfillment} {thing})) (new-knext-eq '({smash} {thing}) '({hit} {thing})) (new-knext-eq '({smasher} {thing}) '({hit} {thing})) (new-knext-eq '({strike} {thing}) '({hit} {thing})) (new-knext-eq '({bang} {thing}) '({hit} {thing})) (new-knext-type {passing} {uncountable}) (new-knext-type {failing} {uncountable}) (new-is-not-a {passing} {failing}) (new-knext-type {passing} {uncountable}) (new-knext-type {qualifying} {uncountable}) (new-statement {passing} {consists of} {qualifying}) (new-knext-is-a '({qualifying} {countable}) '({passing} {uncountable})) (new-knext-eq '({nonachievement} {thing}) '({nonaccomplishment} {thing})) (new-knext-eq '({surrender} {thing}) '({capitulation} {thing})) (new-knext-is-a '({capitulation} {countable}) '({fall} {countable})) (new-knext-is-a '({fall} {countable}) '({capitulation} {countable})) (new-knext-eq '({error} {thing}) '({mistake} {thing})) (new-knext-eq '({fault} {thing}) '({mistake} {thing})) (new-knext-eq '({smear} {thing}) '({smirch} {thing})) (new-knext-eq '({stain} {thing}) '({smirch} {thing})) (new-knext-is-a '({blot} {countable}) '({smirch} {countable})) (new-knext-is-a '({smirch} {countable}) '({blot} {countable})) (new-knext-is-a '({oversight} {countable}) '({lapse} {countable})) (new-knext-is-a '({lapse} {countable}) '({oversight} {countable})) (new-knext-eq '({skip} {thing}) '({omission} {thing})) (new-knext-eq '({blooper} {thing}) '({blunder} {thing})) (new-knext-eq '({bloomer} {thing}) '({blunder} {thing})) (new-knext-eq '({pratfall} {thing}) '({blunder} {thing})) (new-knext-eq '({fuckup} {thing}) '({blunder} {thing})) (new-knext-eq '({flub} {thing}) '({blunder} {thing})) (new-knext-eq '({botch} {thing}) '({blunder} {thing})) (new-knext-eq '({boner} {thing}) '({blunder} {thing})) (new-knext-is-a '({blunder} {countable}) '({bungle} {countable})) (new-knext-is-a '({bungle} {countable}) '({blunder} {countable})) (new-knext-eq '({cockup} {thing}) '({ballup} {thing})) (new-knext-eq '({gaffe} {thing}) '({faux pas} {thing})) (new-knext-eq '({solecism} {thing}) '({faux pas} {thing})) (new-knext-eq '({slip} {thing}) '({faux pas} {thing})) (new-knext-is-a '({faux pas} {countable}) '({gaucherie} {countable})) (new-knext-is-a '({gaucherie} {countable}) '({faux pas} {countable})) (new-knext-eq '({obtention} {thing}) '({obtainment} {thing})) (new-knext-eq '({purchasing} {thing}) '({buying} {thing})) (new-knext-eq '({heritage} {thing}) '({inheritance} {thing})) (new-knext-eq '({collar} {thing}) '({taking into custody} {thing})) (new-knext-eq '({pinch} {thing}) '({taking into custody} {thing})) (new-knext-eq '({apprehension} {thing}) '({arrest} {thing})) (new-knext-is-a '({arrest} {countable}) '({taking into custody} {countable})) (new-knext-is-a '({taking into custody} {countable}) '({arrest} {countable})) (new-knext-eq '({return} {thing}) '({regaining} {thing})) (new-knext-eq '({restoration} {thing}) '({regaining} {thing})) (new-knext-is-a '({restitution} {countable}) '({regaining} {countable})) (new-knext-is-a '({regaining} {countable}) '({restitution} {countable})) (new-knext-eq '({reception} {thing}) '({receipt} {thing})) (new-knext-is-a '({discard} {countable}) '({throwing away} {countable})) (new-knext-is-a '({throwing away} {countable}) '({discard} {countable})) (new-knext-eq '({vendue} {thing}) '({auction sale} {thing})) (new-knext-is-a '({auction} {countable}) '({auction sale} {countable})) (new-knext-is-a '({auction sale} {countable}) '({auction} {countable})) (new-knext-eq '({delivery} {thing}) '({rescue} {thing})) (new-knext-eq '({saving} {thing}) '({rescue} {thing})) (new-knext-is-a '({rescue} {countable}) '({deliverance} {countable})) (new-knext-is-a '({deliverance} {countable}) '({rescue} {countable})) (new-knext-is-a '({reparation} {uncountable}) '({amends} {uncountable})) (new-knext-is-a '({amends} {uncountable}) '({reparation} {uncountable})) (new-knext-eq '({performance} {thing}) '({carrying into action} {thing})) (new-knext-eq '({execution} {thing}) '({carrying into action} {thing})) (new-knext-is-a '({carrying out} {uncountable}) '({carrying into action} {uncountable})) (new-knext-is-a '({carrying into action} {uncountable}) '({carrying out} {uncountable})) (add-english-names (list {extemporization} {extemporisation} {extemporization} {extemporisation}) (list "extemporization" "extemporisation" "extemporization" "extemporisation")) (new-knext-eq '({extemporization} {thing}) '({extemporization} {thing})) (add-english-names (list {improvization} {improvisation} {improvization} {improvisation}) (list "improvization" "improvisation" "improvization" "improvisation")) (new-knext-is-a '({extemporization} {countable}) '({improvization} {countable})) (add-english-names (list {improvization} {improvisation} {improvization} {improvisation}) (list "improvization" "improvisation" "improvization" "improvisation")) (new-knext-is-a '({improvization} {countable}) '({extemporization} {countable})) (new-knext-eq '({conjuring trick} {thing}) '({magic trick} {thing})) (new-knext-eq '({legerdemain} {thing}) '({magic trick} {thing})) (new-knext-eq '({thaumaturgy} {thing}) '({magic trick} {thing})) (new-knext-eq '({magic} {thing}) '({conjuration} {thing})) (new-knext-eq '({illusion} {thing}) '({conjuration} {thing})) (new-knext-eq '({deception} {thing}) '({conjuration} {thing})) (new-knext-is-a '({magic trick} {countable}) '({conjuration} {countable})) (new-knext-is-a '({conjuration} {countable}) '({magic trick} {countable})) (new-knext-eq '({thrust} {thing}) '({drive} {thing})) (new-knext-is-a '({drive} {countable}) '({driving force} {countable})) (new-knext-is-a '({driving force} {countable}) '({drive} {countable})) (new-knext-eq '({impulse} {thing}) '({impulsion} {thing})) (new-knext-eq '({impetus} {thing}) '({impulsion} {thing})) (new-knext-eq '({breaking ball} {thing}) '({curve ball} {thing})) (new-knext-is-a '({curve ball} {countable}) '({bender} {countable})) (new-knext-is-a '({bender} {countable}) '({curve ball} {countable})) (new-knext-is-a '({push} {countable}) '({pushing} {countable})) (new-knext-is-a '({pushing} {countable}) '({push} {countable})) (new-knext-eq '({press} {thing}) '({pressing} {thing})) (new-knext-eq '({pressure} {thing}) '({pressing} {thing})) (new-knext-is-a '({pull} {countable}) '({pulling} {countable})) (new-knext-is-a '({pulling} {countable}) '({pull} {countable})) (new-knext-eq '({haulage} {thing}) '({haul} {thing})) (new-knext-is-a '({draw} {countable}) '({haul} {countable})) (new-knext-is-a '({haul} {countable}) '({draw} {countable})) (add-english-names (list {draft} {draught} {draft}) (list "draft" "draught" "draft")) (new-knext-is-a '({draft} {countable}) '({drawing} {countable})) (add-english-names (list {draft} {draught} {draft}) (list "draft" "draught" "draft")) (new-knext-is-a '({drawing} {countable}) '({draft} {countable})) (new-knext-is-a '({raise} {countable}) '({heave} {countable})) (new-knext-is-a '({heave} {countable}) '({raise} {countable})) (new-knext-eq '({expulsion} {thing}) '({ejection} {thing})) (new-knext-is-a '({ejection} {countable}) '({forcing out} {countable})) (new-knext-is-a '({forcing out} {countable}) '({ejection} {countable})) (new-knext-eq '({winking} {thing}) '({blinking} {thing})) (new-knext-eq '({wink} {thing}) '({blink} {thing})) (new-knext-eq '({nictitation} {thing}) '({blink} {thing})) (new-knext-eq '({nictation} {thing}) '({blink} {thing})) (new-knext-is-a '({blink} {countable}) '({blinking} {uncountable})) (new-knext-type {blinking} {uncountable}) (new-knext-type {blink} {uncountable}) (new-statement {blinking} {consists of} {blink}) (new-knext-eq '({flush} {thing}) '({blush} {thing})) (new-knext-eq '({jump} {thing}) '({jumping} {thing})) (new-knext-eq '({transmitting} {thing}) '({transmission} {thing})) (new-knext-is-a '({transmission} {countable}) '({transmittal} {countable})) (new-knext-is-a '({transmittal} {countable}) '({transmission} {countable})) (new-knext-eq '({posting} {thing}) '({mailing} {thing})) (new-knext-eq '({rolling} {thing}) '({wheeling} {thing})) (new-knext-eq '({shot} {thing}) '({shooting} {thing})) (new-knext-eq '({rub} {thing}) '({wipe} {thing})) (new-knext-eq '({tap} {thing}) '({dab} {thing})) (new-knext-eq '({pat} {thing}) '({dab} {thing})) (new-knext-eq '({striking} {thing}) '({hitting} {thing})) (new-knext-is-a '({hit} {countable}) '({hitting} {countable})) (new-knext-is-a '({hitting} {countable}) '({hit} {countable})) (new-knext-eq '({walk} {thing}) '({base on balls} {thing})) (new-knext-eq '({pass} {thing}) '({base on balls} {thing})) (new-knext-eq '({slug} {thing}) '({lick} {thing})) (new-knext-eq '({clout} {thing}) '({punch} {thing})) (new-knext-eq '({poke} {thing}) '({punch} {thing})) (new-knext-eq '({biff} {thing}) '({punch} {thing})) (new-knext-is-a '({punch} {countable}) '({lick} {countable})) (new-knext-is-a '({lick} {countable}) '({punch} {countable})) (new-knext-eq '({dig} {thing}) '({jab} {thing})) (new-knext-eq '({boot} {thing}) '({kick} {thing})) (new-knext-is-a '({kick} {countable}) '({kicking} {countable})) (new-knext-is-a '({kicking} {countable}) '({kick} {countable})) (new-knext-eq '({buss} {thing}) '({kiss} {thing})) (new-knext-eq '({osculation} {thing}) '({kiss} {thing})) (new-knext-eq '({catch} {thing}) '({snap} {thing})) (new-knext-eq '({grab} {thing}) '({snap} {thing})) (new-knext-eq '({snatch} {thing}) '({snap} {thing})) (new-knext-eq '({mesh} {thing}) '({interlocking} {thing})) (new-knext-type {meshing} {uncountable}) (new-knext-type {interlock} {uncountable}) (new-statement {meshing} {consists of} {interlock}) (new-knext-is-a '({meshing} {uncountable}) '({interlocking} {uncountable})) (new-knext-is-a '({interlock} {countable}) '({meshing} {uncountable})) (new-knext-is-a '({interlock} {countable}) '({interlocking} {countable})) (new-knext-is-a '({interlocking} {uncountable}) '({meshing} {uncountable})) (new-knext-is-a '({interlocking} {countable}) '({interlock} {countable})) (new-knext-eq '({manipulation} {thing}) '({handling} {thing})) (new-knext-is-a '({comparison} {uncountable}) '({comparing} {uncountable})) (new-knext-is-a '({comparing} {uncountable}) '({comparison} {uncountable})) (new-knext-eq '({followup} {thing}) '({reexamination} {thing})) (new-knext-eq '({titillation} {thing}) '({tickle} {thing})) (new-knext-is-a '({tickle} {countable}) '({tickling} {uncountable})) (new-knext-type {tickling} {uncountable}) (new-knext-type {tickle} {uncountable}) (new-statement {tickling} {consists of} {tickle}) (new-knext-is-a '({stroke} {countable}) '({stroking} {countable})) (new-knext-is-a '({stroking} {countable}) '({stroke} {countable})) (new-knext-eq '({connection} {thing}) '({joining} {thing})) (add-english-names (list {connection} {connexion} {connection} {connexion}) (list "connection" "connexion" "connection" "connexion")) (new-knext-eq '({connection} {thing}) '({joining} {thing})) (new-knext-is-a '({fastening} {countable}) '({attachment} {countable})) (new-knext-is-a '({attachment} {countable}) '({fastening} {countable})) (new-knext-eq '({laxation} {thing}) '({loosening} {thing})) (new-knext-type {loosening} {countable}) (new-knext-type {tightening} {uncountable}) (new-is-not-a {loosening} {tightening}) (new-knext-type {tightening} {countable}) (new-knext-type {loosening} {countable}) (new-is-not-a {tightening} {loosening}) (new-knext-eq '({ligature} {thing}) '({tying} {thing})) (new-knext-eq '({skimming} {thing}) '({shaving} {thing})) (new-knext-is-a '({grazing} {uncountable}) '({shaving} {uncountable})) (new-knext-is-a '({shaving} {uncountable}) '({grazing} {uncountable})) (new-knext-eq '({spying} {thing}) '({catching} {thing})) (new-knext-eq '({spotting} {thing}) '({catching} {thing})) (new-knext-is-a '({detection} {uncountable}) '({catching} {uncountable})) (new-knext-is-a '({catching} {uncountable}) '({detection} {uncountable})) (new-knext-eq '({finding} {thing}) '({determination} {thing})) (new-knext-eq '({designation} {thing}) '({identification} {thing})) (new-knext-is-a '({diagnosis} {uncountable}) '({diagnosing} {uncountable})) (new-knext-is-a '({diagnosing} {uncountable}) '({diagnosis} {uncountable})) (new-knext-is-a '({resolution} {uncountable}) '({solving} {uncountable})) (new-knext-is-a '({solving} {uncountable}) '({resolution} {uncountable})) (new-knext-is-a '({documentation} {uncountable}) '({support} {uncountable})) (new-knext-is-a '({support} {uncountable}) '({documentation} {uncountable})) (new-knext-eq '({induction} {thing}) '({initiation} {thing})) (new-knext-is-a '({trigger} {countable}) '({initiation} {countable})) (new-knext-is-a '({initiation} {countable}) '({trigger} {countable})) (new-knext-eq '({compulsion} {thing}) '({coercion} {thing})) (new-knext-eq '({impact} {thing}) '({impingement} {thing})) (new-knext-is-a '({impingement} {countable}) '({encroachment} {countable})) (new-knext-is-a '({encroachment} {countable}) '({impingement} {countable})) (new-knext-is-a '({inducement} {countable}) '({inducing} {uncountable})) (new-knext-type {inducing} {uncountable}) (new-knext-type {inducement} {uncountable}) (new-statement {inducing} {consists of} {inducement}) (new-knext-is-a '({enticement} {countable}) '({temptation} {countable})) (new-knext-is-a '({temptation} {countable}) '({enticement} {countable})) (new-knext-eq '({blandishment} {thing}) '({wheedling} {thing})) (new-knext-eq '({choice} {thing}) '({selection} {thing})) (new-knext-eq '({pick} {thing}) '({selection} {thing})) (new-knext-is-a '({selection} {countable}) '({option} {countable})) (new-knext-is-a '({option} {countable}) '({selection} {countable})) (add-english-names (list {coloration} {colouration}) (list "coloration" "colouration")) (new-knext-eq '({determination} {thing}) '({decision} {thing})) (new-knext-eq '({conclusion} {thing}) '({decision} {thing})) (new-knext-eq '({naming} {thing}) '({appointment} {thing})) (new-knext-eq '({assignment} {thing}) '({designation} {thing})) (new-knext-is-a '({appointment} {countable}) '({designation} {countable})) (new-knext-is-a '({designation} {countable}) '({appointment} {countable})) (add-english-names (list {maneuver} {manoeuvre}) (list "maneuver" "manoeuvre")) (new-knext-eq '({maneuver} {thing}) '({tactical maneuver} {thing})) (new-knext-eq '({tactical manoeuvre} {thing}) '({tactical maneuver} {thing})) (new-knext-eq '({relocation} {thing}) '({move} {thing})) (new-knext-eq '({fast one} {thing}) '({trick} {thing})) (new-knext-eq '({agency} {thing}) '({way} {thing})) (new-knext-is-a '({means} {uncountable}) '({way} {uncountable})) (new-knext-is-a '({way} {uncountable}) '({means} {uncountable})) (new-knext-eq '({step} {thing}) '({measure} {thing})) (add-english-names (list {improvization} {improvisation} {improvization} {improvisation}) (list "improvization" "improvisation" "improvization" "improvisation")) (new-knext-is-a '({improvization} {countable}) '({temporary expedient} {countable})) (add-english-names (list {improvization} {improvisation} {improvization} {improvisation}) (list "improvization" "improvisation" "improvization" "improvisation")) (new-knext-is-a '({temporary expedient} {countable}) '({improvization} {countable})) (new-knext-eq '({espousal} {thing}) '({acceptation} {thing})) (new-knext-eq '({acceptance} {thing}) '({adoption} {thing})) (new-knext-is-a '({adoption} {countable}) '({acceptation} {countable})) (new-knext-is-a '({acceptation} {countable}) '({adoption} {countable})) (new-knext-eq '({ballot} {thing}) '({vote} {thing})) (new-knext-is-a '({vote} {countable}) '({voting} {countable})) (new-knext-is-a '({vote} {countable}) '({balloting} {uncountable})) (new-knext-is-a '({voting} {countable}) '({vote} {countable})) (new-knext-is-a '({voting} {uncountable}) '({balloting} {uncountable})) (new-knext-type {balloting} {uncountable}) (new-knext-type {vote} {uncountable}) (new-statement {balloting} {consists of} {vote}) (new-knext-is-a '({balloting} {uncountable}) '({voting} {uncountable})) (new-knext-is-a '({equation} {uncountable}) '({equating} {uncountable})) (new-knext-is-a '({equating} {uncountable}) '({equation} {uncountable})) (new-knext-eq '({economy} {thing}) '({saving} {thing})) (new-knext-eq '({shift} {thing}) '({switching} {thing})) (new-knext-is-a '({switch} {countable}) '({switching} {countable})) (new-knext-is-a '({switching} {countable}) '({switch} {countable})) (new-knext-eq '({exchange} {thing}) '({substitution} {thing})) (new-knext-eq '({commutation} {thing}) '({substitution} {thing})) (new-knext-is-a '({replacement} {uncountable}) '({replacing} {uncountable})) (new-knext-is-a '({replacing} {uncountable}) '({replacement} {uncountable})) (new-knext-type {promotion} {countable}) (new-knext-type {demotion} {countable}) (new-is-not-a {promotion} {demotion}) (new-knext-type {demotion} {countable}) (new-knext-type {promotion} {countable}) (new-is-not-a {demotion} {promotion}) (new-knext-eq '({alteration} {thing}) '({modification} {thing})) (new-knext-eq '({adjustment} {thing}) '({modification} {thing})) (new-knext-eq '({transition} {thing}) '({passage} {thing})) (new-knext-is-a '({transfer} {countable}) '({transference} {countable})) (new-knext-is-a '({transference} {countable}) '({transfer} {countable})) (new-knext-eq '({opposition} {thing}) '({resistance} {thing})) (new-knext-eq '({desertion} {thing}) '({abandonment} {thing})) (new-knext-is-a '({abandonment} {countable}) '({forsaking} {countable})) (new-knext-is-a '({forsaking} {countable}) '({abandonment} {countable})) (new-knext-eq '({forfeiture} {thing}) '({forfeit} {thing})) (new-knext-is-a '({forfeit} {countable}) '({sacrifice} {countable})) (new-knext-is-a '({sacrifice} {countable}) '({forfeit} {countable})) (new-knext-eq '({ejection} {thing}) '({expulsion} {thing})) (new-knext-eq '({exclusion} {thing}) '({expulsion} {thing})) (new-knext-eq '({riddance} {thing}) '({expulsion} {thing})) (new-knext-eq '({exile} {thing}) '({deportation} {thing})) (new-knext-is-a '({deportation} {countable}) '({expatriation} {countable})) (new-knext-is-a '({deportation} {uncountable}) '({transportation} {uncountable})) (new-knext-is-a '({expatriation} {countable}) '({deportation} {countable})) (new-knext-is-a '({expatriation} {countable}) '({transportation} {uncountable})) (new-knext-is-a '({transportation} {uncountable}) '({deportation} {uncountable})) (new-knext-type {transportation} {uncountable}) (new-knext-type {expatriation} {uncountable}) (new-statement {transportation} {consists of} {expatriation}) (new-knext-eq '({termination} {thing}) '({ending} {thing})) (new-knext-eq '({conclusion} {thing}) '({ending} {thing})) (new-knext-eq '({finish} {thing}) '({finishing} {thing})) (new-knext-type {finish} {countable}) (new-knext-type {start} {countable}) (new-is-not-a {finish} {start}) (new-knext-eq '({finale} {thing}) '({closing curtain} {thing})) (new-knext-eq '({close} {thing}) '({closing curtain} {thing})) (new-knext-eq '({finis} {thing}) '({closing curtain} {thing})) (new-knext-eq '({culmination} {thing}) '({windup} {thing})) (new-knext-eq '({mop up} {thing}) '({windup} {thing})) (new-knext-eq '({closing} {thing}) '({completion} {thing})) (new-knext-is-a '({completion} {countable}) '({windup} {countable})) (new-knext-is-a '({windup} {countable}) '({completion} {countable})) (add-english-names (list {finalization} {finalisation} {finalization} {finalisation}) (list "finalization" "finalisation" "finalization" "finalisation")) (new-knext-eq '({finalization} {thing}) '({finalization} {thing})) (new-knext-is-a '({relinquishment} {countable}) '({relinquishing} {uncountable})) (new-knext-type {relinquishing} {uncountable}) (new-knext-type {relinquishment} {uncountable}) (new-statement {relinquishing} {consists of} {relinquishment}) (new-knext-is-a '({cession} {countable}) '({ceding} {countable})) (new-knext-is-a '({ceding} {countable}) '({cession} {countable})) (new-knext-is-a '({waiver} {countable}) '({discharge} {countable})) (new-knext-is-a '({discharge} {countable}) '({waiver} {countable})) (new-knext-eq '({exemption} {thing}) '({granting immunity} {thing})) (new-knext-is-a '({dissolution} {countable}) '({breakup} {countable})) (new-knext-is-a '({breakup} {countable}) '({dissolution} {countable})) (new-knext-eq '({dismissal} {thing}) '({dismission} {thing})) (new-knext-eq '({sack} {thing}) '({dismission} {thing})) (new-knext-eq '({discharge} {thing}) '({sacking} {thing})) (new-knext-eq '({firing} {thing}) '({sacking} {thing})) (new-knext-eq '({liberation} {thing}) '({sacking} {thing})) (new-knext-eq '({release} {thing}) '({sacking} {thing})) (new-knext-is-a '({dismission} {countable}) '({sacking} {countable})) (new-knext-is-a '({sacking} {countable}) '({dismission} {countable})) (new-knext-eq '({devastation} {thing}) '({destruction} {thing})) (new-knext-eq '({ruining} {thing}) '({laying waste} {thing})) (new-knext-eq '({ruin} {thing}) '({ruination} {thing})) (new-knext-is-a '({laying waste} {uncountable}) '({ruination} {uncountable})) (new-knext-type {laying waste} {uncountable}) (new-knext-type {wrecking} {uncountable}) (new-statement {laying waste} {consists of} {wrecking}) (new-knext-is-a '({ruination} {uncountable}) '({laying waste} {uncountable})) (new-knext-is-a '({ruination} {countable}) '({wrecking} {countable})) (new-knext-is-a '({wrecking} {countable}) '({laying waste} {uncountable})) (new-knext-is-a '({wrecking} {countable}) '({ruination} {countable})) (new-knext-is-a '({annihilation} {uncountable}) '({obliteration} {uncountable})) (new-knext-is-a '({obliteration} {uncountable}) '({annihilation} {uncountable})) (new-knext-eq '({killing} {thing}) '({kill} {thing})) (new-knext-is-a '({kill} {countable}) '({putting to death} {uncountable})) (new-knext-type {putting to death} {uncountable}) (new-knext-type {kill} {uncountable}) (new-statement {putting to death} {consists of} {kill}) (new-knext-eq '({execution} {thing}) '({murder} {thing})) (new-knext-is-a '({murder} {countable}) '({slaying} {countable})) (new-knext-is-a '({slaying} {countable}) '({murder} {countable})) (new-knext-eq '({gore} {thing}) '({bloodshed} {thing})) (new-knext-is-a '({dispatch} {countable}) '({despatch} {countable})) (new-knext-is-a '({despatch} {countable}) '({dispatch} {countable})) (new-knext-is-a '({elimination} {uncountable}) '({liquidation} {uncountable})) (new-knext-is-a '({liquidation} {uncountable}) '({elimination} {uncountable})) (new-knext-eq '({mass murder} {thing}) '({massacre} {thing})) (new-knext-eq '({butchery} {thing}) '({slaughter} {thing})) (new-knext-is-a '({slaughter} {countable}) '({massacre} {countable})) (new-knext-is-a '({slaughter} {uncountable}) '({carnage} {uncountable})) (new-knext-is-a '({massacre} {countable}) '({slaughter} {countable})) (new-knext-is-a '({massacre} {countable}) '({carnage} {uncountable})) (new-knext-is-a '({carnage} {uncountable}) '({slaughter} {uncountable})) (new-knext-type {carnage} {uncountable}) (new-knext-type {massacre} {uncountable}) (new-statement {carnage} {consists of} {massacre}) (new-knext-is-a '({suffocation} {countable}) '({asphyxiation} {countable})) (new-knext-is-a '({asphyxiation} {countable}) '({suffocation} {countable})) (new-knext-eq '({choking} {thing}) '({strangulation} {thing})) (new-knext-eq '({throttling} {thing}) '({strangulation} {thing})) (new-knext-is-a '({strangling} {countable}) '({strangulation} {countable})) (new-knext-is-a '({strangulation} {countable}) '({strangling} {countable})) (new-knext-eq '({sacrifice} {thing}) '({ritual killing} {thing})) (new-knext-eq '({settlement} {thing}) '({liquidation} {thing})) (new-knext-eq '({disappearance} {thing}) '({fade} {thing})) (new-knext-eq '({miscarriage} {thing}) '({spontaneous abortion} {thing})) (new-knext-eq '({stillbirth} {thing}) '({spontaneous abortion} {thing})) (new-knext-type {stillbirth} {countable}) (new-knext-type {live birth} {countable}) (new-is-not-a {stillbirth} {live birth}) (new-knext-is-a '({nullification} {countable}) '({override} {countable})) (new-knext-is-a '({override} {countable}) '({nullification} {countable})) (new-knext-eq '({start} {thing}) '({commencement} {thing})) (new-knext-type {start} {countable}) (new-knext-type {finish} {countable}) (new-is-not-a {start} {finish}) (new-knext-is-a '({beginning} {countable}) '({commencement} {countable})) (new-knext-is-a '({commencement} {countable}) '({beginning} {countable})) (new-knext-eq '({constitution} {thing}) '({establishment} {thing})) (new-knext-eq '({formation} {thing}) '({establishment} {thing})) (new-knext-eq '({organization} {thing}) '({establishment} {thing})) (add-english-names (list {organization} {organisation} {organization} {organisation}) (list "organization" "organisation" "organization" "organisation")) (new-knext-is-a '({establishment} {countable}) '({organization} {countable})) (add-english-names (list {organization} {organisation} {organization} {organisation}) (list "organization" "organisation" "organization" "organisation")) (new-knext-is-a '({organization} {countable}) '({establishment} {countable})) (new-knext-eq '({opening move} {thing}) '({first step} {thing})) (new-knext-is-a '({first step} {countable}) '({initiative} {countable})) (new-knext-is-a '({initiative} {countable}) '({first step} {countable})) (new-knext-is-a '({inauguration} {countable}) '({startup} {countable})) (new-knext-is-a '({startup} {countable}) '({inauguration} {countable})) (new-knext-eq '({initiation} {thing}) '({founding} {thing})) (new-knext-eq '({foundation} {thing}) '({founding} {thing})) (new-knext-eq '({institution} {thing}) '({founding} {thing})) (new-knext-eq '({origination} {thing}) '({founding} {thing})) (new-knext-eq '({creation} {thing}) '({founding} {thing})) (new-knext-eq '({innovation} {thing}) '({founding} {thing})) (new-knext-eq '({introduction} {thing}) '({founding} {thing})) (new-knext-is-a '({founding} {countable}) '({instauration} {countable})) (new-knext-is-a '({instauration} {countable}) '({founding} {countable})) (add-english-names (list {installment} {instalment} {instalment}) (list "installment" "instalment" "instalment")) (add-english-names (list {instillment} {instilment} {installation} {instilment}) (list "instillment" "instilment" "installation" "instilment")) (new-knext-eq '({installment} {thing}) '({instillment} {thing})) (add-english-names (list {instillment} {instilment} {installation} {instilment}) (list "instillment" "instilment" "installation" "instilment")) (add-english-names (list {instillment} {instilment} {installation} {instilment}) (list "instillment" "instilment" "installation" "instilment")) (new-knext-is-a '({instillment} {countable}) '({installment} {countable})) (add-english-names (list {instillment} {instilment} {installation} {instilment}) (list "instillment" "instilment" "installation" "instilment")) (new-knext-type {installing} {uncountable}) (new-knext-type {installment} {uncountable}) (new-statement {installing} {consists of} {installment}) (add-english-names (list {instillment} {instilment} {installation} {instilment}) (list "instillment" "instilment" "installation" "instilment")) (new-knext-is-a '({installment} {countable}) '({instillment} {countable})) (new-knext-is-a '({installment} {countable}) '({installing} {uncountable})) (new-knext-eq '({cookery} {thing}) '({cooking} {thing})) (new-knext-is-a '({cooking} {uncountable}) '({preparation} {uncountable})) (new-knext-is-a '({preparation} {uncountable}) '({cooking} {uncountable})) (new-knext-eq '({browning} {thing}) '({toasting} {thing})) (new-knext-eq '({sauteing} {thing}) '({frying} {thing})) (new-knext-eq '({advancement} {thing}) '({progress} {thing})) (new-knext-eq '({promotion} {thing}) '({furtherance} {thing})) (new-knext-is-a '({forwarding} {uncountable}) '({furtherance} {uncountable})) (new-knext-is-a '({furtherance} {uncountable}) '({forwarding} {uncountable})) (new-knext-eq '({cleanup} {thing}) '({cleansing} {thing})) (new-knext-is-a '({cleaning} {countable}) '({cleansing} {countable})) (new-knext-is-a '({cleansing} {countable}) '({cleaning} {countable})) (new-knext-eq '({lavation} {thing}) '({washing} {thing})) (new-knext-is-a '({wash} {uncountable}) '({washing} {uncountable})) (new-knext-is-a '({washing} {uncountable}) '({wash} {uncountable})) (new-knext-is-a '({correction} {countable}) '({rectification} {countable})) (new-knext-is-a '({rectification} {countable}) '({correction} {countable})) (new-knext-eq '({compensation} {thing}) '({recompense} {thing})) (new-knext-is-a '({amelioration} {countable}) '({betterment} {countable})) (new-knext-is-a '({betterment} {countable}) '({amelioration} {countable})) (new-knext-eq '({embellishment} {thing}) '({ornamentation} {thing})) (new-knext-is-a '({clearing} {countable}) '({clarification} {countable})) (new-knext-is-a '({clarification} {countable}) '({clearing} {countable})) (new-knext-eq '({fixing} {thing}) '({repair} {thing})) (new-knext-eq '({mend} {thing}) '({repair} {thing})) (new-knext-eq '({reparation} {thing}) '({repair} {thing})) (new-knext-is-a '({repair} {countable}) '({fix} {countable})) (new-knext-is-a '({repair} {uncountable}) '({mending} {uncountable})) (new-knext-is-a '({fix} {countable}) '({repair} {countable})) (new-knext-is-a '({fix} {countable}) '({mending} {uncountable})) (new-knext-is-a '({mending} {uncountable}) '({repair} {uncountable})) (new-knext-type {mending} {uncountable}) (new-knext-type {fix} {uncountable}) (new-statement {mending} {consists of} {fix}) (new-knext-eq '({care} {thing}) '({maintenance} {thing})) (new-knext-is-a '({maintenance} {uncountable}) '({upkeep} {uncountable})) (new-knext-is-a '({upkeep} {uncountable}) '({maintenance} {uncountable})) (new-knext-eq '({inspection and repair} {thing}) '({overhaul} {thing})) (new-knext-is-a '({degradation} {countable}) '({debasement} {countable})) (new-knext-is-a '({debasement} {countable}) '({degradation} {countable})) (new-knext-is-a '({corruption} {uncountable}) '({subversion} {uncountable})) (new-knext-is-a '({subversion} {uncountable}) '({corruption} {uncountable})) (add-english-names (list {demoralization} {demoralisation} {demoralization} {demoralisation}) (list "demoralization" "demoralisation" "demoralization" "demoralisation")) (new-knext-eq '({demoralization} {thing}) '({demoralization} {thing})) (new-knext-eq '({constipation} {thing}) '({deadening} {thing})) (new-knext-is-a '({stultification} {countable}) '({impairment} {countable})) (new-knext-is-a '({stultification} {countable}) '({deadening} {uncountable})) (new-knext-is-a '({impairment} {countable}) '({stultification} {countable})) (new-knext-is-a '({impairment} {uncountable}) '({deadening} {uncountable})) (new-knext-type {deadening} {uncountable}) (new-knext-type {stultification} {uncountable}) (new-statement {deadening} {consists of} {stultification}) (new-knext-is-a '({deadening} {uncountable}) '({impairment} {uncountable})) (new-knext-eq '({humiliation} {thing}) '({abasement} {thing})) (new-knext-eq '({darkening} {thing}) '({blackening} {thing})) (add-english-names (list {discoloration} {discolouration}) (list "discoloration" "discolouration")) (add-english-names (list {coloring} {colouring}) (list "coloring" "colouring")) (new-knext-is-a '({coloring} {countable}) '({coloring} {countable})) (add-english-names (list {coloring} {colouring}) (list "coloring" "colouring")) (new-knext-is-a '({coloring} {countable}) '({coloring} {countable})) (new-knext-eq '({soilure} {thing}) '({soiling} {thing})) (new-knext-eq '({dirtying} {thing}) '({soiling} {thing})) (new-knext-eq '({pollution} {thing}) '({contamination} {thing})) (new-knext-type {contamination} {countable}) (new-knext-type {decontamination} {countable}) (new-is-not-a {contamination} {decontamination}) (new-knext-is-a '({splash} {countable}) '({splashing} {countable})) (new-knext-is-a '({splashing} {countable}) '({splash} {countable})) (new-knext-eq '({chew} {thing}) '({mastication} {thing})) (new-knext-eq '({manduction} {thing}) '({mastication} {thing})) (new-knext-is-a '({chewing} {uncountable}) '({mastication} {uncountable})) (new-knext-is-a '({mastication} {uncountable}) '({chewing} {uncountable})) (new-knext-eq '({motion} {thing}) '({movement} {thing})) (new-knext-is-a '({movement} {countable}) '({move} {countable})) (new-knext-is-a '({move} {countable}) '({movement} {countable})) (new-knext-eq '({approaching} {thing}) '({coming} {thing})) (new-knext-is-a '({approach} {countable}) '({coming} {countable})) (new-knext-is-a '({coming} {countable}) '({approach} {countable})) (new-knext-eq '({onward motion} {thing}) '({forward motion} {thing})) (new-knext-eq '({advance} {thing}) '({progress} {thing})) (new-knext-eq '({progression} {thing}) '({advancement} {thing})) (new-knext-eq '({procession} {thing}) '({advancement} {thing})) (new-knext-type {advance} {countable}) (new-knext-type {retreat} {uncountable}) (new-is-not-a {advance} {retreat}) (new-knext-is-a '({progress} {countable}) '({advancement} {countable})) (new-knext-is-a '({progress} {countable}) '({forward motion} {uncountable})) (new-knext-is-a '({advancement} {countable}) '({progress} {countable})) (new-knext-is-a '({advancement} {uncountable}) '({forward motion} {uncountable})) (new-knext-type {forward motion} {uncountable}) (new-knext-type {progress} {uncountable}) (new-statement {forward motion} {consists of} {progress}) (new-knext-is-a '({forward motion} {uncountable}) '({advancement} {uncountable})) (new-knext-eq '({travel} {thing}) '({locomotion} {thing})) (new-knext-is-a '({walk} {countable}) '({walking} {countable})) (new-knext-is-a '({walking} {countable}) '({walk} {countable})) (new-knext-eq '({promenade} {thing}) '({amble} {thing})) (new-knext-eq '({stroll} {thing}) '({amble} {thing})) (new-knext-eq '({perambulation} {thing}) '({amble} {thing})) (new-knext-is-a '({amble} {countable}) '({saunter} {countable})) (new-knext-is-a '({saunter} {countable}) '({amble} {countable})) (new-knext-eq '({pace} {thing}) '({tread} {thing})) (new-knext-is-a '({stride} {countable}) '({tread} {countable})) (new-knext-is-a '({tread} {countable}) '({stride} {countable})) (new-knext-eq '({hitch} {thing}) '({hobble} {thing})) (new-knext-is-a '({hobble} {countable}) '({limp} {countable})) (new-knext-is-a '({limp} {countable}) '({hobble} {countable})) (new-knext-eq '({tramp} {thing}) '({hike} {thing})) (new-knext-is-a '({hike} {countable}) '({hiking} {uncountable})) (new-knext-type {hiking} {uncountable}) (new-knext-type {hike} {uncountable}) (new-statement {hiking} {consists of} {hike}) (new-knext-eq '({stumble} {thing}) '({lurch} {thing})) (new-knext-is-a '({lurch} {countable}) '({stagger} {countable})) (new-knext-is-a '({stagger} {countable}) '({lurch} {countable})) (new-knext-eq '({swagger} {thing}) '({prance} {thing})) (new-knext-is-a '({strut} {countable}) '({prance} {countable})) (new-knext-is-a '({prance} {countable}) '({strut} {countable})) (new-knext-is-a '({march} {countable}) '({marching} {countable})) (new-knext-is-a '({marching} {countable}) '({march} {countable})) (new-knext-is-a '({run} {countable}) '({running} {countable})) (new-knext-is-a '({running} {countable}) '({run} {countable})) (new-knext-eq '({dash} {thing}) '({sprint} {thing})) (new-knext-eq '({creeping} {thing}) '({crawling} {thing})) (new-knext-eq '({creep} {thing}) '({crawl} {thing})) (new-knext-is-a '({crawl} {uncountable}) '({crawling} {uncountable})) (new-knext-is-a '({crawling} {uncountable}) '({crawl} {uncountable})) (new-knext-eq '({traveling} {thing}) '({travel} {thing})) (add-english-names (list {traveling} {travelling} {travelling}) (list "traveling" "travelling" "travelling")) (add-english-names (list {traveling} {travelling} {travelling}) (list "traveling" "travelling" "travelling")) (new-knext-is-a '({traversal} {countable}) '({traverse} {countable})) (new-knext-is-a '({traverse} {countable}) '({traversal} {countable})) (new-knext-is-a '({wandering} {countable}) '({roving} {countable})) (new-knext-is-a '({roving} {countable}) '({wandering} {countable})) (new-knext-eq '({touristry} {thing}) '({tourism} {thing})) (new-knext-is-a '({riding} {uncountable}) '({horseback riding} {uncountable})) (new-knext-is-a '({horseback riding} {uncountable}) '({riding} {uncountable})) (new-knext-eq '({aviation} {thing}) '({air travel} {thing})) (new-knext-is-a '({flight} {uncountable}) '({flying} {uncountable})) (new-knext-is-a '({flying} {uncountable}) '({flight} {uncountable})) (new-knext-is-a '({jump} {uncountable}) '({parachuting} {uncountable})) (new-knext-is-a '({parachuting} {uncountable}) '({jump} {uncountable})) (new-knext-is-a '({journey} {countable}) '({journeying} {countable})) (new-knext-is-a '({journeying} {countable}) '({journey} {countable})) (new-knext-eq '({leg} {thing}) '({stage} {thing})) (new-knext-is-a '({drive} {countable}) '({ride} {countable})) (new-knext-is-a '({ride} {countable}) '({drive} {countable})) (new-knext-eq '({campaign} {thing}) '({hunting expedition} {thing})) (new-knext-is-a '({hunting expedition} {countable}) '({safari} {countable})) (new-knext-is-a '({safari} {countable}) '({hunting expedition} {countable})) (new-knext-is-a '({exploration} {countable}) '({geographic expedition} {countable})) (new-knext-is-a '({geographic expedition} {countable}) '({exploration} {countable})) (new-knext-eq '({jaunt} {thing}) '({excursion} {thing})) (new-knext-eq '({pleasure trip} {thing}) '({excursion} {thing})) (new-knext-eq '({junket} {thing}) '({outing} {thing})) (new-knext-eq '({expedition} {thing}) '({outing} {thing})) (new-knext-eq '({sashay} {thing}) '({outing} {thing})) (new-knext-is-a '({excursion} {countable}) '({outing} {countable})) (new-knext-is-a '({outing} {countable}) '({excursion} {countable})) (new-knext-is-a '({cruise} {countable}) '({sail} {countable})) (new-knext-is-a '({sail} {countable}) '({cruise} {countable})) (add-english-names (list {transferal} {transferral} {transferral}) (list "transferal" "transferral" "transferral")) (new-knext-eq '({transport} {thing}) '({transferal} {thing})) (add-english-names (list {transferal} {transferral} {transferral}) (list "transferal" "transferral" "transferral")) (new-knext-eq '({conveyance} {thing}) '({transferal} {thing})) (new-knext-type {transportation} {uncountable}) (new-knext-type {transfer} {uncountable}) (new-statement {transportation} {consists of} {transfer}) (add-english-names (list {transferal} {transferral} {transferral}) (list "transferal" "transferral" "transferral")) (new-knext-is-a '({transfer} {countable}) '({transportation} {uncountable})) (add-english-names (list {transferal} {transferral} {transferral}) (list "transferal" "transferral" "transferral")) (new-knext-is-a '({transfer} {countable}) '({transferal} {countable})) (add-english-names (list {transferal} {transferral} {transferral}) (list "transferal" "transferral" "transferral")) (add-english-names (list {transferal} {transferral} {transferral}) (list "transferal" "transferral" "transferral")) (new-knext-is-a '({transferal} {countable}) '({transfer} {countable})) (add-english-names (list {connection} {connexion} {connection} {connexion}) (list "connection" "connexion" "connection" "connexion")) (new-knext-eq '({connection} {thing}) '({connection} {thing})) (new-knext-is-a '({delivery} {countable}) '({bringing} {uncountable})) (new-knext-type {bringing} {uncountable}) (new-knext-type {delivery} {uncountable}) (new-statement {bringing} {consists of} {delivery}) (new-knext-eq '({chase} {thing}) '({pursuit} {thing})) (new-knext-eq '({following} {thing}) '({pursuit} {thing})) (new-knext-is-a '({pursuit} {countable}) '({pursual} {countable})) (new-knext-is-a '({pursual} {countable}) '({pursuit} {countable})) (new-knext-eq '({tracking} {thing}) '({trailing} {thing})) (new-knext-eq '({tailing} {thing}) '({shadowing} {thing})) (new-knext-eq '({introduction} {thing}) '({insertion} {thing})) (new-knext-is-a '({insertion} {countable}) '({intromission} {countable})) (new-knext-is-a '({intromission} {countable}) '({insertion} {countable})) (new-knext-eq '({envelopment} {thing}) '({enclosing} {thing})) (new-knext-eq '({inclosure} {thing}) '({enclosing} {thing})) (new-knext-is-a '({enclosure} {countable}) '({enclosing} {countable})) (new-knext-is-a '({enclosing} {countable}) '({enclosure} {countable})) (new-knext-eq '({boxing} {thing}) '({packing} {thing})) (new-knext-eq '({ascension} {thing}) '({rise} {thing})) (new-knext-is-a '({rise} {countable}) '({ascent} {countable})) (new-knext-is-a '({rise} {uncountable}) '({ascending} {uncountable})) (new-knext-is-a '({ascent} {countable}) '({rise} {countable})) (new-knext-is-a '({ascent} {countable}) '({ascending} {uncountable})) (new-knext-is-a '({ascending} {uncountable}) '({rise} {uncountable})) (new-knext-type {ascending} {uncountable}) (new-knext-type {ascent} {uncountable}) (new-statement {ascending} {consists of} {ascent}) (new-knext-eq '({climb} {thing}) '({mount} {thing})) (new-knext-is-a '({lowering} {countable}) '({letting down} {countable})) (new-knext-is-a '({letting down} {countable}) '({lowering} {countable})) (new-knext-eq '({swing} {thing}) '({vacillation} {thing})) (new-knext-is-a '({swinging} {uncountable}) '({vacillation} {uncountable})) (new-knext-is-a '({vacillation} {uncountable}) '({swinging} {uncountable})) (new-knext-eq '({slide} {thing}) '({glide} {thing})) (new-knext-is-a '({glide} {countable}) '({coast} {countable})) (new-knext-is-a '({coast} {countable}) '({glide} {countable})) (new-knext-is-a '({skid} {countable}) '({sideslip} {countable})) (new-knext-is-a '({sideslip} {countable}) '({skid} {countable})) (new-knext-is-a '({flow} {countable}) '({stream} {countable})) (new-knext-is-a '({stream} {countable}) '({flow} {countable})) (new-knext-eq '({outpouring} {thing}) '({flood} {thing})) (new-knext-is-a '({flood} {countable}) '({overflow} {countable})) (new-knext-is-a '({overflow} {countable}) '({flood} {countable})) (new-knext-eq '({hurrying} {thing}) '({speeding} {thing})) (new-knext-is-a '({speed} {uncountable}) '({speeding} {uncountable})) (new-knext-is-a '({speeding} {uncountable}) '({speed} {uncountable})) (new-knext-eq '({quickening} {thing}) '({speedup} {thing})) (new-knext-type {acceleration} {uncountable}) (new-knext-type {deceleration} {uncountable}) (new-is-not-a {acceleration} {deceleration}) (new-knext-type {acceleration} {uncountable}) (new-knext-type {speedup} {uncountable}) (new-statement {acceleration} {consists of} {speedup}) (new-knext-is-a '({speedup} {countable}) '({acceleration} {uncountable})) (new-knext-eq '({motion} {thing}) '({movement} {thing})) (new-knext-eq '({motility} {thing}) '({movement} {thing})) (new-knext-is-a '({movement} {countable}) '({move} {countable})) (new-knext-is-a '({move} {countable}) '({movement} {countable})) (new-knext-eq '({dart} {thing}) '({flit} {thing})) (new-knext-eq '({jabbing} {thing}) '({jab} {thing})) (new-knext-eq '({poke} {thing}) '({thrusting} {thing})) (new-knext-is-a '({jab} {countable}) '({poking} {uncountable})) (new-knext-is-a '({jab} {countable}) '({thrusting} {countable})) (new-knext-type {poking} {uncountable}) (new-knext-type {jab} {uncountable}) (new-statement {poking} {consists of} {jab}) (new-knext-is-a '({poking} {uncountable}) '({thrusting} {uncountable})) (new-knext-is-a '({thrusting} {countable}) '({jab} {countable})) (new-knext-is-a '({thrusting} {uncountable}) '({poking} {uncountable})) (new-knext-is-a '({inclination} {uncountable}) '({inclining} {uncountable})) (new-knext-is-a '({inclining} {uncountable}) '({inclination} {uncountable})) (new-knext-is-a '({kick} {countable}) '({kicking} {countable})) (new-knext-is-a '({kicking} {countable}) '({kick} {countable})) (new-knext-type {opening} {countable}) (new-knext-type {closing} {uncountable}) (new-is-not-a {opening} {closing}) (new-knext-eq '({passing} {thing}) '({overtaking} {thing})) (new-knext-eq '({rotary motion} {thing}) '({rotation} {thing})) (new-knext-eq '({twirl} {thing}) '({spin} {thing})) (new-knext-eq '({twisting} {thing}) '({spin} {thing})) (new-knext-eq '({whirl} {thing}) '({spin} {thing})) (new-knext-is-a '({spin} {countable}) '({twist} {countable})) (new-knext-is-a '({twist} {countable}) '({spin} {countable})) (new-knext-type {closing} {countable}) (new-knext-type {opening} {countable}) (new-is-not-a {closing} {opening}) (new-knext-is-a '({shutting} {uncountable}) '({closing} {uncountable})) (new-knext-is-a '({closing} {uncountable}) '({shutting} {uncountable})) (new-knext-is-a '({wind} {countable}) '({winding} {countable})) (new-knext-is-a '({winding} {countable}) '({wind} {countable})) (new-knext-eq '({reorientation} {thing}) '({change of direction} {thing})) (new-knext-eq '({reversion} {thing}) '({turnabout} {thing})) (new-knext-eq '({reverse} {thing}) '({turnabout} {thing})) (new-knext-eq '({reversal} {thing}) '({turnabout} {thing})) (new-knext-is-a '({turnabout} {countable}) '({turnaround} {countable})) (new-knext-is-a '({turnaround} {countable}) '({turnabout} {countable})) (new-knext-is-a '({waggle} {countable}) '({shake} {countable})) (new-knext-is-a '({shake} {countable}) '({waggle} {countable})) (new-knext-eq '({rock} {thing}) '({sway} {thing})) (new-knext-eq '({tilt} {thing}) '({sway} {thing})) (new-knext-is-a '({careen} {countable}) '({sway} {countable})) (new-knext-is-a '({sway} {countable}) '({careen} {countable})) (new-knext-eq '({upset} {thing}) '({overturn} {thing})) (new-knext-is-a '({overturn} {countable}) '({turnover} {countable})) (new-knext-is-a '({turnover} {countable}) '({overturn} {countable})) (new-knext-eq '({shudder} {thing}) '({tremor} {thing})) (new-knext-eq '({wriggle} {thing}) '({wiggle} {thing})) (new-knext-eq '({squirm} {thing}) '({wiggle} {thing})) (new-knext-is-a '({turn} {countable}) '({turning} {countable})) (new-knext-is-a '({turning} {countable}) '({turn} {countable})) (new-knext-eq '({digression} {thing}) '({diversion} {thing})) (add-english-names (list {deflection} {deflection} {deflexion} {deflexion}) (list "deflection" "deflection" "deflexion" "deflexion")) (new-knext-eq '({deflection} {thing}) '({diversion} {thing})) (new-knext-eq '({divagation} {thing}) '({diversion} {thing})) (new-knext-eq '({deflection} {thing}) '({deviation} {thing})) (new-knext-is-a '({diversion} {countable}) '({deviation} {countable})) (new-knext-is-a '({deviation} {countable}) '({diversion} {countable})) (new-knext-type {decrease} {countable}) (new-knext-type {increase} {countable}) (new-is-not-a {decrease} {increase}) (new-knext-eq '({alleviation} {thing}) '({easement} {thing})) (new-knext-eq '({relief} {thing}) '({easement} {thing})) (new-knext-is-a '({easing} {uncountable}) '({easement} {uncountable})) (new-knext-is-a '({easement} {uncountable}) '({easing} {uncountable})) (add-english-names (list {minimization} {minimisation} {minimization} {minimisation}) (list "minimization" "minimisation" "minimization" "minimisation")) (new-knext-eq '({minimization} {thing}) '({minimization} {thing})) (new-knext-type {minimization} {countable}) (new-knext-type {maximization} {countable}) (new-is-not-a {minimization} {maximization}) (new-knext-eq '({consumption} {thing}) '({using up} {thing})) (new-knext-is-a '({using up} {uncountable}) '({expenditure} {uncountable})) (new-knext-is-a '({expenditure} {uncountable}) '({using up} {uncountable})) (new-knext-type {compression} {uncountable}) (new-knext-type {decompression} {uncountable}) (new-is-not-a {compression} {decompression}) (new-knext-is-a '({compression} {uncountable}) '({compressing} {uncountable})) (new-knext-is-a '({compressing} {uncountable}) '({compression} {uncountable})) (new-knext-eq '({squeezing} {thing}) '({squeeze} {thing})) (new-knext-eq '({pinch} {thing}) '({tweak} {thing})) (new-knext-eq '({decompression} {thing}) '({decompressing} {thing})) (new-knext-type {decompression} {uncountable}) (new-knext-type {compression} {uncountable}) (new-is-not-a {decompression} {compression}) (new-knext-eq '({crush} {thing}) '({compaction} {thing})) (new-knext-is-a '({crunch} {countable}) '({compaction} {countable})) (new-knext-is-a '({compaction} {countable}) '({crunch} {countable})) (add-english-names (list {pulverization} {pulverisation} {pulverization} {pulverisation}) (list "pulverization" "pulverisation" "pulverization" "pulverisation")) (new-knext-eq '({mill} {thing}) '({pulverization} {thing})) (new-knext-is-a '({grind} {uncountable}) '({pulverization} {uncountable})) (add-english-names (list {pulverization} {pulverisation} {pulverization} {pulverisation}) (list "pulverization" "pulverisation" "pulverization" "pulverisation")) (new-knext-is-a '({grind} {countable}) '({pulverization} {countable})) (new-knext-is-a '({pulverization} {uncountable}) '({grind} {uncountable})) (add-english-names (list {pulverization} {pulverisation} {pulverization} {pulverisation}) (list "pulverization" "pulverisation" "pulverization" "pulverisation")) (new-knext-type {pulverization} {uncountable}) (new-knext-type {pulverization} {uncountable}) (new-statement {pulverization} {consists of} {pulverization}) (add-english-names (list {pulverization} {pulverisation} {pulverization} {pulverisation}) (list "pulverization" "pulverisation" "pulverization" "pulverisation")) (new-knext-is-a '({pulverization} {countable}) '({grind} {countable})) (add-english-names (list {pulverization} {pulverisation} {pulverization} {pulverisation}) (list "pulverization" "pulverisation" "pulverization" "pulverisation")) (new-knext-eq '({trim} {thing}) '({clipping} {thing})) (new-knext-is-a '({trimming} {countable}) '({clipping} {countable})) (new-knext-is-a '({clipping} {countable}) '({trimming} {countable})) (new-knext-type {subtraction} {uncountable}) (new-knext-type {addition} {uncountable}) (new-is-not-a {subtraction} {addition}) (new-knext-is-a '({subtraction} {uncountable}) '({deduction} {uncountable})) (new-knext-is-a '({deduction} {uncountable}) '({subtraction} {uncountable})) (new-knext-eq '({price reduction} {thing}) '({discount} {thing})) (new-knext-is-a '({discount} {countable}) '({deduction} {countable})) (new-knext-is-a '({deduction} {countable}) '({discount} {countable})) (new-knext-type {weakening} {countable}) (new-knext-type {strengthening} {uncountable}) (new-is-not-a {weakening} {strengthening}) (new-knext-type {increase} {countable}) (new-knext-type {decrease} {countable}) (new-is-not-a {increase} {decrease}) (new-knext-type {addition} {uncountable}) (new-knext-type {subtraction} {uncountable}) (new-is-not-a {addition} {subtraction}) (new-knext-type {contraction} {countable}) (new-knext-type {expansion} {countable}) (new-is-not-a {contraction} {expansion}) (new-knext-eq '({enlargement} {thing}) '({expansion} {thing})) (new-knext-type {expansion} {countable}) (new-knext-type {contraction} {countable}) (new-is-not-a {expansion} {contraction}) (new-knext-type {inflation} {countable}) (new-knext-type {deflation} {countable}) (new-is-not-a {inflation} {deflation}) (new-knext-eq '({dispersion} {thing}) '({dispersal} {thing})) (new-knext-eq '({diffusion} {thing}) '({dispersal} {thing})) (new-knext-is-a '({dispersal} {uncountable}) '({dissemination} {uncountable})) (new-knext-is-a '({dissemination} {uncountable}) '({dispersal} {uncountable})) (new-knext-eq '({scattering} {thing}) '({scatter} {thing})) (new-knext-is-a '({scatter} {countable}) '({strewing} {countable})) (new-knext-is-a '({strewing} {countable}) '({scatter} {countable})) (new-knext-type {extension} {countable}) (new-knext-type {flexion} {countable}) (new-is-not-a {extension} {flexion}) (new-knext-eq '({muscle contraction} {thing}) '({muscular contraction} {thing})) (new-knext-is-a '({contraction} {countable}) '({muscular contraction} {countable})) (new-knext-is-a '({muscular contraction} {countable}) '({contraction} {countable})) (new-knext-is-a '({expansion} {countable}) '({expanding upon} {countable})) (new-knext-is-a '({expanding upon} {countable}) '({expansion} {countable})) (new-knext-is-a '({amplification} {countable}) '({elaboration} {countable})) (new-knext-is-a '({elaboration} {countable}) '({amplification} {countable})) (new-knext-eq '({subjoining} {thing}) '({subjunction} {thing})) (new-knext-is-a '({supplementation} {countable}) '({subjunction} {countable})) (new-knext-is-a '({subjunction} {countable}) '({supplementation} {countable})) (new-knext-eq '({accruement} {thing}) '({accrual} {thing})) (new-knext-is-a '({accumulation} {countable}) '({accrual} {countable})) (new-knext-is-a '({accrual} {countable}) '({accumulation} {countable})) (new-knext-eq '({deposit} {thing}) '({deposition} {thing})) (new-knext-eq '({reposition} {thing}) '({repositing} {thing})) (new-knext-eq '({storage} {thing}) '({repositing} {thing})) (new-knext-is-a '({repositing} {uncountable}) '({warehousing} {uncountable})) (new-knext-is-a '({warehousing} {uncountable}) '({repositing} {uncountable})) (add-english-names (list {aggrandizement} {aggrandisement} {aggrandizement} {aggrandisement}) (list "aggrandizement" "aggrandisement" "aggrandizement" "aggrandisement")) (new-knext-eq '({aggrandizement} {thing}) '({aggrandizement} {thing})) (new-knext-is-a '({aggrandizement} {countable}) '({elevation} {countable})) (new-knext-is-a '({elevation} {countable}) '({aggrandizement} {countable})) (new-knext-type {strengthening} {countable}) (new-knext-type {weakening} {countable}) (new-is-not-a {strengthening} {weakening}) (new-knext-eq '({aggravation} {thing}) '({exacerbation} {thing})) (new-knext-type {concentration} {countable}) (new-knext-type {dilution} {countable}) (new-is-not-a {concentration} {dilution}) (new-knext-eq '({breakage} {thing}) '({breaking} {thing})) (new-knext-eq '({break} {thing}) '({breaking} {thing})) (new-knext-eq '({chip} {thing}) '({chipping} {thing})) (new-knext-is-a '({chipping} {countable}) '({splintering} {countable})) (new-knext-is-a '({splintering} {countable}) '({chipping} {countable})) (new-knext-eq '({explosion} {thing}) '({burst} {thing})) (new-knext-eq '({inflammation} {thing}) '({kindling} {thing})) (new-knext-eq '({firing} {thing}) '({ignition} {thing})) (new-knext-eq '({lighting} {thing}) '({ignition} {thing})) (new-knext-is-a '({ignition} {uncountable}) '({kindling} {uncountable})) (new-knext-is-a '({kindling} {uncountable}) '({ignition} {uncountable})) (new-knext-eq '({combination} {thing}) '({compounding} {thing})) (new-knext-eq '({combining} {thing}) '({compounding} {thing})) (new-knext-is-a '({attachment} {countable}) '({affixation} {countable})) (new-knext-is-a '({affixation} {countable}) '({attachment} {countable})) (new-knext-eq '({intermixture} {thing}) '({commixture} {thing})) (new-knext-eq '({mix} {thing}) '({mixing} {thing})) (new-knext-eq '({admixture} {thing}) '({mixing} {thing})) (new-knext-eq '({mixture} {thing}) '({mixing} {thing})) (new-knext-is-a '({commixture} {countable}) '({mixing} {countable})) (new-knext-is-a '({mixing} {countable}) '({commixture} {countable})) (new-knext-is-a '({blend} {countable}) '({blending} {uncountable})) (new-knext-type {blending} {uncountable}) (new-knext-type {blend} {uncountable}) (new-statement {blending} {consists of} {blend}) (new-knext-eq '({unification} {thing}) '({uniting} {thing})) (new-knext-is-a '({uniting} {uncountable}) '({conjugation} {uncountable})) (new-knext-type {uniting} {uncountable}) (new-knext-type {jointure} {uncountable}) (new-statement {uniting} {consists of} {jointure}) (new-knext-is-a '({conjugation} {uncountable}) '({uniting} {uncountable})) (new-knext-is-a '({conjugation} {countable}) '({jointure} {countable})) (new-knext-is-a '({jointure} {countable}) '({uniting} {uncountable})) (new-knext-is-a '({jointure} {countable}) '({conjugation} {countable})) (new-knext-eq '({concretion} {thing}) '({coalescence} {thing})) (new-knext-is-a '({coalescence} {countable}) '({coalition} {countable})) (new-knext-is-a '({coalescence} {uncountable}) '({conglutination} {uncountable})) (new-knext-is-a '({coalition} {countable}) '({coalescence} {countable})) (new-knext-is-a '({coalition} {countable}) '({conglutination} {uncountable})) (new-knext-is-a '({conglutination} {uncountable}) '({coalescence} {uncountable})) (new-knext-type {conglutination} {uncountable}) (new-knext-type {coalition} {uncountable}) (new-statement {conglutination} {consists of} {coalition}) (new-knext-eq '({disruption} {thing}) '({interruption} {thing})) (new-knext-is-a '({interruption} {countable}) '({gap} {countable})) (new-knext-is-a '({gap} {countable}) '({interruption} {countable})) (new-knext-is-a '({disconnection} {countable}) '({disjunction} {countable})) (new-knext-is-a '({disjunction} {countable}) '({disconnection} {countable})) (add-english-names (list {atomization} {atomisation} {atomization} {atomisation}) (list "atomization" "atomisation" "atomization" "atomisation")) (new-knext-eq '({fragmentation} {thing}) '({atomization} {thing})) (add-english-names (list {atomization} {atomisation} {atomization} {atomisation}) (list "atomization" "atomisation" "atomization" "atomisation")) (add-english-names (list {atomization} {atomisation} {atomization} {atomisation}) (list "atomization" "atomisation" "atomization" "atomisation")) (new-knext-type {atomization} {uncountable}) (new-knext-type {atomization} {uncountable}) (new-statement {atomization} {consists of} {atomization}) (new-knext-eq '({remotion} {thing}) '({removal} {thing})) (new-knext-type {decontamination} {countable}) (new-knext-type {contamination} {countable}) (new-is-not-a {decontamination} {contamination}) (new-knext-eq '({baring} {thing}) '({uncovering} {thing})) (new-knext-eq '({husking} {thing}) '({denudation} {thing})) (new-knext-is-a '({denudation} {countable}) '({stripping} {countable})) (new-knext-is-a '({denudation} {countable}) '({uncovering} {uncountable})) (new-knext-is-a '({stripping} {countable}) '({denudation} {countable})) (new-knext-is-a '({stripping} {uncountable}) '({uncovering} {uncountable})) (new-knext-type {uncovering} {uncountable}) (new-knext-type {denudation} {uncountable}) (new-statement {uncovering} {consists of} {denudation}) (new-knext-is-a '({uncovering} {uncountable}) '({stripping} {uncountable})) (new-knext-eq '({voidance} {thing}) '({emptying} {thing})) (new-knext-eq '({evacuation} {thing}) '({emptying} {thing})) (new-knext-eq '({drainage} {thing}) '({drain} {thing})) (new-knext-is-a '({rinse} {uncountable}) '({rinsing} {uncountable})) (new-knext-is-a '({rinsing} {uncountable}) '({rinse} {uncountable})) (new-knext-is-a '({censoring} {countable}) '({censorship} {uncountable})) (new-knext-type {censorship} {uncountable}) (new-knext-type {censoring} {uncountable}) (new-statement {censorship} {consists of} {censoring}) (add-english-names (list {sectionalization} {sectionalisation} {sectionalization} {sectionalisation}) (list "sectionalization" "sectionalisation" "sectionalization" "sectionalisation")) (new-knext-eq '({sectionalization} {thing}) '({sectionalization} {thing})) (new-knext-eq '({partition} {thing}) '({partitioning} {thing})) (new-knext-eq '({segmentation} {thing}) '({partitioning} {thing})) (new-knext-is-a '({partitioning} {countable}) '({sectionalization} {countable})) (new-knext-is-a '({sectionalization} {countable}) '({partitioning} {countable})) (new-knext-eq '({transformation} {thing}) '({translation} {thing})) (new-knext-eq '({recreation} {thing}) '({refreshment} {thing})) (new-knext-eq '({damage} {thing}) '({scathe} {thing})) (new-knext-eq '({harm} {thing}) '({scathe} {thing})) (new-knext-eq '({hurt} {thing}) '({scathe} {thing})) (new-knext-is-a '({wound} {countable}) '({wounding} {countable})) (new-knext-is-a '({wounding} {countable}) '({wound} {countable})) (new-knext-type {flexion} {countable}) (new-knext-type {extension} {countable}) (new-is-not-a {flexion} {extension}) (new-knext-is-a '({flexion} {countable}) '({flexure} {countable})) (new-knext-is-a '({flexure} {countable}) '({flexion} {countable})) (new-knext-type {activity} {countable}) (new-knext-type {inactivity} {uncountable}) (new-is-not-a {activity} {inactivity}) (new-knext-eq '({pattern} {thing}) '({practice} {thing})) (new-knext-eq '({usage} {thing}) '({custom} {thing})) (new-knext-eq '({use} {thing}) '({habit} {thing})) (new-knext-eq '({slavery} {thing}) '({slaveholding} {thing})) (new-knext-eq '({way of life} {thing}) '({path} {thing})) (new-knext-is-a '({way} {countable}) '({path} {countable})) (new-knext-is-a '({path} {countable}) '({way} {countable})) (new-knext-eq '({neglect} {thing}) '({disregard} {thing})) (new-knext-eq '({exploitation} {thing}) '({using} {thing})) (new-knext-eq '({victimization} {thing}) '({using} {thing})) (add-english-names (list {victimization} {victimisation} {victimization} {victimisation}) (list "victimization" "victimisation" "victimization" "victimisation")) (add-english-names (list {victimization} {victimisation} {victimization} {victimisation}) (list "victimization" "victimisation" "victimization" "victimisation")) (new-knext-is-a '({harassment} {uncountable}) '({molestation} {uncountable})) (new-knext-is-a '({molestation} {uncountable}) '({harassment} {uncountable})) (new-knext-eq '({abuse} {thing}) '({maltreatment} {thing})) (new-knext-eq '({torture} {thing}) '({torturing} {thing})) (new-knext-eq '({inhumanity} {thing}) '({atrocity} {thing})) (new-knext-eq '({ribbing} {thing}) '({teasing} {thing})) (new-knext-eq '({tease} {thing}) '({tantalization} {thing})) (new-knext-type {teasing} {uncountable}) (new-knext-type {tantalization} {uncountable}) (new-statement {teasing} {consists of} {tantalization}) (new-knext-is-a '({tantalization} {countable}) '({teasing} {uncountable})) (new-knext-is-a '({diversion} {countable}) '({recreation} {countable})) (new-knext-is-a '({recreation} {uncountable}) '({diversion} {countable})) (new-knext-eq '({joke} {thing}) '({antic} {thing})) (new-knext-eq '({prank} {thing}) '({antic} {thing})) (new-knext-eq '({trick} {thing}) '({antic} {thing})) (new-knext-eq '({caper} {thing}) '({antic} {thing})) (new-knext-eq '({celebration} {thing}) '({festivity} {thing})) (new-knext-eq '({terpsichore} {thing}) '({dancing} {thing})) (new-knext-eq '({saltation} {thing}) '({dance} {thing})) (new-knext-is-a '({dancing} {uncountable}) '({dance} {uncountable})) (new-knext-is-a '({dance} {uncountable}) '({dancing} {uncountable})) (new-knext-eq '({amusement} {thing}) '({entertainment} {thing})) (new-knext-is-a '({escape} {countable}) '({escapism} {uncountable})) (new-knext-type {escapism} {uncountable}) (new-knext-type {escape} {uncountable}) (new-statement {escapism} {consists of} {escape}) (new-knext-eq '({merriment} {thing}) '({fun} {thing})) (new-knext-eq '({playfulness} {thing}) '({fun} {thing})) (new-knext-eq '({gaming} {thing}) '({gambling} {thing})) (new-knext-eq '({jocularity} {thing}) '({joke} {thing})) (new-knext-type {jest} {uncountable}) (new-knext-type {joke} {uncountable}) (new-statement {jest} {consists of} {joke}) (new-knext-is-a '({joke} {countable}) '({jest} {uncountable})) (new-knext-eq '({interest} {thing}) '({pursuit} {thing})) (new-knext-is-a '({pastime} {countable}) '({pursuit} {countable})) (new-knext-is-a '({pursuit} {countable}) '({pastime} {countable})) (new-knext-eq '({hobby} {thing}) '({avocation} {thing})) (new-knext-eq '({pursuit} {thing}) '({avocation} {thing})) (new-knext-eq '({sideline} {thing}) '({avocation} {thing})) (new-knext-eq '({gymnastic exercise} {thing}) '({gymnastics} {thing})) (new-knext-eq '({split up} {thing}) '({stock split} {thing})) (new-knext-is-a '({split} {countable}) '({stock split} {countable})) (new-knext-is-a '({stock split} {countable}) '({split} {countable})) (new-knext-is-a '({swim} {countable}) '({swimming} {uncountable})) (new-knext-eq '({natation} {thing}) '({floating} {thing})) (new-knext-eq '({fisticuffs} {thing}) '({boxing} {thing})) (new-knext-is-a '({boxing} {uncountable}) '({pugilism} {uncountable})) (new-knext-is-a '({pugilism} {uncountable}) '({boxing} {uncountable})) (new-knext-is-a '({hunt} {countable}) '({hunting} {uncountable})) (new-knext-type {hunting} {uncountable}) (new-knext-type {hunt} {uncountable}) (new-statement {hunting} {consists of} {hunt}) (new-knext-is-a '({golf} {uncountable}) '({golf game} {countable})) (new-knext-is-a '({golf game} {countable}) '({golf} {countable})) (new-knext-is-a '({football} {uncountable}) '({football game} {countable})) (new-knext-is-a '({football game} {countable}) '({football} {uncountable})) (new-knext-type {rugby} {uncountable}) (new-knext-type {rugger} {uncountable}) (new-statement {rugby} {consists of} {rugger}) (new-knext-is-a '({rugger} {countable}) '({rugby} {uncountable})) (new-knext-is-a '({baseball} {uncountable}) '({baseball game} {countable})) (new-knext-is-a '({baseball game} {countable}) '({baseball} {countable})) (new-knext-eq '({association football} {thing}) '({soccer} {thing})) (new-knext-is-a '({basketball} {uncountable}) '({basketball game} {countable})) (new-knext-is-a '({basketball} {uncountable}) '({hoops} {uncountable})) (new-knext-is-a '({basketball game} {countable}) '({basketball} {countable})) (new-knext-is-a '({basketball game} {countable}) '({hoops} {uncountable})) (new-knext-is-a '({hoops} {uncountable}) '({basketball} {uncountable})) (new-knext-is-a '({hoops} {uncountable}) '({basketball game} {countable})) (new-knext-is-a '({card game} {countable}) '({cards} {uncountable})) (new-knext-is-a '({cards} {uncountable}) '({card game} {countable})) (new-knext-is-a '({poker} {uncountable}) '({poker game} {countable})) (new-knext-is-a '({poker game} {countable}) '({poker} {uncountable})) (new-knext-eq '({parlour game} {thing}) '({parlor game} {thing})) (add-english-names (list {drafts} {draughts} {drafts}) (list "drafts" "draughts" "drafts")) (add-english-names (list {drafts} {draughts} {drafts}) (list "drafts" "draughts" "drafts")) (new-knext-is-a '({chess} {uncountable}) '({chess game} {countable})) (new-knext-is-a '({chess game} {countable}) '({chess} {uncountable})) (new-knext-is-a '({bet} {countable}) '({wager} {countable})) (new-knext-is-a '({wager} {countable}) '({bet} {countable})) (new-knext-is-a '({lottery} {countable}) '({drawing} {countable})) (new-knext-is-a '({drawing} {countable}) '({lottery} {countable})) (new-knext-eq '({conviviality} {thing}) '({merrymaking} {thing})) (new-knext-is-a '({merrymaking} {uncountable}) '({jollification} {uncountable})) (new-knext-is-a '({jollification} {uncountable}) '({merrymaking} {uncountable})) (new-knext-eq '({saturnalia} {thing}) '({drunken revelry} {thing})) (new-knext-eq '({riot} {thing}) '({drunken revelry} {thing})) (new-knext-eq '({bacchanal} {thing}) '({drunken revelry} {thing})) (new-knext-eq '({orgy} {thing}) '({debauch} {thing})) (new-knext-eq '({bacchanalia} {thing}) '({debauch} {thing})) (new-knext-is-a '({debauch} {countable}) '({drunken revelry} {countable})) (new-knext-is-a '({drunken revelry} {countable}) '({debauch} {countable})) (new-knext-eq '({romp} {thing}) '({gambol} {thing})) (new-knext-eq '({caper} {thing}) '({gambol} {thing})) (new-knext-type {frolic} {uncountable}) (new-knext-type {gambol} {uncountable}) (new-statement {frolic} {consists of} {gambol}) (new-knext-is-a '({gambol} {countable}) '({frolic} {uncountable})) (new-knext-eq '({toying} {thing}) '({flirting} {thing})) (new-knext-eq '({flirt} {thing}) '({flirtation} {thing})) (new-knext-eq '({coquetry} {thing}) '({flirtation} {thing})) (new-knext-is-a '({flirting} {uncountable}) '({flirtation} {uncountable})) (new-knext-type {flirting} {uncountable}) (new-knext-type {dalliance} {uncountable}) (new-statement {flirting} {consists of} {dalliance}) (new-knext-is-a '({flirtation} {uncountable}) '({flirting} {uncountable})) (new-knext-is-a '({flirtation} {countable}) '({dalliance} {countable})) (new-knext-is-a '({dalliance} {countable}) '({flirting} {uncountable})) (new-knext-is-a '({dalliance} {countable}) '({flirtation} {countable})) (new-knext-is-a '({beguilement} {countable}) '({distraction} {countable})) (new-knext-is-a '({distraction} {countable}) '({beguilement} {countable})) (new-knext-eq '({celebration} {thing}) '({solemnization} {thing})) (add-english-names (list {solemnization} {solemnisation} {solemnization} {solemnisation}) (list "solemnization" "solemnisation" "solemnization" "solemnisation")) (new-knext-eq '({solemnization} {thing}) '({solemnization} {thing})) (new-knext-eq '({fete} {thing}) '({festival} {thing})) (new-knext-eq '({carnival} {thing}) '({fair} {thing})) (new-knext-is-a '({fair} {countable}) '({funfair} {countable})) (new-knext-is-a '({funfair} {countable}) '({fair} {countable})) (new-knext-eq '({showing} {thing}) '({display} {thing})) (new-knext-is-a '({display} {countable}) '({exhibit} {countable})) (new-knext-is-a '({exhibit} {countable}) '({display} {countable})) (new-knext-eq '({presentment} {thing}) '({demonstration} {thing})) (new-knext-is-a '({presentation} {countable}) '({demonstration} {countable})) (new-knext-is-a '({demonstration} {countable}) '({presentation} {countable})) (new-knext-is-a '({sport} {countable}) '({athletics} {uncountable})) (new-knext-is-a '({athletics} {uncountable}) '({sport} {countable})) (new-knext-eq '({hoofing} {thing}) '({step dancing} {thing})) (new-knext-eq '({concert dance} {thing}) '({ballet} {thing})) (new-knext-eq '({vocalizing} {thing}) '({singing} {thing})) (new-knext-eq '({performing} {thing}) '({playacting} {thing})) (new-knext-eq '({playing} {thing}) '({acting} {thing})) (new-knext-is-a '({acting} {uncountable}) '({playacting} {uncountable})) (new-knext-is-a '({playacting} {uncountable}) '({acting} {uncountable})) (new-knext-eq '({characterization} {thing}) '({portrayal} {thing})) (new-knext-eq '({personation} {thing}) '({portrayal} {thing})) (new-knext-is-a '({portrayal} {countable}) '({enactment} {countable})) (new-knext-is-a '({enactment} {countable}) '({portrayal} {countable})) (new-knext-is-a '({apery} {countable}) '({mimicry} {countable})) (new-knext-is-a '({mimicry} {countable}) '({apery} {countable})) (new-knext-eq '({takeoff} {thing}) '({parody} {thing})) (new-knext-is-a '({parody} {countable}) '({mockery} {countable})) (new-knext-is-a '({mockery} {countable}) '({parody} {countable})) (new-knext-eq '({business} {thing}) '({byplay} {thing})) (new-knext-is-a '({stage business} {uncountable}) '({byplay} {uncountable})) (new-knext-is-a '({byplay} {uncountable}) '({stage business} {uncountable})) (new-knext-is-a '({liveliness} {uncountable}) '({animation} {uncountable})) (new-knext-is-a '({animation} {uncountable}) '({liveliness} {uncountable})) (new-knext-is-a '({surprise} {countable}) '({surprisal} {countable})) (new-knext-is-a '({surprisal} {countable}) '({surprise} {countable})) (new-knext-eq '({ruckus} {thing}) '({ruction} {thing})) (new-knext-eq '({rumpus} {thing}) '({ruction} {thing})) (new-knext-eq '({din} {thing}) '({commotion} {thing})) (new-knext-eq '({tumult} {thing}) '({commotion} {thing})) (new-knext-is-a '({commotion} {countable}) '({ruction} {countable})) (new-knext-is-a '({ruction} {countable}) '({commotion} {countable})) (new-knext-eq '({agitation} {thing}) '({hullabaloo} {thing})) (new-knext-eq '({excitement} {thing}) '({hullabaloo} {thing})) (new-knext-type {turmoil} {uncountable}) (new-knext-type {upheaval} {uncountable}) (new-statement {turmoil} {consists of} {upheaval}) (new-knext-is-a '({turmoil} {uncountable}) '({hullabaloo} {uncountable})) (new-knext-is-a '({upheaval} {countable}) '({turmoil} {uncountable})) (new-knext-is-a '({upheaval} {countable}) '({hullabaloo} {countable})) (new-knext-is-a '({hullabaloo} {uncountable}) '({turmoil} {uncountable})) (new-knext-is-a '({hullabaloo} {countable}) '({upheaval} {countable})) (new-knext-eq '({overthrow} {thing}) '({derangement} {thing})) (new-knext-is-a '({upset} {countable}) '({derangement} {countable})) (new-knext-is-a '({derangement} {countable}) '({upset} {countable})) (new-knext-eq '({hustle} {thing}) '({bustle} {thing})) (new-knext-eq '({fuss} {thing}) '({bustle} {thing})) (new-knext-eq '({stir} {thing}) '({bustle} {thing})) (new-knext-is-a '({bustle} {countable}) '({flurry} {countable})) (new-knext-is-a '({bustle} {uncountable}) '({ado} {uncountable})) (new-knext-is-a '({flurry} {countable}) '({bustle} {countable})) (new-knext-is-a '({flurry} {countable}) '({ado} {uncountable})) (new-knext-is-a '({ado} {uncountable}) '({bustle} {uncountable})) (new-knext-type {ado} {uncountable}) (new-knext-type {flurry} {uncountable}) (new-statement {ado} {consists of} {flurry}) (new-knext-eq '({hurry} {thing}) '({haste} {thing})) (new-knext-eq '({rushing} {thing}) '({haste} {thing})) (new-knext-type {haste} {uncountable}) (new-knext-type {rush} {uncountable}) (new-statement {haste} {consists of} {rush}) (new-knext-is-a '({rush} {countable}) '({haste} {uncountable})) (new-knext-is-a '({dash} {countable}) '({bolt} {countable})) (new-knext-is-a '({bolt} {countable}) '({dash} {countable})) (new-knext-eq '({scramble} {thing}) '({scamper} {thing})) (new-knext-eq '({scurry} {thing}) '({scamper} {thing})) (new-knext-eq '({play} {thing}) '({maneuver} {thing})) (add-english-names (list {maneuver} {manoeuvre}) (list "maneuver" "manoeuvre")) (new-knext-is-a '({maneuver} {countable}) '({maneuver} {countable})) (add-english-names (list {maneuver} {manoeuvre}) (list "maneuver" "manoeuvre")) (new-knext-is-a '({maneuver} {countable}) '({maneuver} {countable})) (new-knext-is-a '({rush} {countable}) '({rushing} {uncountable})) (new-knext-type {rushing} {uncountable}) (new-knext-type {rush} {uncountable}) (new-statement {rushing} {consists of} {rush}) (new-knext-eq '({golf shot} {thing}) '({golf stroke} {thing})) (new-knext-is-a '({golf stroke} {countable}) '({swing} {countable})) (new-knext-is-a '({swing} {countable}) '({golf stroke} {countable})) (new-knext-is-a '({operation} {countable}) '({procedure} {countable})) (new-knext-is-a '({procedure} {countable}) '({operation} {countable})) (new-knext-is-a '({shining} {countable}) '({polishing} {uncountable})) (new-knext-type {polishing} {uncountable}) (new-knext-type {shining} {uncountable}) (new-statement {polishing} {consists of} {shining}) (new-knext-eq '({job} {thing}) '({occupation} {thing})) (new-knext-eq '({line of work} {thing}) '({occupation} {thing})) (new-knext-is-a '({occupation} {countable}) '({business} {countable})) (new-knext-is-a '({business} {uncountable}) '({occupation} {countable})) (new-knext-eq '({calling} {thing}) '({career} {thing})) (new-knext-eq '({vocation} {thing}) '({career} {thing})) (new-knext-eq '({work} {thing}) '({employment} {thing})) (new-knext-eq '({position} {thing}) '({berth} {thing})) (new-knext-eq '({post} {thing}) '({berth} {thing})) (new-knext-eq '({office} {thing}) '({berth} {thing})) (new-knext-eq '({spot} {thing}) '({berth} {thing})) (new-knext-eq '({billet} {thing}) '({berth} {thing})) (new-knext-eq '({place} {thing}) '({berth} {thing})) (new-knext-eq '({situation} {thing}) '({berth} {thing})) (new-knext-eq '({presidency} {thing}) '({presidentship} {thing})) (new-knext-eq '({chair} {thing}) '({professorship} {thing})) (new-knext-eq '({trade} {thing}) '({craft} {thing})) (new-knext-eq '({pilotage} {thing}) '({piloting} {thing})) (new-knext-eq '({cryptography} {thing}) '({steganography} {thing})) (new-knext-is-a '({coding} {countable}) '({secret writing} {countable})) (new-knext-is-a '({coding} {uncountable}) '({steganography} {uncountable})) (new-knext-is-a '({secret writing} {countable}) '({coding} {countable})) (new-knext-is-a '({secret writing} {countable}) '({steganography} {uncountable})) (new-knext-is-a '({steganography} {uncountable}) '({coding} {uncountable})) (new-knext-type {steganography} {uncountable}) (new-knext-type {secret writing} {uncountable}) (new-statement {steganography} {consists of} {secret writing}) (new-knext-eq '({encryption} {thing}) '({encoding} {thing})) (new-knext-eq '({accounting} {thing}) '({accountancy} {thing})) (new-knext-eq '({labor} {thing}) '({toil} {thing})) (add-english-names (list {labor} {labour}) (list "labor" "labour")) (add-english-names (list {labor} {labour}) (list "labor" "labour")) (new-knext-eq '({plodding} {thing}) '({drudgery} {thing})) (new-knext-is-a '({drudgery} {uncountable}) '({grind} {uncountable})) (new-knext-type {drudgery} {uncountable}) (new-knext-type {donkeywork} {uncountable}) (new-statement {drudgery} {consists of} {donkeywork}) (new-knext-is-a '({grind} {uncountable}) '({drudgery} {uncountable})) (new-knext-is-a '({grind} {countable}) '({donkeywork} {countable})) (new-knext-is-a '({donkeywork} {countable}) '({drudgery} {uncountable})) (new-knext-is-a '({donkeywork} {countable}) '({grind} {countable})) (new-knext-eq '({effort} {thing}) '({exertion} {thing})) (new-knext-eq '({sweat} {thing}) '({exertion} {thing})) (new-knext-is-a '({elbow grease} {uncountable}) '({exertion} {uncountable})) (new-knext-type {elbow grease} {uncountable}) (new-knext-type {travail} {uncountable}) (new-statement {elbow grease} {consists of} {travail}) (new-knext-is-a '({exertion} {uncountable}) '({elbow grease} {uncountable})) (new-knext-is-a '({exertion} {countable}) '({travail} {countable})) (new-knext-is-a '({travail} {countable}) '({elbow grease} {uncountable})) (new-knext-is-a '({travail} {countable}) '({exertion} {countable})) (new-knext-eq '({trouble} {thing}) '({difficulty} {thing})) (new-knext-eq '({physical exercise} {thing}) '({exercising} {thing})) (new-knext-eq '({physical exertion} {thing}) '({exercising} {thing})) (new-knext-eq '({workout} {thing}) '({exercise} {thing})) (new-knext-is-a '({exercise} {countable}) '({exercising} {uncountable})) (new-knext-type {exercising} {uncountable}) (new-knext-type {exercise} {uncountable}) (new-statement {exercising} {consists of} {exercise}) (new-knext-is-a '({investigation} {uncountable}) '({investigating} {uncountable})) (new-knext-is-a '({investigating} {uncountable}) '({investigation} {uncountable})) (new-knext-eq '({enumeration} {thing}) '({count} {thing})) (new-knext-eq '({tally} {thing}) '({count} {thing})) (new-knext-eq '({numeration} {thing}) '({counting} {thing})) (new-knext-eq '({reckoning} {thing}) '({counting} {thing})) (new-knext-is-a '({count} {countable}) '({counting} {countable})) (new-knext-is-a '({counting} {countable}) '({count} {countable})) (new-knext-eq '({scrutiny} {thing}) '({examination} {thing})) (new-knext-eq '({examination} {thing}) '({testing} {thing})) (new-knext-eq '({enquiry} {thing}) '({inquiry} {thing})) (new-knext-is-a '({experiment} {countable}) '({experimentation} {countable})) (new-knext-is-a '({experimentation} {countable}) '({experiment} {countable})) (new-knext-type {scientific research} {uncountable}) (new-knext-type {research project} {uncountable}) (new-statement {scientific research} {consists of} {research project}) (new-knext-is-a '({research project} {countable}) '({scientific research} {uncountable})) (new-knext-is-a '({survey} {countable}) '({study} {countable})) (new-knext-is-a '({study} {countable}) '({survey} {countable})) (new-knext-eq '({nosecount} {thing}) '({nose count} {thing})) (new-knext-is-a '({census} {countable}) '({nose count} {countable})) (new-knext-is-a '({nose count} {countable}) '({census} {countable})) (new-knext-eq '({attention} {thing}) '({care} {thing})) (new-knext-eq '({aid} {thing}) '({care} {thing})) (new-knext-is-a '({care} {uncountable}) '({tending} {uncountable})) (new-knext-is-a '({tending} {uncountable}) '({care} {uncountable})) (new-knext-eq '({medical aid} {thing}) '({medical care} {thing})) (new-knext-eq '({intervention} {thing}) '({treatment} {thing})) (new-knext-eq '({cautery} {thing}) '({cauterization} {thing})) (add-english-names (list {cauterization} {cauterisation} {cauterization} {cauterisation}) (list "cauterization" "cauterisation" "cauterization" "cauterisation")) (new-knext-is-a '({cauterization} {countable}) '({cauterization} {countable})) (add-english-names (list {cauterization} {cauterisation} {cauterization} {cauterisation}) (list "cauterization" "cauterisation" "cauterization" "cauterisation")) (new-knext-is-a '({cauterization} {countable}) '({cauterization} {countable})) (new-knext-is-a '({disembowelment} {countable}) '({evisceration} {countable})) (new-knext-is-a '({evisceration} {countable}) '({disembowelment} {countable})) (new-knext-eq '({surgical procedure} {thing}) '({surgical operation} {thing})) (new-knext-eq '({surgical process} {thing}) '({surgical operation} {thing})) (new-knext-eq '({operation} {thing}) '({surgery} {thing})) (new-knext-is-a '({surgery} {uncountable}) '({surgical operation} {countable})) (new-knext-is-a '({surgical operation} {countable}) '({surgery} {countable})) (add-english-names (list {sterilization} {sterilisation} {sterilization} {sterilisation}) (list "sterilization" "sterilisation" "sterilization" "sterilisation")) (new-knext-eq '({sterilization} {thing}) '({sterilization} {thing})) (new-knext-type {castration} {uncountable}) (new-knext-type {emasculation} {uncountable}) (new-statement {castration} {consists of} {emasculation}) (new-knext-is-a '({emasculation} {countable}) '({castration} {uncountable})) (new-knext-eq '({fixing} {thing}) '({neutering} {thing})) (new-knext-is-a '({neutering} {uncountable}) '({altering} {uncountable})) (new-knext-is-a '({altering} {uncountable}) '({neutering} {uncountable})) (new-knext-is-a '({administration} {countable}) '({giving medication} {countable})) (new-knext-is-a '({giving medication} {countable}) '({administration} {countable})) (new-knext-eq '({dressing} {thing}) '({bandaging} {thing})) (new-knext-eq '({binding} {thing}) '({bandaging} {thing})) (new-knext-eq '({shot} {thing}) '({injection} {thing})) (new-knext-eq '({depth psychology} {thing}) '({psychoanalysis} {thing})) (new-knext-is-a '({psychoanalysis} {uncountable}) '({analysis} {uncountable})) (new-knext-is-a '({analysis} {uncountable}) '({psychoanalysis} {uncountable})) (new-knext-eq '({detrition} {thing}) '({friction} {thing})) (new-knext-eq '({rubbing} {thing}) '({friction} {thing})) (new-knext-eq '({coating} {thing}) '({application} {thing})) (new-knext-eq '({covering} {thing}) '({application} {thing})) (new-knext-type {loading} {countable}) (new-knext-type {unloading} {countable}) (new-is-not-a {loading} {unloading}) (new-knext-is-a '({pickings} {uncountable}) '({taking} {uncountable})) (new-knext-is-a '({taking} {uncountable}) '({pickings} {uncountable})) (new-knext-eq '({stitching} {thing}) '({sewing} {thing})) (new-knext-eq '({spattering} {thing}) '({splashing} {thing})) (new-knext-eq '({splattering} {thing}) '({splashing} {thing})) (new-knext-is-a '({spatter} {countable}) '({splashing} {countable})) (new-knext-is-a '({splashing} {countable}) '({spatter} {countable})) (new-knext-eq '({job} {thing}) '({chore} {thing})) (new-knext-eq '({task} {thing}) '({chore} {thing})) (new-knext-eq '({part} {thing}) '({role} {thing})) (new-knext-eq '({office} {thing}) '({function} {thing})) (new-knext-is-a '({function} {countable}) '({role} {countable})) (new-knext-is-a '({role} {countable}) '({function} {countable})) (new-knext-eq '({place} {thing}) '({stead} {thing})) (new-knext-is-a '({stead} {countable}) '({lieu} {countable})) (new-knext-is-a '({lieu} {countable}) '({stead} {countable})) (new-knext-is-a '({assignment} {countable}) '({duty assignment} {countable})) (new-knext-is-a '({duty assignment} {countable}) '({assignment} {countable})) (new-knext-eq '({sentry duty} {thing}) '({guard duty} {thing})) (new-knext-eq '({sentry go} {thing}) '({guard duty} {thing})) (new-knext-eq '({charge} {thing}) '({mission} {thing})) (new-knext-eq '({misconduct} {thing}) '({wrongdoing} {thing})) (new-knext-is-a '({wrongdoing} {uncountable}) '({wrongful conduct} {uncountable})) (new-knext-is-a '({wrongdoing} {countable}) '({actus reus} {countable})) (new-knext-is-a '({wrongful conduct} {uncountable}) '({wrongdoing} {uncountable})) (new-knext-type {wrongful conduct} {uncountable}) (new-knext-type {actus reus} {uncountable}) (new-statement {wrongful conduct} {consists of} {actus reus}) (new-knext-is-a '({actus reus} {countable}) '({wrongdoing} {countable})) (new-knext-is-a '({actus reus} {countable}) '({wrongful conduct} {uncountable})) (new-knext-eq '({misdeed} {thing}) '({misbehavior} {thing})) (add-english-names (list {misbehavior} {misbehaviour}) (list "misbehavior" "misbehaviour")) (new-knext-is-a '({misbehavior} {countable}) '({misbehavior} {countable})) (add-english-names (list {misbehavior} {misbehaviour}) (list "misbehavior" "misbehaviour")) (new-knext-is-a '({misbehavior} {countable}) '({misbehavior} {countable})) (new-knext-eq '({carelessness} {thing}) '({negligence} {thing})) (new-knext-eq '({neglect} {thing}) '({negligence} {thing})) (new-knext-eq '({nonperformance} {thing}) '({negligence} {thing})) (new-knext-eq '({dissipation} {thing}) '({waste} {thing})) (new-knext-is-a '({waste} {uncountable}) '({wastefulness} {uncountable})) (new-knext-is-a '({wastefulness} {uncountable}) '({waste} {uncountable})) (new-knext-eq '({damage} {thing}) '({wrong} {thing})) (new-knext-is-a '({wrong} {countable}) '({legal injury} {countable})) (new-knext-is-a '({legal injury} {countable}) '({wrong} {countable})) (new-knext-eq '({evildoing} {thing}) '({transgression} {thing})) (new-knext-eq '({immorality} {thing}) '({evil} {thing})) (new-knext-eq '({wickedness} {thing}) '({evil} {thing})) (new-knext-eq '({iniquity} {thing}) '({evil} {thing})) (new-knext-eq '({drink} {thing}) '({boozing} {thing})) (new-knext-eq '({drinking} {thing}) '({boozing} {thing})) (new-knext-is-a '({boozing} {uncountable}) '({drunkenness} {uncountable})) (new-knext-is-a '({boozing} {countable}) '({crapulence} {countable})) (new-knext-is-a '({drunkenness} {uncountable}) '({boozing} {uncountable})) (new-knext-type {drunkenness} {uncountable}) (new-knext-type {crapulence} {uncountable}) (new-statement {drunkenness} {consists of} {crapulence}) (new-knext-is-a '({crapulence} {countable}) '({boozing} {countable})) (new-knext-is-a '({crapulence} {countable}) '({drunkenness} {uncountable})) (new-knext-is-a '({dishonesty} {countable}) '({knavery} {countable})) (new-knext-is-a '({knavery} {countable}) '({dishonesty} {countable})) (new-knext-eq '({treachery} {thing}) '({betrayal} {thing})) (new-knext-eq '({treason} {thing}) '({betrayal} {thing})) (new-knext-is-a '({betrayal} {countable}) '({perfidy} {countable})) (new-knext-is-a '({perfidy} {countable}) '({betrayal} {countable})) (new-knext-eq '({misrepresentation} {thing}) '({falsification} {thing})) (new-knext-type {lying} {uncountable}) (new-knext-type {prevarication} {uncountable}) (new-statement {lying} {consists of} {prevarication}) (new-knext-is-a '({lying} {uncountable}) '({fabrication} {uncountable})) (new-knext-is-a '({prevarication} {countable}) '({lying} {uncountable})) (new-knext-is-a '({prevarication} {countable}) '({fabrication} {countable})) (new-knext-is-a '({fabrication} {uncountable}) '({lying} {uncountable})) (new-knext-is-a '({fabrication} {countable}) '({prevarication} {countable})) (new-knext-eq '({deception} {thing}) '({dissimulation} {thing})) (new-knext-eq '({deceit} {thing}) '({dissimulation} {thing})) (new-knext-eq '({dissembling} {thing}) '({dissimulation} {thing})) (new-knext-eq '({hoax} {thing}) '({dupery} {thing})) (new-knext-eq '({humbug} {thing}) '({fraud} {thing})) (new-knext-is-a '({fraud} {uncountable}) '({fraudulence} {uncountable})) (new-knext-is-a '({fraud} {countable}) '({dupery} {countable})) (new-knext-is-a '({fraudulence} {uncountable}) '({fraud} {uncountable})) (new-knext-type {fraudulence} {uncountable}) (new-knext-type {dupery} {uncountable}) (new-statement {fraudulence} {consists of} {dupery}) (new-knext-is-a '({dupery} {countable}) '({fraud} {countable})) (new-knext-is-a '({dupery} {countable}) '({fraudulence} {uncountable})) (new-knext-is-a '({cheat} {uncountable}) '({cheating} {uncountable})) (new-knext-is-a '({cheating} {uncountable}) '({cheat} {uncountable})) (new-knext-eq '({illusion} {thing}) '({delusion} {thing})) (new-knext-is-a '({delusion} {uncountable}) '({head game} {countable})) (new-knext-is-a '({head game} {countable}) '({delusion} {countable})) (new-knext-eq '({simulation} {thing}) '({pretense} {thing})) (new-knext-eq '({feigning} {thing}) '({pretense} {thing})) (add-english-names (list {pretense} {pretence}) (list "pretense" "pretence")) (new-knext-is-a '({pretense} {countable}) '({pretense} {countable})) (new-knext-is-a '({pretense} {countable}) '({pretending} {uncountable})) (add-english-names (list {pretense} {pretence}) (list "pretense" "pretence")) (new-knext-is-a '({pretense} {countable}) '({pretense} {countable})) (add-english-names (list {pretense} {pretence}) (list "pretense" "pretence")) (new-knext-type {pretending} {uncountable}) (new-knext-type {pretense} {uncountable}) (new-statement {pretending} {consists of} {pretense}) (add-english-names (list {pretense} {pretence}) (list "pretense" "pretence")) (new-knext-eq '({impersonation} {thing}) '({imposture} {thing})) (new-knext-is-a '({sin} {countable}) '({sinning} {countable})) (new-knext-is-a '({sinning} {countable}) '({sin} {countable})) (new-knext-eq '({deadly sin} {thing}) '({mortal sin} {thing})) (new-knext-type {mortal sin} {countable}) (new-knext-type {venial sin} {countable}) (new-is-not-a {mortal sin} {venial sin}) (new-knext-type {venial sin} {countable}) (new-knext-type {mortal sin} {countable}) (new-is-not-a {venial sin} {mortal sin}) (new-knext-eq '({envy} {thing}) '({invidia} {thing})) (new-knext-eq '({ire} {thing}) '({wrath} {thing})) (new-knext-is-a '({wrath} {uncountable}) '({anger} {uncountable})) (new-knext-is-a '({anger} {uncountable}) '({wrath} {uncountable})) (new-knext-is-a '({lust} {uncountable}) '({luxuria} {uncountable})) (new-knext-is-a '({luxuria} {uncountable}) '({lust} {uncountable})) (new-knext-eq '({criminal offence} {thing}) '({criminal offense} {thing})) (new-knext-is-a '({crime} {countable}) '({criminal offense} {countable})) (new-knext-is-a '({criminal offense} {countable}) '({crime} {countable})) (new-knext-is-a '({battery} {countable}) '({assault and battery} {countable})) (new-knext-is-a '({assault and battery} {countable}) '({battery} {countable})) (new-knext-eq '({highjack} {thing}) '({hijack} {thing})) (add-english-names (list {misdemeanor} {misdemeanour}) (list "misdemeanor" "misdemeanour")) (new-knext-eq '({infraction} {thing}) '({misdemeanor} {thing})) (new-knext-eq '({infringement} {thing}) '({violation} {thing})) (new-knext-is-a '({misdemeanor} {countable}) '({violation} {countable})) (new-knext-is-a '({violation} {uncountable}) '({misdemeanor} {countable})) (new-knext-eq '({violation} {thing}) '({infringement} {thing})) (new-knext-eq '({commission} {thing}) '({committal} {thing})) (new-knext-is-a '({perpetration} {countable}) '({committal} {countable})) (new-knext-is-a '({committal} {countable}) '({perpetration} {countable})) (new-knext-eq '({assault} {thing}) '({ravishment} {thing})) (new-knext-eq '({violation} {thing}) '({rape} {thing})) (new-knext-is-a '({rape} {countable}) '({ravishment} {countable})) (new-knext-is-a '({ravishment} {countable}) '({rape} {countable})) (new-knext-is-a '({attack} {countable}) '({attempt} {countable})) (new-knext-is-a '({attempt} {countable}) '({attack} {countable})) (new-knext-eq '({capture} {thing}) '({seizure} {thing})) (new-knext-is-a '({bribery} {uncountable}) '({graft} {uncountable})) (new-knext-is-a '({graft} {uncountable}) '({bribery} {uncountable})) (new-knext-eq '({stealing} {thing}) '({thieving} {thing})) (new-knext-eq '({thievery} {thing}) '({theft} {thing})) (new-knext-is-a '({larceny} {countable}) '({theft} {countable})) (new-knext-is-a '({larceny} {countable}) '({thieving} {uncountable})) (new-knext-is-a '({theft} {countable}) '({larceny} {countable})) (new-knext-is-a '({theft} {uncountable}) '({thieving} {uncountable})) (new-knext-type {thieving} {uncountable}) (new-knext-type {larceny} {uncountable}) (new-statement {thieving} {consists of} {larceny}) (new-knext-is-a '({thieving} {uncountable}) '({theft} {uncountable})) (new-knext-eq '({hijacking} {thing}) '({highjacking} {thing})) (new-knext-is-a '({piracy} {uncountable}) '({buccaneering} {uncountable})) (new-knext-is-a '({buccaneering} {uncountable}) '({piracy} {uncountable})) (new-knext-eq '({endeavor} {thing}) '({attempt} {thing})) (add-english-names (list {endeavor} {endeavour}) (list "endeavor" "endeavour")) (new-knext-eq '({endeavor} {thing}) '({effort} {thing})) (new-knext-eq '({try} {thing}) '({effort} {thing})) (new-knext-is-a '({attempt} {countable}) '({effort} {countable})) (new-knext-is-a '({effort} {countable}) '({attempt} {countable})) (new-knext-is-a '({bid} {countable}) '({play} {uncountable})) (new-knext-type {play} {uncountable}) (new-knext-type {bid} {uncountable}) (new-statement {play} {consists of} {bid}) (new-knext-eq '({offer} {thing}) '({fling} {thing})) (new-knext-eq '({crack} {thing}) '({go} {thing})) (new-knext-eq '({whirl} {thing}) '({go} {thing})) (new-knext-is-a '({fling} {countable}) '({go} {countable})) (new-knext-is-a '({go} {countable}) '({fling} {countable})) (new-knext-eq '({share} {thing}) '({contribution} {thing})) (new-knext-eq '({squeeze} {thing}) '({power play} {thing})) (new-knext-is-a '({power play} {countable}) '({squeeze play} {countable})) (new-knext-is-a '({squeeze play} {countable}) '({power play} {countable})) (new-knext-eq '({nisus} {thing}) '({pains} {thing})) (new-knext-is-a '({striving} {countable}) '({pains} {uncountable})) (new-knext-is-a '({striving} {countable}) '({strain} {countable})) (new-knext-type {pains} {uncountable}) (new-knext-type {striving} {uncountable}) (new-statement {pains} {consists of} {striving}) (new-knext-is-a '({pains} {uncountable}) '({strain} {uncountable})) (new-knext-is-a '({strain} {countable}) '({striving} {countable})) (new-knext-is-a '({strain} {uncountable}) '({pains} {uncountable})) (new-knext-eq '({battle} {thing}) '({struggle} {thing})) (new-knext-eq '({test} {thing}) '({trial} {thing})) (new-knext-eq '({run} {thing}) '({trial} {thing})) (new-knext-eq '({test} {thing}) '({trial} {thing})) (new-knext-eq '({task} {thing}) '({project} {thing})) (new-knext-eq '({labor} {thing}) '({project} {thing})) (new-knext-is-a '({undertaking} {countable}) '({project} {countable})) (new-knext-is-a '({project} {countable}) '({undertaking} {countable})) (new-knext-eq '({risky venture} {thing}) '({escapade} {thing})) (new-knext-eq '({dangerous undertaking} {thing}) '({escapade} {thing})) (new-knext-is-a '({adventure} {countable}) '({escapade} {countable})) (new-knext-is-a '({escapade} {countable}) '({adventure} {countable})) (add-english-names (list {endeavor} {endeavour}) (list "endeavor" "endeavour")) (new-knext-eq '({endeavor} {thing}) '({enterprise} {thing})) (new-knext-is-a '({enterprise} {countable}) '({endeavor} {countable})) (new-knext-is-a '({endeavor} {countable}) '({enterprise} {countable})) (new-knext-eq '({campaign} {thing}) '({crusade} {thing})) (new-knext-eq '({cause} {thing}) '({crusade} {thing})) (new-knext-eq '({movement} {thing}) '({drive} {thing})) (new-knext-eq '({effort} {thing}) '({drive} {thing})) (new-knext-is-a '({crusade} {countable}) '({drive} {countable})) (new-knext-is-a '({drive} {countable}) '({crusade} {countable})) (new-knext-eq '({peril} {thing}) '({risk} {thing})) (new-knext-eq '({danger} {thing}) '({risk} {thing})) (new-knext-is-a '({regulation} {uncountable}) '({regulating} {uncountable})) (new-knext-is-a '({regulating} {uncountable}) '({regulation} {uncountable})) (new-knext-eq '({regulation} {thing}) '({regularization} {thing})) (add-english-names (list {regularization} {regularisation} {regularization} {regularisation}) (list "regularization" "regularisation" "regularization" "regularisation")) (add-english-names (list {regularization} {regularisation} {regularization} {regularisation}) (list "regularization" "regularisation" "regularization" "regularisation")) (new-knext-eq '({limitation} {thing}) '({restriction} {thing})) (new-knext-eq '({ownership} {thing}) '({possession} {thing})) (new-knext-is-a '({retention} {uncountable}) '({keeping} {uncountable})) (new-knext-is-a '({retention} {countable}) '({holding} {countable})) (new-knext-is-a '({keeping} {uncountable}) '({retention} {uncountable})) (new-knext-type {keeping} {uncountable}) (new-knext-type {holding} {uncountable}) (new-statement {keeping} {consists of} {holding}) (new-knext-is-a '({holding} {countable}) '({retention} {countable})) (new-knext-is-a '({holding} {countable}) '({keeping} {uncountable})) (new-knext-eq '({seizing} {thing}) '({prehension} {thing})) (new-knext-type {grasping} {uncountable}) (new-knext-type {taking hold} {uncountable}) (new-statement {grasping} {consists of} {taking hold}) (new-knext-is-a '({grasping} {uncountable}) '({prehension} {uncountable})) (new-knext-is-a '({taking hold} {countable}) '({grasping} {uncountable})) (new-knext-is-a '({taking hold} {countable}) '({prehension} {countable})) (new-knext-is-a '({prehension} {uncountable}) '({grasping} {uncountable})) (new-knext-is-a '({prehension} {countable}) '({taking hold} {countable})) (new-knext-eq '({clasp} {thing}) '({clutch} {thing})) (new-knext-eq '({clench} {thing}) '({grip} {thing})) (new-knext-eq '({grasp} {thing}) '({grip} {thing})) (new-knext-eq '({hold} {thing}) '({grip} {thing})) (new-knext-is-a '({clutch} {countable}) '({clutches} {uncountable})) (new-knext-is-a '({clutch} {countable}) '({grip} {countable})) (new-knext-type {clutches} {uncountable}) (new-knext-type {clutch} {uncountable}) (new-statement {clutches} {consists of} {clutch}) (new-knext-is-a '({clutches} {uncountable}) '({grip} {uncountable})) (new-knext-is-a '({grip} {countable}) '({clutch} {countable})) (new-knext-is-a '({grip} {uncountable}) '({clutches} {uncountable})) (new-knext-eq '({steering} {thing}) '({steerage} {thing})) (new-knext-eq '({guidance} {thing}) '({steering} {thing})) (new-knext-eq '({direction} {thing}) '({steering} {thing})) (new-knext-eq '({piloting} {thing}) '({pilotage} {thing})) (new-knext-is-a '({navigation} {uncountable}) '({pilotage} {uncountable})) (new-knext-is-a '({pilotage} {uncountable}) '({navigation} {uncountable})) (new-knext-is-a '({lining} {countable}) '({facing} {countable})) (new-knext-is-a '({facing} {countable}) '({lining} {countable})) (new-knext-eq '({accompaniment} {thing}) '({escort} {thing})) (new-knext-is-a '({dressing} {uncountable}) '({grooming} {uncountable})) (new-knext-is-a '({grooming} {uncountable}) '({dressing} {uncountable})) (new-knext-eq '({care} {thing}) '({tutelage} {thing})) (new-knext-eq '({charge} {thing}) '({tutelage} {thing})) (new-knext-is-a '({tutelage} {countable}) '({guardianship} {countable})) (new-knext-is-a '({guardianship} {countable}) '({tutelage} {countable})) (new-knext-is-a '({wear} {uncountable}) '({wearing} {uncountable})) (new-knext-is-a '({wearing} {uncountable}) '({wear} {uncountable})) (new-knext-eq '({external respiration} {thing}) '({breathing} {thing})) (new-knext-eq '({respiration} {thing}) '({breathing} {thing})) (new-knext-eq '({ventilation} {thing}) '({breathing} {thing})) (new-knext-is-a '({smoke} {countable}) '({smoking} {uncountable})) (new-knext-type {smoking} {uncountable}) (new-knext-type {smoke} {uncountable}) (new-statement {smoking} {consists of} {smoke}) (new-knext-eq '({puff} {thing}) '({blow} {thing})) (new-knext-eq '({ingestion} {thing}) '({consumption} {thing})) (new-knext-eq '({intake} {thing}) '({consumption} {thing})) (new-knext-eq '({uptake} {thing}) '({consumption} {thing})) (new-knext-type {eating} {uncountable}) (new-knext-type {feeding} {uncountable}) (new-statement {eating} {consists of} {feeding}) (new-knext-is-a '({feeding} {countable}) '({eating} {uncountable})) (new-knext-eq '({bite} {thing}) '({chomp} {thing})) (new-knext-eq '({electric shock} {thing}) '({electrical shock} {thing})) (new-knext-eq '({drink} {thing}) '({swallow} {thing})) (new-knext-eq '({deglutition} {thing}) '({swallow} {thing})) (new-knext-is-a '({graze} {countable}) '({grazing} {uncountable})) (new-knext-type {grazing} {uncountable}) (new-knext-type {graze} {uncountable}) (new-statement {grazing} {consists of} {graze}) (add-english-names (list {savoring} {savouring}) (list "savoring" "savouring")) (new-knext-eq '({tasting} {thing}) '({savoring} {thing})) (add-english-names (list {savoring} {savouring}) (list "savoring" "savouring")) (new-knext-eq '({relishing} {thing}) '({savoring} {thing})) (add-english-names (list {savoring} {savouring}) (list "savoring" "savouring")) (new-knext-eq '({degustation} {thing}) '({savoring} {thing})) (add-english-names (list {savoring} {savouring}) (list "savoring" "savouring")) (new-knext-type {savoring} {uncountable}) (new-knext-type {savoring} {uncountable}) (new-statement {savoring} {consists of} {savoring}) (add-english-names (list {savoring} {savouring}) (list "savoring" "savouring")) (new-knext-eq '({suck} {thing}) '({sucking} {thing})) (new-knext-is-a '({sucking} {countable}) '({suction} {uncountable})) (new-knext-type {suction} {uncountable}) (new-knext-type {sucking} {uncountable}) (new-statement {suction} {consists of} {sucking}) (new-knext-eq '({imbibing} {thing}) '({drinking} {thing})) (new-knext-eq '({imbibition} {thing}) '({drinking} {thing})) (new-knext-eq '({sexual practice} {thing}) '({sex activity} {thing})) (new-knext-is-a '({sexual activity} {uncountable}) '({sex activity} {countable})) (new-knext-is-a '({sex activity} {countable}) '({sexual activity} {uncountable})) (new-knext-eq '({sexual love} {thing}) '({lovemaking} {thing})) (new-knext-eq '({making love} {thing}) '({lovemaking} {thing})) (new-knext-type {lovemaking} {uncountable}) (new-knext-type {love life} {uncountable}) (new-statement {lovemaking} {consists of} {love life}) (new-knext-is-a '({love life} {countable}) '({lovemaking} {uncountable})) (new-knext-eq '({coupling} {thing}) '({mating} {thing})) (new-knext-eq '({pairing} {thing}) '({mating} {thing})) (new-knext-eq '({conjugation} {thing}) '({mating} {thing})) (new-knext-eq '({union} {thing}) '({mating} {thing})) (new-knext-eq '({sexual union} {thing}) '({mating} {thing})) (new-knext-eq '({reproduction} {thing}) '({procreation} {thing})) (new-knext-eq '({breeding} {thing}) '({procreation} {thing})) (new-knext-eq '({facts of life} {thing}) '({procreation} {thing})) (new-knext-eq '({crossbreeding} {thing}) '({miscegenation} {thing})) (new-knext-eq '({interbreeding} {thing}) '({miscegenation} {thing})) (new-knext-eq '({generation} {thing}) '({multiplication} {thing})) (new-knext-is-a '({multiplication} {countable}) '({propagation} {uncountable})) (new-knext-type {propagation} {uncountable}) (new-knext-type {multiplication} {uncountable}) (new-statement {propagation} {consists of} {multiplication}) (add-english-names (list {hybridization} {hybridisation} {hybridization} {hybridisation}) (list "hybridization" "hybridisation" "hybridization" "hybridisation")) (new-knext-eq '({crossbreeding} {thing}) '({hybridization} {thing})) (add-english-names (list {hybridization} {hybridisation} {hybridization} {hybridisation}) (list "hybridization" "hybridisation" "hybridization" "hybridisation")) (new-knext-eq '({interbreeding} {thing}) '({hybridization} {thing})) (add-english-names (list {hybridization} {hybridisation} {hybridization} {hybridisation}) (list "hybridization" "hybridisation" "hybridization" "hybridisation")) (new-knext-eq '({hybridizing} {thing}) '({hybridization} {thing})) (new-knext-eq '({crossing} {thing}) '({hybridization} {thing})) (new-knext-eq '({cross} {thing}) '({hybridization} {thing})) (add-english-names (list {hybridization} {hybridisation} {hybridization} {hybridisation}) (list "hybridization" "hybridisation" "hybridization" "hybridisation")) (add-english-names (list {hybridization} {hybridisation} {hybridization} {hybridisation}) (list "hybridization" "hybridisation" "hybridization" "hybridisation")) (new-knext-type {hybridization} {uncountable}) (new-knext-type {hybridization} {uncountable}) (new-statement {hybridization} {consists of} {hybridization}) (new-knext-eq '({cuddling} {thing}) '({caressing} {thing})) (new-knext-eq '({fondling} {thing}) '({caressing} {thing})) (new-knext-eq '({hugging} {thing}) '({caressing} {thing})) (new-knext-eq '({kissing} {thing}) '({caressing} {thing})) (new-knext-eq '({necking} {thing}) '({caressing} {thing})) (new-knext-eq '({petting} {thing}) '({caressing} {thing})) (new-knext-eq '({snuggling} {thing}) '({smooching} {thing})) (new-knext-type {caressing} {uncountable}) (new-knext-type {smooching} {uncountable}) (new-statement {caressing} {consists of} {smooching}) (new-knext-is-a '({smooching} {countable}) '({caressing} {uncountable})) (new-knext-eq '({reaction} {thing}) '({response} {thing})) (new-knext-eq '({shiver} {thing}) '({tremble} {thing})) (new-knext-eq '({shake} {thing}) '({tremble} {thing})) (new-knext-eq '({tears} {thing}) '({crying} {thing})) (new-knext-type {crying} {uncountable}) (new-knext-type {weeping} {uncountable}) (new-statement {crying} {consists of} {weeping}) (new-knext-is-a '({weeping} {countable}) '({crying} {uncountable})) (new-knext-eq '({computation} {thing}) '({calculation} {thing})) (new-knext-is-a '({calculation} {uncountable}) '({computing} {uncountable})) (new-knext-is-a '({computing} {uncountable}) '({calculation} {uncountable})) (new-knext-eq '({mathematical operation} {thing}) '({mathematical process} {thing})) (new-knext-is-a '({subtraction} {uncountable}) '({minus} {uncountable})) (new-knext-is-a '({minus} {uncountable}) '({subtraction} {uncountable})) (new-knext-eq '({summation} {thing}) '({plus} {thing})) (new-knext-eq '({addition} {thing}) '({plus} {thing})) (new-knext-eq '({judgement} {thing}) '({assessment} {thing})) (new-knext-is-a '({judgment} {countable}) '({assessment} {countable})) (new-knext-is-a '({assessment} {countable}) '({judgment} {countable})) (new-knext-is-a '({evaluation} {countable}) '({rating} {countable})) (new-knext-is-a '({rating} {countable}) '({evaluation} {countable})) (new-knext-eq '({estimation} {thing}) '({estimate} {thing})) (new-knext-is-a '({sensing} {uncountable}) '({perception} {uncountable})) (new-knext-is-a '({perception} {uncountable}) '({sensing} {uncountable})) (new-knext-is-a '({look} {countable}) '({looking} {countable})) (new-knext-is-a '({look} {countable}) '({looking at} {uncountable})) (new-knext-is-a '({looking} {countable}) '({look} {countable})) (new-knext-is-a '({looking} {uncountable}) '({looking at} {uncountable})) (new-knext-type {looking at} {uncountable}) (new-knext-type {look} {uncountable}) (new-statement {looking at} {consists of} {look}) (new-knext-is-a '({looking at} {uncountable}) '({looking} {uncountable})) (new-knext-eq '({glimpse} {thing}) '({glance} {thing})) (new-knext-eq '({peep} {thing}) '({peek} {thing})) (new-knext-eq '({regard} {thing}) '({gaze} {thing})) (new-knext-eq '({observation} {thing}) '({observance} {thing})) (new-knext-is-a '({observance} {uncountable}) '({watching} {uncountable})) (new-knext-is-a '({watching} {uncountable}) '({observance} {uncountable})) (new-knext-is-a '({watch} {countable}) '({vigil} {countable})) (new-knext-is-a '({vigil} {countable}) '({watch} {countable})) (new-knext-eq '({survey} {thing}) '({view} {thing})) (new-knext-is-a '({view} {countable}) '({sight} {countable})) (new-knext-is-a '({sight} {countable}) '({view} {countable})) (new-knext-eq '({hearing} {thing}) '({listening} {thing})) (new-knext-is-a '({smell} {uncountable}) '({smelling} {uncountable})) (new-knext-is-a '({smelling} {uncountable}) '({smell} {uncountable})) (new-knext-eq '({instruction} {thing}) '({education} {thing})) (new-knext-eq '({teaching} {thing}) '({education} {thing})) (new-knext-eq '({pedagogy} {thing}) '({education} {thing})) (new-knext-is-a '({education} {uncountable}) '({didactics} {uncountable})) (new-knext-is-a '({education} {uncountable}) '({educational activity} {countable})) (new-knext-is-a '({didactics} {uncountable}) '({education} {uncountable})) (new-knext-is-a '({didactics} {uncountable}) '({educational activity} {countable})) (new-knext-is-a '({educational activity} {countable}) '({education} {countable})) (new-knext-is-a '({educational activity} {countable}) '({didactics} {uncountable})) (new-knext-is-a '({course} {countable}) '({class} {countable})) (new-knext-is-a '({class} {countable}) '({course} {countable})) (new-knext-eq '({instruction} {thing}) '({teaching} {thing})) (new-knext-eq '({pedagogy} {thing}) '({teaching} {thing})) (new-knext-is-a '({lecture} {countable}) '({lecturing} {uncountable})) (new-knext-type {lecturing} {uncountable}) (new-knext-type {lecture} {uncountable}) (new-statement {lecturing} {consists of} {lecture}) (new-knext-eq '({grooming} {thing}) '({training} {thing})) (new-knext-is-a '({training} {uncountable}) '({preparation} {uncountable})) (new-knext-is-a '({preparation} {uncountable}) '({training} {uncountable})) (new-knext-eq '({recitation} {thing}) '({practice session} {thing})) (new-knext-eq '({drill} {thing}) '({exercise} {thing})) (new-knext-is-a '({exercise} {countable}) '({practice session} {countable})) (new-knext-is-a '({practice session} {countable}) '({exercise} {countable})) (new-knext-is-a '({rehearsal} {countable}) '({dry run} {countable})) (new-knext-is-a '({dry run} {countable}) '({rehearsal} {countable})) (new-knext-is-a '({review} {countable}) '({brushup} {uncountable})) (new-knext-type {brushup} {uncountable}) (new-knext-type {review} {uncountable}) (new-statement {brushup} {consists of} {review}) (add-english-names (list {modeling} {modelling} {modelling}) (list "modeling" "modelling" "modelling")) (new-knext-is-a '({model} {countable}) '({modeling} {countable})) (add-english-names (list {modeling} {modelling} {modelling}) (list "modeling" "modelling" "modelling")) (new-knext-type {modeling} {uncountable}) (new-knext-type {model} {uncountable}) (new-statement {modeling} {consists of} {model}) (add-english-names (list {modeling} {modelling} {modelling}) (list "modeling" "modelling" "modelling")) (new-knext-is-a '({modeling} {countable}) '({model} {countable})) (add-english-names (list {modeling} {modelling} {modelling}) (list "modeling" "modelling" "modelling")) (new-knext-is-a '({pictorial representation} {countable}) '({picturing} {uncountable})) (new-knext-type {picturing} {uncountable}) (new-knext-type {pictorial representation} {uncountable}) (new-statement {picturing} {consists of} {pictorial representation}) (new-knext-eq '({depiction} {thing}) '({delineation} {thing})) (new-knext-is-a '({delineation} {countable}) '({portrayal} {countable})) (new-knext-is-a '({portrayal} {countable}) '({delineation} {countable})) (new-knext-type {photography} {uncountable}) (new-knext-type {picture taking} {uncountable}) (new-statement {photography} {consists of} {picture taking}) (new-knext-is-a '({picture taking} {countable}) '({photography} {uncountable})) (new-knext-is-a '({filming} {uncountable}) '({cinematography} {uncountable})) (new-knext-is-a '({cinematography} {uncountable}) '({filming} {uncountable})) (new-knext-is-a '({creation} {uncountable}) '({creative activity} {countable})) (new-knext-is-a '({creative activity} {countable}) '({creation} {countable})) (new-knext-eq '({casting} {thing}) '({molding} {thing})) (new-knext-eq '({transcription} {thing}) '({recording} {thing})) (new-knext-eq '({building} {thing}) '({construction} {thing})) (new-knext-eq '({fabrication} {thing}) '({assembly} {thing})) (new-knext-type {assembly} {countable}) (new-knext-type {disassembly} {countable}) (new-is-not-a {assembly} {disassembly}) (new-knext-eq '({dismantlement} {thing}) '({dismantling} {thing})) (new-knext-type {disassembly} {countable}) (new-knext-type {assembly} {uncountable}) (new-is-not-a {disassembly} {assembly}) (new-knext-type {disassembly} {countable}) (new-knext-type {assembly} {uncountable}) (new-is-not-a {disassembly} {assembly}) (new-knext-type {dismantling} {uncountable}) (new-knext-type {disassembly} {uncountable}) (new-statement {dismantling} {consists of} {disassembly}) (new-knext-is-a '({disassembly} {countable}) '({dismantling} {uncountable})) (new-knext-is-a '({output} {countable}) '({yield} {countable})) (new-knext-is-a '({yield} {countable}) '({output} {countable})) (new-knext-eq '({agriculture} {thing}) '({husbandry} {thing})) (new-knext-is-a '({farming} {uncountable}) '({husbandry} {uncountable})) (new-knext-is-a '({husbandry} {uncountable}) '({farming} {uncountable})) (new-knext-eq '({horticulture} {thing}) '({gardening} {thing})) (new-knext-eq '({floriculture} {thing}) '({flower gardening} {thing})) (new-knext-is-a '({mining} {uncountable}) '({excavation} {uncountable})) (new-knext-is-a '({excavation} {uncountable}) '({mining} {uncountable})) (new-knext-eq '({drilling} {thing}) '({boring} {thing})) (new-knext-is-a '({boring} {countable}) '({oil production} {countable})) (new-knext-is-a '({oil production} {countable}) '({boring} {countable})) (new-knext-eq '({industry} {thing}) '({manufacture} {thing})) (new-knext-eq '({making} {thing}) '({fashioning} {thing})) (new-knext-is-a '({devising} {uncountable}) '({fashioning} {uncountable})) (new-knext-is-a '({fashioning} {uncountable}) '({devising} {uncountable})) (new-knext-eq '({fabrication} {thing}) '({manufacture} {thing})) (new-knext-is-a '({manufacture} {uncountable}) '({manufacturing} {uncountable})) (new-knext-is-a '({manufacturing} {uncountable}) '({manufacture} {uncountable})) (new-knext-eq '({shaping} {thing}) '({formation} {thing})) (new-knext-eq '({programing} {thing}) '({computer programming} {thing})) (add-english-names (list {programing} {programming} {programming}) (list "programing" "programming" "programming")) (add-english-names (list {programing} {programming} {programming}) (list "programing" "programming" "programming")) (new-knext-is-a '({programing} {countable}) '({computer programing} {countable})) (add-english-names (list {programing} {programming} {programming}) (list "programing" "programming" "programming")) (new-knext-type {computer programming} {uncountable}) (new-knext-type {computer programing} {uncountable}) (new-statement {computer programming} {consists of} {computer programing}) (add-english-names (list {programing} {programming} {programming}) (list "programing" "programming" "programming")) (new-knext-is-a '({computer programing} {countable}) '({programing} {countable})) (new-knext-is-a '({computer programing} {countable}) '({computer programming} {uncountable})) (new-knext-eq '({penning} {thing}) '({writing} {thing})) (new-knext-eq '({composition} {thing}) '({authorship} {thing})) (new-knext-is-a '({writing} {uncountable}) '({authorship} {uncountable})) (new-knext-is-a '({authorship} {uncountable}) '({writing} {uncountable})) (new-knext-eq '({fictionalization} {thing}) '({fabrication} {thing})) (add-english-names (list {fictionalization} {fictionalisation} {fictionalization} {fictionalisation}) (list "fictionalization" "fictionalisation" "fictionalization" "fictionalisation")) (add-english-names (list {fictionalization} {fictionalisation} {fictionalization} {fictionalisation}) (list "fictionalization" "fictionalisation" "fictionalization" "fictionalisation")) (add-english-names (list {realization} {realisation} {realization} {realisation}) (list "realization" "realisation" "realization" "realisation")) (new-knext-eq '({realization} {thing}) '({actualization} {thing})) (add-english-names (list {actualization} {actualisation} {actualization} {actualisation}) (list "actualization" "actualisation" "actualization" "actualisation")) (new-knext-eq '({realization} {thing}) '({actualization} {thing})) (add-english-names (list {actualization} {actualisation} {actualization} {actualisation}) (list "actualization" "actualisation" "actualization" "actualisation")) (new-knext-is-a '({actualization} {countable}) '({actualization} {countable})) (add-english-names (list {actualization} {actualisation} {actualization} {actualisation}) (list "actualization" "actualisation" "actualization" "actualisation")) (new-knext-is-a '({actualization} {countable}) '({actualization} {countable})) (new-knext-is-a '({art} {uncountable}) '({artistic creation} {uncountable})) (new-knext-is-a '({art} {countable}) '({artistic production} {countable})) (new-knext-is-a '({artistic creation} {uncountable}) '({art} {uncountable})) (new-knext-type {artistic creation} {uncountable}) (new-knext-type {artistic production} {uncountable}) (new-statement {artistic creation} {consists of} {artistic production}) (new-knext-is-a '({artistic production} {countable}) '({art} {countable})) (new-knext-is-a '({artistic production} {countable}) '({artistic creation} {uncountable})) (add-english-names (list {molding} {moulding}) (list "molding" "moulding")) (add-english-names (list {modeling} {modelling} {modelling}) (list "modeling" "modelling" "modelling")) (add-english-names (list {molding} {moulding}) (list "molding" "moulding")) (new-knext-is-a '({modeling} {countable}) '({molding} {countable})) (add-english-names (list {modeling} {modelling} {modelling}) (list "modeling" "modelling" "modelling")) (add-english-names (list {modeling} {modelling} {modelling}) (list "modeling" "modelling" "modelling")) (add-english-names (list {molding} {moulding}) (list "molding" "moulding")) (new-knext-type {modeling} {uncountable}) (new-knext-type {molding} {uncountable}) (new-statement {modeling} {consists of} {molding}) (add-english-names (list {molding} {moulding}) (list "molding" "moulding")) (new-knext-is-a '({molding} {countable}) '({modeling} {countable})) (add-english-names (list {molding} {moulding}) (list "molding" "moulding")) (add-english-names (list {modeling} {modelling} {modelling}) (list "modeling" "modelling" "modelling")) (new-knext-is-a '({composing} {uncountable}) '({composition} {uncountable})) (new-knext-is-a '({composition} {uncountable}) '({composing} {uncountable})) (add-english-names (list {conceptualization} {conceptualisation} {conceptualization} {conceptualisation}) (list "conceptualization" "conceptualisation" "conceptualization" "conceptualisation")) (new-knext-eq '({conceptualization} {thing}) '({conceptualization} {thing})) (new-knext-is-a '({conceptualization} {countable}) '({formulation} {countable})) (new-knext-is-a '({formulation} {countable}) '({conceptualization} {countable})) (new-knext-eq '({plan of attack} {thing}) '({approach} {thing})) (new-knext-is-a '({approach} {countable}) '({attack} {countable})) (new-knext-is-a '({attack} {countable}) '({approach} {countable})) (new-knext-eq '({digging} {thing}) '({excavation} {thing})) (new-knext-eq '({dig} {thing}) '({excavation} {thing})) (new-knext-eq '({boring} {thing}) '({drilling} {thing})) (new-knext-eq '({hunt} {thing}) '({search} {thing})) (new-knext-is-a '({search} {countable}) '({hunting} {uncountable})) (new-knext-type {hunting} {uncountable}) (new-knext-type {search} {uncountable}) (new-statement {hunting} {consists of} {search}) (new-knext-is-a '({quest} {countable}) '({seeking} {countable})) (new-knext-is-a '({seeking} {countable}) '({quest} {countable})) (new-knext-eq '({rummage} {thing}) '({ransacking} {thing})) (new-knext-eq '({usage} {thing}) '({use} {thing})) (new-knext-eq '({utilization} {thing}) '({use} {thing})) (add-english-names (list {utilization} {utilisation} {utilization} {utilisation}) (list "utilization" "utilisation" "utilization" "utilisation")) (new-knext-eq '({utilization} {thing}) '({use} {thing})) (new-knext-eq '({employment} {thing}) '({use} {thing})) (new-knext-eq '({exercise} {thing}) '({use} {thing})) (new-knext-eq '({drug abuse} {thing}) '({substance abuse} {thing})) (new-knext-is-a '({substance abuse} {uncountable}) '({habit} {uncountable})) (new-knext-is-a '({habit} {uncountable}) '({substance abuse} {uncountable})) (new-knext-eq '({development} {thing}) '({exploitation} {thing})) (new-knext-is-a '({application} {countable}) '({practical application} {countable})) (new-knext-is-a '({practical application} {countable}) '({application} {countable})) (new-knext-is-a '({military action} {countable}) '({action} {countable})) (new-knext-is-a '({action} {countable}) '({military action} {countable})) (new-knext-eq '({conflict} {thing}) '({fight} {thing})) (new-knext-eq '({engagement} {thing}) '({fight} {thing})) (new-knext-is-a '({battle} {countable}) '({fight} {countable})) (new-knext-is-a '({fight} {countable}) '({battle} {countable})) (new-knext-eq '({defensive measure} {thing}) '({defense} {thing})) (add-english-names (list {defense} {defence}) (list "defense" "defence")) (new-knext-is-a '({defense} {countable}) '({defense} {countable})) (add-english-names (list {defense} {defence}) (list "defense" "defence")) (new-knext-is-a '({defense} {countable}) '({defense} {countable})) (new-knext-is-a '({operation} {countable}) '({military operation} {countable})) (new-knext-is-a '({military operation} {countable}) '({operation} {countable})) (new-knext-eq '({battle} {thing}) '({struggle} {thing})) (new-knext-is-a '({conflict} {countable}) '({struggle} {countable})) (new-knext-is-a '({struggle} {countable}) '({conflict} {countable})) (new-knext-eq '({clash} {thing}) '({encounter} {thing})) (new-knext-eq '({skirmish} {thing}) '({encounter} {thing})) (new-knext-is-a '({brush} {countable}) '({encounter} {countable})) (new-knext-is-a '({encounter} {countable}) '({brush} {countable})) (new-knext-eq '({simulated military operation} {thing}) '({maneuver} {thing})) (add-english-names (list {maneuver} {manoeuvre}) (list "maneuver" "manoeuvre")) (new-knext-is-a '({maneuver} {countable}) '({maneuver} {countable})) (add-english-names (list {maneuver} {manoeuvre}) (list "maneuver" "manoeuvre")) (new-knext-is-a '({maneuver} {countable}) '({maneuver} {countable})) (new-knext-eq '({revolt} {thing}) '({insurrection} {thing})) (new-knext-eq '({rising} {thing}) '({insurrection} {thing})) (new-knext-eq '({uprising} {thing}) '({insurrection} {thing})) (new-knext-is-a '({rebellion} {countable}) '({insurrection} {countable})) (new-knext-is-a '({insurrection} {countable}) '({rebellion} {countable})) (new-knext-eq '({hostility} {thing}) '({aggression} {thing})) (new-knext-is-a '({violence} {uncountable}) '({force} {uncountable})) (new-knext-is-a '({force} {uncountable}) '({violence} {uncountable})) (new-knext-eq '({robbery} {thing}) '({looting} {thing})) (new-knext-eq '({onslaught} {thing}) '({onrush} {thing})) (new-knext-eq '({onset} {thing}) '({attack} {thing})) (new-knext-is-a '({attack} {countable}) '({onrush} {countable})) (new-knext-is-a '({onrush} {countable}) '({attack} {countable})) (new-knext-is-a '({war} {uncountable}) '({warfare} {uncountable})) (new-knext-is-a '({warfare} {uncountable}) '({war} {uncountable})) (new-knext-eq '({raid} {thing}) '({foray} {thing})) (new-knext-eq '({maraud} {thing}) '({foray} {thing})) (new-knext-eq '({bombardment} {thing}) '({bombing} {thing})) (add-english-names (list {offense} {offence}) (list "offense" "offence")) (new-knext-eq '({offensive} {thing}) '({offense} {thing})) (add-english-names (list {offense} {offence}) (list "offense" "offence")) (new-knext-is-a '({offense} {countable}) '({offense} {countable})) (add-english-names (list {offense} {offence}) (list "offense" "offence")) (new-knext-is-a '({offense} {countable}) '({offense} {countable})) (new-knext-eq '({fire} {thing}) '({firing} {thing})) (new-knext-eq '({mensuration} {thing}) '({measuring} {thing})) (new-knext-eq '({measure} {thing}) '({measurement} {thing})) (new-knext-is-a '({measurement} {uncountable}) '({measuring} {uncountable})) (new-knext-is-a '({measuring} {uncountable}) '({measurement} {uncountable})) (new-knext-eq '({standardization} {thing}) '({calibration} {thing})) (add-english-names (list {standardization} {standardisation} {standardization} {standardisation}) (list "standardization" "standardisation" "standardization" "standardisation")) (new-knext-eq '({standardization} {thing}) '({calibration} {thing})) (new-knext-eq '({registration} {thing}) '({adjustment} {thing})) (new-knext-is-a '({adjustment} {countable}) '({readjustment} {countable})) (new-knext-is-a '({readjustment} {countable}) '({adjustment} {countable})) (new-knext-is-a '({gradation} {countable}) '({graduation} {countable})) (new-knext-is-a '({graduation} {countable}) '({gradation} {countable})) (new-knext-is-a '({reading} {countable}) '({meter reading} {countable})) (new-knext-is-a '({meter reading} {countable}) '({reading} {countable})) (add-english-names (list {organization} {organisation} {organization} {organisation}) (list "organization" "organisation" "organization" "organisation")) (new-knext-eq '({organization} {thing}) '({organization} {thing})) (new-knext-is-a '({scaling} {uncountable}) '({grading} {uncountable})) (new-knext-is-a '({grading} {uncountable}) '({scaling} {uncountable})) (new-knext-is-a '({succession} {countable}) '({sequence} {countable})) (new-knext-is-a '({sequence} {countable}) '({succession} {countable})) (add-english-names (list {compartmentalization} {compartmentalisation} {compartmentalization} {compartmentalisation}) (list "compartmentalization" "compartmentalisation" "compartmentalization" "compartmentalisation")) (new-knext-eq '({compartmentalization} {thing}) '({compartmentalization} {thing})) (new-knext-eq '({categorization} {thing}) '({assortment} {thing})) (add-english-names (list {categorization} {categorisation} {categorization} {categorisation}) (list "categorization" "categorisation" "categorization" "categorisation")) (new-knext-eq '({categorization} {thing}) '({assortment} {thing})) (new-knext-is-a '({classification} {uncountable}) '({compartmentalization} {uncountable})) (new-knext-is-a '({classification} {countable}) '({assortment} {countable})) (new-knext-is-a '({compartmentalization} {uncountable}) '({classification} {uncountable})) (new-knext-type {compartmentalization} {uncountable}) (new-knext-type {assortment} {uncountable}) (new-statement {compartmentalization} {consists of} {assortment}) (new-knext-is-a '({assortment} {countable}) '({classification} {countable})) (new-knext-is-a '({assortment} {countable}) '({compartmentalization} {uncountable})) (new-knext-eq '({assembling} {thing}) '({collecting} {thing})) (new-knext-is-a '({collection} {uncountable}) '({collecting} {uncountable})) (new-knext-is-a '({collection} {countable}) '({aggregation} {countable})) (new-knext-is-a '({collecting} {uncountable}) '({collection} {uncountable})) (new-knext-type {collecting} {uncountable}) (new-knext-type {aggregation} {uncountable}) (new-statement {collecting} {consists of} {aggregation}) (new-knext-is-a '({aggregation} {countable}) '({collection} {countable})) (new-knext-is-a '({aggregation} {countable}) '({collecting} {uncountable})) (new-knext-is-a '({gather} {countable}) '({gathering} {countable})) (new-knext-is-a '({gathering} {countable}) '({gather} {countable})) (new-knext-is-a '({harvesting} {countable}) '({harvest home} {countable})) (new-knext-is-a '({harvest home} {countable}) '({harvesting} {countable})) (new-knext-eq '({suspension} {thing}) '({hanging} {thing})) (new-knext-is-a '({dangling} {uncountable}) '({hanging} {uncountable})) (new-knext-is-a '({hanging} {uncountable}) '({dangling} {uncountable})) (new-knext-eq '({continuation} {thing}) '({continuance} {thing})) (new-knext-type {continuance} {countable}) (new-knext-type {discontinuance} {countable}) (new-is-not-a {continuance} {discontinuance}) (new-knext-type {continuation} {countable}) (new-knext-type {discontinuation} {countable}) (new-is-not-a {continuation} {discontinuation}) (new-knext-eq '({perpetuation} {thing}) '({prolongation} {thing})) (new-knext-eq '({lengthening} {thing}) '({prolongation} {thing})) (new-knext-is-a '({prolongation} {countable}) '({protraction} {uncountable})) (new-knext-type {protraction} {uncountable}) (new-knext-type {prolongation} {uncountable}) (new-statement {protraction} {consists of} {prolongation}) (new-knext-is-a '({repetition} {uncountable}) '({repeating} {uncountable})) (new-knext-is-a '({repeating} {uncountable}) '({repetition} {uncountable})) (new-knext-is-a '({reduplication} {countable}) '({reiteration} {countable})) (new-knext-is-a '({reiteration} {countable}) '({reduplication} {countable})) (new-knext-eq '({reproduction} {thing}) '({replication} {thing})) (new-knext-is-a '({perseverance} {uncountable}) '({persistence} {uncountable})) (new-knext-type {perseverance} {uncountable}) (new-knext-type {perseveration} {uncountable}) (new-statement {perseverance} {consists of} {perseveration}) (new-knext-is-a '({persistence} {uncountable}) '({perseverance} {uncountable})) (new-knext-is-a '({persistence} {countable}) '({perseveration} {countable})) (new-knext-is-a '({perseveration} {countable}) '({perseverance} {uncountable})) (new-knext-is-a '({perseveration} {countable}) '({persistence} {countable})) (new-knext-eq '({discontinuation} {thing}) '({discontinuance} {thing})) (new-knext-type {discontinuance} {countable}) (new-knext-type {continuance} {uncountable}) (new-is-not-a {discontinuance} {continuance}) (new-knext-type {discontinuation} {countable}) (new-knext-type {continuation} {uncountable}) (new-is-not-a {discontinuation} {continuation}) (new-knext-eq '({process} {thing}) '({procedure} {thing})) (new-knext-eq '({modus operandi} {thing}) '({routine} {thing})) (new-knext-eq '({rite} {thing}) '({ritual} {thing})) (new-knext-eq '({religious ritual} {thing}) '({religious ceremony} {thing})) (new-knext-is-a '({deification} {uncountable}) '({exaltation} {uncountable})) (new-knext-type {deification} {uncountable}) (new-knext-type {apotheosis} {uncountable}) (new-statement {deification} {consists of} {apotheosis}) (new-knext-is-a '({exaltation} {uncountable}) '({deification} {uncountable})) (new-knext-is-a '({exaltation} {countable}) '({apotheosis} {countable})) (new-knext-is-a '({apotheosis} {countable}) '({deification} {uncountable})) (new-knext-is-a '({apotheosis} {countable}) '({exaltation} {countable})) (new-knext-is-a '({wake} {countable}) '({viewing} {countable})) (new-knext-is-a '({viewing} {countable}) '({wake} {countable})) (new-knext-is-a '({religious service} {countable}) '({divine service} {countable})) (new-knext-is-a '({divine service} {countable}) '({religious service} {countable})) (new-knext-is-a '({church service} {countable}) '({church} {countable})) (new-knext-is-a '({church} {countable}) '({church service} {countable})) (new-knext-eq '({wedding} {thing}) '({marriage ceremony} {thing})) (new-knext-is-a '({prayer} {countable}) '({supplication} {countable})) (new-knext-is-a '({supplication} {countable}) '({prayer} {countable})) (new-knext-eq '({devotion} {thing}) '({veneration} {thing})) (new-knext-eq '({activation} {thing}) '({energizing} {thing})) (new-knext-is-a '({energizing} {countable}) '({activating} {countable})) (new-knext-is-a '({activating} {countable}) '({energizing} {countable})) (new-knext-eq '({resurgence} {thing}) '({revival} {thing})) (new-knext-eq '({revitalization} {thing}) '({revival} {thing})) (add-english-names (list {revitalization} {revitalisation} {revitalization} {revitalisation}) (list "revitalization" "revitalisation" "revitalization" "revitalisation")) (new-knext-eq '({revitalization} {thing}) '({revival} {thing})) (new-knext-eq '({revivification} {thing}) '({revival} {thing})) (new-knext-eq '({invigoration} {thing}) '({vivification} {thing})) (new-knext-eq '({animation} {thing}) '({vivification} {thing})) (new-knext-eq '({concealment} {thing}) '({concealing} {thing})) (new-knext-eq '({hiding} {thing}) '({concealing} {thing})) (new-knext-eq '({camouflage} {thing}) '({disguise} {thing})) (new-knext-eq '({covering} {thing}) '({cover} {thing})) (new-knext-eq '({screening} {thing}) '({cover} {thing})) (new-knext-is-a '({cover} {uncountable}) '({masking} {uncountable})) (new-knext-is-a '({masking} {uncountable}) '({cover} {uncountable})) (new-knext-is-a '({stealth} {uncountable}) '({stealing} {uncountable})) (new-knext-is-a '({stealing} {uncountable}) '({stealth} {uncountable})) (new-knext-eq '({placement} {thing}) '({positioning} {thing})) (new-knext-eq '({location} {thing}) '({positioning} {thing})) (new-knext-eq '({emplacement} {thing}) '({positioning} {thing})) (new-knext-is-a '({locating} {uncountable}) '({positioning} {uncountable})) (new-knext-is-a '({positioning} {uncountable}) '({locating} {uncountable})) (new-knext-eq '({residence} {thing}) '({residency} {thing})) (new-knext-is-a '({residency} {uncountable}) '({abidance} {uncountable})) (new-knext-is-a '({abidance} {uncountable}) '({residency} {uncountable})) (new-knext-eq '({inhabitation} {thing}) '({inhabitancy} {thing})) (new-knext-is-a '({inhabitancy} {countable}) '({habitation} {countable})) (new-knext-is-a '({habitation} {countable}) '({inhabitancy} {countable})) (new-knext-eq '({stop} {thing}) '({layover} {thing})) (new-knext-eq '({stopover} {thing}) '({layover} {thing})) (new-knext-eq '({supply} {thing}) '({provision} {thing})) (new-knext-is-a '({provision} {uncountable}) '({supplying} {uncountable})) (new-knext-is-a '({supplying} {uncountable}) '({provision} {uncountable})) (new-knext-type {inactivity} {countable}) (new-knext-type {activity} {countable}) (new-is-not-a {inactivity} {activity}) (new-knext-eq '({hesitation} {thing}) '({faltering} {thing})) (new-knext-eq '({waver} {thing}) '({faltering} {thing})) (new-knext-is-a '({falter} {uncountable}) '({faltering} {uncountable})) (new-knext-is-a '({faltering} {uncountable}) '({falter} {uncountable})) (new-knext-is-a '({freeze} {countable}) '({halt} {countable})) (new-knext-is-a '({halt} {countable}) '({freeze} {countable})) (new-knext-is-a '({wait} {uncountable}) '({waiting} {uncountable})) (new-knext-is-a '({waiting} {uncountable}) '({wait} {uncountable})) (new-knext-eq '({ease} {thing}) '({repose} {thing})) (new-knext-eq '({relaxation} {thing}) '({rest} {thing})) (new-knext-is-a '({rest} {uncountable}) '({repose} {uncountable})) (new-knext-is-a '({repose} {uncountable}) '({rest} {uncountable})) (new-knext-is-a '({delay} {countable}) '({holdup} {countable})) (new-knext-is-a '({holdup} {countable}) '({delay} {countable})) (new-knext-eq '({postponement} {thing}) '({deferment} {thing})) (new-knext-is-a '({deferment} {countable}) '({deferral} {countable})) (new-knext-is-a '({deferral} {countable}) '({deferment} {countable})) (new-knext-eq '({fasting} {thing}) '({fast} {thing})) (new-knext-is-a '({diet} {countable}) '({dieting} {uncountable})) (new-knext-type {dieting} {uncountable}) (new-knext-type {diet} {uncountable}) (new-statement {dieting} {consists of} {diet}) (new-knext-type {clemency} {uncountable}) (new-knext-type {mercifulness} {uncountable}) (new-statement {clemency} {consists of} {mercifulness}) (new-knext-is-a '({clemency} {uncountable}) '({mercy} {uncountable})) (new-knext-is-a '({mercifulness} {countable}) '({clemency} {uncountable})) (new-knext-is-a '({mercifulness} {countable}) '({mercy} {countable})) (new-knext-is-a '({mercy} {uncountable}) '({clemency} {uncountable})) (new-knext-is-a '({mercy} {countable}) '({mercifulness} {countable})) (new-knext-eq '({humoring} {thing}) '({indulging} {thing})) (new-knext-is-a '({indulgence} {countable}) '({indulging} {countable})) (new-knext-is-a '({indulgence} {uncountable}) '({pampering} {uncountable})) (new-knext-is-a '({indulging} {countable}) '({indulgence} {countable})) (new-knext-is-a '({indulging} {countable}) '({pampering} {uncountable})) (new-knext-is-a '({pampering} {uncountable}) '({indulgence} {uncountable})) (new-knext-type {pampering} {uncountable}) (new-knext-type {indulging} {uncountable}) (new-statement {pampering} {consists of} {indulging}) (new-knext-eq '({hinderance} {thing}) '({hindrance} {thing})) (new-knext-is-a '({hindrance} {countable}) '({interference} {uncountable})) (new-knext-type {interference} {uncountable}) (new-knext-type {hindrance} {uncountable}) (new-statement {interference} {consists of} {hindrance}) (new-knext-eq '({closure} {thing}) '({occlusion} {thing})) (new-knext-is-a '({blockage} {countable}) '({occlusion} {countable})) (new-knext-is-a '({occlusion} {countable}) '({blockage} {countable})) (new-knext-eq '({besieging} {thing}) '({siege} {thing})) (new-knext-eq '({beleaguering} {thing}) '({siege} {thing})) (new-knext-eq '({military blockade} {thing}) '({siege} {thing})) (new-knext-eq '({stoppage} {thing}) '({stop} {thing})) (new-knext-type {prevention} {uncountable}) (new-knext-type {bar} {uncountable}) (new-statement {prevention} {consists of} {bar}) (new-knext-is-a '({bar} {countable}) '({prevention} {uncountable})) (new-knext-eq '({parceling} {thing}) '({apportioning} {thing})) (add-english-names (list {parceling} {parcelling} {parcelling}) (list "parceling" "parcelling" "parcelling")) (new-knext-eq '({parceling} {thing}) '({apportioning} {thing})) (new-knext-eq '({allotment} {thing}) '({apportionment} {thing})) (new-knext-eq '({allocation} {thing}) '({apportionment} {thing})) (new-knext-eq '({assignation} {thing}) '({apportionment} {thing})) (new-knext-is-a '({apportionment} {countable}) '({apportioning} {countable})) (new-knext-is-a '({apportioning} {countable}) '({apportionment} {countable})) (new-knext-eq '({portion} {thing}) '({parcel} {thing})) (new-knext-eq '({share} {thing}) '({parcel} {thing})) (new-knext-is-a '({giving} {countable}) '({gift} {countable})) (new-knext-is-a '({gift} {countable}) '({giving} {countable})) (new-knext-eq '({public assistance} {thing}) '({social welfare} {thing})) (new-knext-is-a '({contribution} {countable}) '({donation} {countable})) (new-knext-is-a '({donation} {countable}) '({contribution} {countable})) (new-knext-eq '({commercialism} {thing}) '({commerce} {thing})) (new-knext-eq '({mercantilism} {thing}) '({commerce} {thing})) (new-knext-eq '({exchange} {thing}) '({interchange} {thing})) (new-knext-eq '({commercial enterprise} {thing}) '({business enterprise} {thing})) (new-knext-is-a '({business enterprise} {countable}) '({business} {countable})) (new-knext-is-a '({business} {uncountable}) '({business enterprise} {countable})) (new-knext-eq '({commercial activity} {thing}) '({business activity} {thing})) (new-knext-is-a '({trade} {uncountable}) '({patronage} {uncountable})) (new-knext-is-a '({patronage} {uncountable}) '({trade} {uncountable})) (new-knext-is-a '({investing} {uncountable}) '({investment} {uncountable})) (new-knext-is-a '({investment} {uncountable}) '({investing} {uncountable})) (new-knext-eq '({advertising} {thing}) '({publicizing} {thing})) (new-knext-is-a '({publication} {uncountable}) '({publishing} {uncountable})) (new-knext-is-a '({publishing} {uncountable}) '({publication} {uncountable})) (new-knext-eq '({construction} {thing}) '({building} {thing})) (new-knext-eq '({transportation} {thing}) '({shipping} {thing})) (new-knext-is-a '({shipping} {uncountable}) '({transport} {uncountable})) (new-knext-is-a '({transport} {uncountable}) '({shipping} {uncountable})) (new-knext-eq '({freightage} {thing}) '({freight} {thing})) (new-knext-is-a '({transaction} {countable}) '({dealing} {countable})) (new-knext-type {transaction} {countable}) (new-knext-type {dealings} {countable}) (new-statement {dealings} {consists of} {transaction}) (new-knext-is-a '({dealing} {countable}) '({transaction} {countable})) (new-knext-is-a '({dealing} {uncountable}) '({dealings} {uncountable})) (new-knext-type {dealings} {uncountable}) (new-knext-type {transaction} {uncountable}) (new-statement {dealings} {consists of} {transaction}) (new-knext-is-a '({dealings} {uncountable}) '({dealing} {uncountable})) (new-knext-is-a '({transfer} {countable}) '({transference} {countable})) (new-knext-is-a '({transference} {countable}) '({transfer} {countable})) (new-knext-eq '({delivery} {thing}) '({legal transfer} {thing})) (new-knext-eq '({livery} {thing}) '({legal transfer} {thing})) (new-knext-eq '({swap} {thing}) '({barter} {thing})) (new-knext-eq '({swop} {thing}) '({barter} {thing})) (new-knext-eq '({trade} {thing}) '({barter} {thing})) (new-knext-is-a '({deal} {countable}) '({trade} {countable})) (new-knext-is-a '({trade} {countable}) '({deal} {countable})) (new-knext-is-a '({rental} {uncountable}) '({renting} {uncountable})) (new-knext-is-a '({renting} {uncountable}) '({rental} {uncountable})) (add-english-names (list {merchandizing} {merchandising} {merchandizing} {merchandising}) (list "merchandizing" "merchandising" "merchandizing" "merchandising")) (new-knext-eq '({merchandizing} {thing}) '({selling} {thing})) (new-knext-eq '({marketing} {thing}) '({selling} {thing})) (new-knext-eq '({defrayment} {thing}) '({defrayal} {thing})) (new-knext-type {payment} {countable}) (new-knext-type {nonpayment} {countable}) (new-is-not-a {payment} {nonpayment}) (new-knext-is-a '({payment} {countable}) '({defrayal} {countable})) (new-knext-is-a '({defrayal} {countable}) '({payment} {countable})) (new-knext-eq '({nonpayment} {thing}) '({evasion} {thing})) (new-knext-type {nonpayment} {countable}) (new-knext-type {payment} {countable}) (new-is-not-a {nonpayment} {payment}) (add-english-names (list {amortization} {amortisation} {amortization} {amortisation}) (list "amortization" "amortisation" "amortization" "amortisation")) (add-english-names (list {amortization} {amortisation} {amortization} {amortisation}) (list "amortization" "amortisation" "amortization" "amortisation")) (new-knext-is-a '({refund} {countable}) '({repayment} {countable})) (new-knext-is-a '({repayment} {countable}) '({refund} {countable})) (new-knext-eq '({disbursement} {thing}) '({outlay} {thing})) (new-knext-type {spending} {uncountable}) (new-knext-type {disbursal} {uncountable}) (new-statement {spending} {consists of} {disbursal}) (new-knext-is-a '({spending} {uncountable}) '({outlay} {uncountable})) (new-knext-is-a '({disbursal} {countable}) '({spending} {uncountable})) (new-knext-is-a '({disbursal} {countable}) '({outlay} {countable})) (new-knext-is-a '({outlay} {uncountable}) '({spending} {uncountable})) (new-knext-is-a '({outlay} {countable}) '({disbursal} {countable})) (new-knext-is-a '({expending} {uncountable}) '({expenditure} {uncountable})) (new-knext-is-a '({expenditure} {uncountable}) '({expending} {uncountable})) (new-knext-eq '({government activity} {thing}) '({governing} {thing})) (new-knext-eq '({governance} {thing}) '({government} {thing})) (new-knext-eq '({administration} {thing}) '({government} {thing})) (new-knext-is-a '({government} {countable}) '({governing} {countable})) (new-knext-is-a '({governing} {countable}) '({government} {countable})) (new-knext-eq '({legislation} {thing}) '({legislating} {thing})) (new-knext-eq '({lawmaking} {thing}) '({legislating} {thing})) (new-knext-eq '({execution} {thing}) '({implementation} {thing})) (new-knext-eq '({carrying out} {thing}) '({implementation} {thing})) (new-knext-eq '({infliction} {thing}) '({imposition} {thing})) (new-knext-eq '({responsibility} {thing}) '({duty} {thing})) (new-knext-eq '({obligation} {thing}) '({duty} {thing})) (new-knext-eq '({occupation} {thing}) '({military control} {thing})) (new-knext-is-a '({management} {uncountable}) '({direction} {uncountable})) (new-knext-is-a '({direction} {uncountable}) '({management} {uncountable})) (new-knext-eq '({handling} {thing}) '({treatment} {thing})) (new-knext-eq '({disposal} {thing}) '({administration} {thing})) (add-english-names (list {organization} {organisation} {organization} {organisation}) (list "organization" "organisation" "organization" "organisation")) (new-knext-is-a '({organization} {countable}) '({organization} {countable})) (add-english-names (list {organization} {organisation} {organization} {organisation}) (list "organization" "organisation" "organization" "organisation")) (new-knext-is-a '({organization} {countable}) '({organization} {countable})) (add-english-names (list {authorization} {authorisation} {authorization} {authorisation}) (list "authorization" "authorisation" "authorization" "authorisation")) (new-knext-is-a '({authorization} {countable}) '({authorization} {countable})) (new-knext-is-a '({authorization} {uncountable}) '({empowerment} {uncountable})) (add-english-names (list {authorization} {authorisation} {authorization} {authorisation}) (list "authorization" "authorisation" "authorization" "authorisation")) (new-knext-is-a '({authorization} {countable}) '({authorization} {countable})) (add-english-names (list {authorization} {authorisation} {authorization} {authorisation}) (list "authorization" "authorisation" "authorization" "authorisation")) (new-knext-is-a '({empowerment} {uncountable}) '({authorization} {uncountable})) (add-english-names (list {authorization} {authorisation} {authorization} {authorisation}) (list "authorization" "authorisation" "authorization" "authorisation")) (new-knext-type {empowerment} {uncountable}) (new-knext-type {authorization} {uncountable}) (new-statement {empowerment} {consists of} {authorization}) (new-knext-eq '({license} {thing}) '({permit} {thing})) (new-knext-is-a '({permission} {countable}) '({permit} {countable})) (new-knext-is-a '({permit} {countable}) '({permission} {countable})) (new-knext-eq '({commission} {thing}) '({commissioning} {thing})) (new-knext-eq '({relegating} {thing}) '({delegating} {thing})) (new-knext-eq '({deputation} {thing}) '({delegating} {thing})) (new-knext-eq '({delegation} {thing}) '({relegation} {thing})) (new-knext-is-a '({delegating} {uncountable}) '({relegation} {uncountable})) (new-knext-is-a '({relegation} {uncountable}) '({delegating} {uncountable})) (add-english-names (list {channelization} {channelisation} {channelization} {channelisation}) (list "channelization" "channelisation" "channelization" "channelisation")) (new-knext-eq '({canalization} {thing}) '({channelization} {thing})) (add-english-names (list {canalization} {canalisation} {canalization} {canalisation}) (list "canalization" "canalisation" "canalization" "canalisation")) (add-english-names (list {channelization} {channelisation} {channelization} {channelisation}) (list "channelization" "channelisation" "channelization" "channelisation")) (new-knext-eq '({canalization} {thing}) '({channelization} {thing})) (add-english-names (list {channelization} {channelisation} {channelization} {channelisation}) (list "channelization" "channelisation" "channelization" "channelisation")) (add-english-names (list {channelization} {channelisation} {channelization} {channelisation}) (list "channelization" "channelisation" "channelization" "channelisation")) (new-knext-is-a '({preparation} {uncountable}) '({readying} {uncountable})) (new-knext-is-a '({readying} {uncountable}) '({preparation} {uncountable})) (new-knext-eq '({guidance} {thing}) '({steering} {thing})) (new-knext-eq '({curb} {thing}) '({bridle} {thing})) (new-knext-is-a '({restriction} {uncountable}) '({confinement} {uncountable})) (new-knext-is-a '({confinement} {uncountable}) '({restriction} {uncountable})) (new-knext-is-a '({privation} {uncountable}) '({deprivation} {uncountable})) (new-knext-is-a '({deprivation} {uncountable}) '({privation} {uncountable})) (new-knext-eq '({favoritism} {thing}) '({discrimination} {thing})) (add-english-names (list {favoritism} {favouritism}) (list "favoritism" "favouritism")) (new-knext-eq '({favoritism} {thing}) '({discrimination} {thing})) (new-knext-type {arming} {countable}) (new-knext-type {disarming} {countable}) (new-is-not-a {arming} {disarming}) (new-knext-type {armament} {countable}) (new-knext-type {disarmament} {uncountable}) (new-is-not-a {armament} {disarmament}) (new-knext-is-a '({arming} {countable}) '({armament} {countable})) (new-knext-is-a '({arming} {uncountable}) '({equipping} {uncountable})) (new-knext-is-a '({armament} {countable}) '({arming} {countable})) (new-knext-is-a '({armament} {countable}) '({equipping} {uncountable})) (new-knext-is-a '({equipping} {uncountable}) '({arming} {uncountable})) (new-knext-type {equipping} {uncountable}) (new-knext-type {armament} {uncountable}) (new-statement {equipping} {consists of} {armament}) (new-knext-eq '({selective service} {thing}) '({muster} {thing})) (new-knext-type {conscription} {uncountable}) (new-knext-type {muster} {uncountable}) (new-statement {conscription} {consists of} {muster}) (new-knext-is-a '({conscription} {uncountable}) '({draft} {uncountable})) (new-knext-is-a '({muster} {countable}) '({conscription} {uncountable})) (new-knext-is-a '({muster} {countable}) '({draft} {countable})) (new-knext-is-a '({draft} {uncountable}) '({conscription} {uncountable})) (new-knext-is-a '({draft} {countable}) '({muster} {countable})) (add-english-names (list {stabilization} {stabilisation} {stabilization} {stabilisation}) (list "stabilization" "stabilisation" "stabilization" "stabilisation")) (new-knext-eq '({stabilization} {thing}) '({stabilization} {thing})) (new-knext-type {stabilization} {uncountable}) (new-knext-type {destabilization} {countable}) (new-is-not-a {stabilization} {destabilization}) (add-english-names (list {stabilization} {stabilisation} {stabilization} {stabilisation}) (list "stabilization" "stabilisation" "stabilization" "stabilisation")) (add-english-names (list {destabilization} {destabilisation} {destabilization} {destabilisation}) (list "destabilization" "destabilisation" "destabilization" "destabilisation")) (new-knext-eq '({penalization} {thing}) '({penalty} {thing})) (add-english-names (list {penalization} {penalisation} {penalization} {penalisation}) (list "penalization" "penalisation" "penalization" "penalisation")) (new-knext-eq '({penalization} {thing}) '({penalty} {thing})) (new-knext-is-a '({punishment} {countable}) '({penalty} {countable})) (new-knext-is-a '({penalty} {countable}) '({punishment} {countable})) (new-knext-eq '({correction} {thing}) '({discipline} {thing})) (new-knext-eq '({executing} {thing}) '({death penalty} {thing})) (new-knext-eq '({capital punishment} {thing}) '({execution} {thing})) (new-knext-is-a '({execution} {countable}) '({death penalty} {countable})) (new-knext-is-a '({death penalty} {countable}) '({execution} {countable})) (new-knext-eq '({commitment} {thing}) '({committal} {thing})) (new-knext-eq '({consignment} {thing}) '({committal} {thing})) (new-knext-eq '({interchange} {thing}) '({exchange} {thing})) (new-knext-type {obedience} {uncountable}) (new-knext-type {disobedience} {uncountable}) (new-is-not-a {obedience} {disobedience}) (new-knext-is-a '({obedience} {uncountable}) '({obeisance} {uncountable})) (new-knext-is-a '({obeisance} {uncountable}) '({obedience} {uncountable})) (new-knext-eq '({competition} {thing}) '({rivalry} {thing})) (new-knext-eq '({contention} {thing}) '({rivalry} {thing})) (new-knext-type {competition} {uncountable}) (new-knext-type {cooperation} {uncountable}) (new-is-not-a {competition} {cooperation}) (new-knext-is-a '({confrontation} {countable}) '({opposition} {countable})) (new-knext-is-a '({opposition} {countable}) '({confrontation} {countable})) (new-knext-eq '({public violence} {thing}) '({riot} {thing})) (new-knext-eq '({fight} {thing}) '({fighting} {thing})) (new-knext-eq '({scrap} {thing}) '({fighting} {thing})) (new-knext-is-a '({fighting} {uncountable}) '({combat} {uncountable})) (new-knext-is-a '({combat} {uncountable}) '({fighting} {uncountable})) (new-knext-eq '({dissent} {thing}) '({objection} {thing})) (new-knext-is-a '({protest} {countable}) '({objection} {countable})) (new-knext-is-a '({objection} {countable}) '({protest} {countable})) (new-knext-is-a '({demonstration} {countable}) '({manifestation} {countable})) (new-knext-is-a '({manifestation} {countable}) '({demonstration} {countable})) (new-knext-eq '({action at law} {thing}) '({legal action} {thing})) (new-knext-eq '({cause} {thing}) '({lawsuit} {thing})) (new-knext-eq '({causa} {thing}) '({lawsuit} {thing})) (new-knext-is-a '({lawsuit} {countable}) '({case} {countable})) (new-knext-is-a '({case} {countable}) '({lawsuit} {countable})) (new-knext-eq '({proceedings} {thing}) '({proceeding} {thing})) (new-knext-is-a '({proceeding} {countable}) '({legal proceeding} {countable})) (new-knext-is-a '({legal proceeding} {countable}) '({proceeding} {countable})) (new-knext-type {reversal} {countable}) (new-knext-type {affirmation} {countable}) (new-is-not-a {reversal} {affirmation}) (new-knext-type {affirmation} {countable}) (new-knext-type {reversal} {countable}) (new-is-not-a {affirmation} {reversal}) (new-knext-type {litigation} {uncountable}) (new-knext-type {judicial proceeding} {uncountable}) (new-statement {litigation} {consists of} {judicial proceeding}) (new-knext-is-a '({judicial proceeding} {countable}) '({litigation} {uncountable})) (new-knext-eq '({judgment} {thing}) '({judicial decision} {thing})) (new-knext-is-a '({judgement} {countable}) '({judicial decision} {countable})) (new-knext-is-a '({judicial decision} {countable}) '({judgement} {countable})) (new-knext-eq '({sentence} {thing}) '({judgment of conviction} {thing})) (new-knext-eq '({condemnation} {thing}) '({conviction} {thing})) (new-knext-type {conviction} {countable}) (new-knext-type {acquittal} {countable}) (new-is-not-a {conviction} {acquittal}) (new-knext-is-a '({conviction} {countable}) '({judgment of conviction} {countable})) (new-knext-is-a '({judgment of conviction} {countable}) '({conviction} {countable})) (new-knext-eq '({umpirage} {thing}) '({officiation} {thing})) (new-knext-eq '({officiating} {thing}) '({officiation} {thing})) (new-knext-eq '({refereeing} {thing}) '({officiation} {thing})) (new-knext-eq '({finding of fact} {thing}) '({verdict} {thing})) (new-knext-type {acquittal} {countable}) (new-knext-type {conviction} {countable}) (new-is-not-a {acquittal} {conviction}) (new-knext-is-a '({prosecution} {countable}) '({criminal prosecution} {countable})) (new-knext-is-a '({criminal prosecution} {countable}) '({prosecution} {countable})) (new-knext-eq '({divorcement} {thing}) '({divorce} {thing})) (new-knext-is-a '({legal separation} {countable}) '({separation} {countable})) (new-knext-is-a '({separation} {countable}) '({legal separation} {countable})) (new-knext-eq '({desegregation} {thing}) '({integration} {thing})) (new-knext-type {integration} {countable}) (new-knext-type {segregation} {countable}) (new-is-not-a {integration} {segregation}) (new-knext-is-a '({integration} {uncountable}) '({integrating} {uncountable})) (new-knext-is-a '({integrating} {uncountable}) '({integration} {uncountable})) (new-knext-type {cooperation} {uncountable}) (new-knext-type {competition} {uncountable}) (new-is-not-a {cooperation} {competition}) (new-knext-eq '({conformity} {thing}) '({compliance} {thing})) (new-knext-type {conformity} {countable}) (new-knext-type {nonconformity} {countable}) (new-is-not-a {conformity} {nonconformity}) (new-knext-type {compliance} {countable}) (new-knext-type {noncompliance} {countable}) (new-is-not-a {compliance} {noncompliance}) (new-knext-is-a '({conformation} {uncountable}) '({compliance} {uncountable})) (new-knext-is-a '({conformation} {countable}) '({abidance} {countable})) (new-knext-is-a '({compliance} {uncountable}) '({conformation} {uncountable})) (new-knext-type {compliance} {uncountable}) (new-knext-type {abidance} {uncountable}) (new-statement {compliance} {consists of} {abidance}) (new-knext-is-a '({abidance} {countable}) '({conformation} {countable})) (new-knext-is-a '({abidance} {countable}) '({compliance} {uncountable})) (new-knext-is-a '({reconciliation} {countable}) '({rapprochement} {countable})) (new-knext-is-a '({rapprochement} {countable}) '({reconciliation} {countable})) (new-knext-eq '({commitment} {thing}) '({allegiance} {thing})) (new-knext-eq '({loyalty} {thing}) '({allegiance} {thing})) (new-knext-eq '({dedication} {thing}) '({allegiance} {thing})) (new-knext-eq '({aid} {thing}) '({assistance} {thing})) (new-knext-eq '({assist} {thing}) '({assistance} {thing})) (new-knext-eq '({help} {thing}) '({assistance} {thing})) (new-knext-eq '({relief} {thing}) '({succor} {thing})) (add-english-names (list {succor} {succour}) (list "succor" "succour")) (new-knext-eq '({ministration} {thing}) '({succor} {thing})) (new-knext-type {service} {countable}) (new-knext-type {disservice} {countable}) (new-is-not-a {service} {disservice}) (new-knext-eq '({encouragement} {thing}) '({boost} {thing})) (new-knext-eq '({comfort} {thing}) '({consolation} {thing})) (new-knext-eq '({solace} {thing}) '({consolation} {thing})) (new-knext-eq '({adhesion} {thing}) '({adherence} {thing})) (new-knext-is-a '({attachment} {uncountable}) '({adherence} {uncountable})) (new-knext-is-a '({adherence} {uncountable}) '({attachment} {uncountable})) (new-knext-eq '({backup} {thing}) '({backing} {thing})) (new-knext-eq '({championship} {thing}) '({backing} {thing})) (new-knext-is-a '({backing} {uncountable}) '({patronage} {uncountable})) (new-knext-is-a '({patronage} {uncountable}) '({backing} {uncountable})) (new-knext-eq '({insistence} {thing}) '({insistency} {thing})) (add-english-names (list {egis} {aegis} {aegis}) (list "egis" "aegis" "aegis")) (new-knext-eq '({protection} {thing}) '({egis} {thing})) (add-english-names (list {egis} {aegis} {aegis}) (list "egis" "aegis" "aegis")) (add-english-names (list {egis} {aegis} {aegis}) (list "egis" "aegis" "aegis")) (new-knext-is-a '({endorsement} {countable}) '({indorsement} {countable})) (new-knext-is-a '({indorsement} {countable}) '({endorsement} {countable})) (new-knext-eq '({approving} {thing}) '({blessing} {thing})) (new-knext-type {approval} {countable}) (new-knext-type {disapproval} {countable}) (new-is-not-a {approval} {disapproval}) (new-knext-is-a '({blessing} {uncountable}) '({approval} {uncountable})) (new-knext-is-a '({approval} {uncountable}) '({blessing} {uncountable})) (new-knext-eq '({sustenance} {thing}) '({sustainment} {thing})) (new-knext-eq '({upkeep} {thing}) '({sustainment} {thing})) (new-knext-is-a '({sustentation} {countable}) '({sustainment} {uncountable})) (new-knext-is-a '({sustentation} {countable}) '({maintenance} {countable})) (new-knext-type {sustainment} {uncountable}) (new-knext-type {sustentation} {uncountable}) (new-statement {sustainment} {consists of} {sustentation}) (new-knext-is-a '({sustainment} {uncountable}) '({maintenance} {uncountable})) (new-knext-is-a '({maintenance} {countable}) '({sustentation} {countable})) (new-knext-is-a '({maintenance} {uncountable}) '({sustainment} {uncountable})) (add-english-names (list {behavior} {behaviour}) (list "behavior" "behaviour")) (new-knext-eq '({conduct} {thing}) '({behavior} {thing})) (new-knext-is-a '({behavior} {uncountable}) '({doings} {uncountable})) (new-knext-is-a '({doings} {uncountable}) '({behavior} {uncountable})) (add-english-names (list {behavior} {behaviour}) (list "behavior" "behaviour")) (new-knext-type {behavior} {uncountable}) (new-knext-type {behavior} {uncountable}) (new-statement {behavior} {consists of} {behavior}) (add-english-names (list {behavior} {behaviour}) (list "behavior" "behaviour")) (new-knext-eq '({aggravation} {thing}) '({provocation} {thing})) (new-knext-eq '({irritation} {thing}) '({provocation} {thing})) (add-english-names (list {terrorization} {terrorisation} {terrorization} {terrorisation}) (list "terrorization" "terrorisation" "terrorization" "terrorisation")) (new-knext-eq '({terrorization} {thing}) '({terrorization} {thing})) (new-knext-eq '({frightening} {thing}) '({terrorization} {thing})) (new-knext-eq '({offensive activity} {thing}) '({offense} {thing})) (add-english-names (list {offense} {offence}) (list "offense" "offence")) (new-knext-eq '({offense} {thing}) '({discourtesy} {thing})) (new-knext-is-a '({discourtesy} {countable}) '({offense} {countable})) (new-knext-is-a '({offense} {countable}) '({discourtesy} {countable})) (new-knext-eq '({ridicule} {thing}) '({derision} {thing})) (new-knext-eq '({insult} {thing}) '({affront} {thing})) (new-knext-eq '({slight} {thing}) '({rebuff} {thing})) (new-knext-eq '({snub} {thing}) '({cold shoulder} {thing})) (add-english-names (list {favor} {favour}) (list "favor" "favour")) (new-knext-is-a '({favor} {countable}) '({favor} {countable})) (add-english-names (list {favor} {favour}) (list "favor" "favour")) (new-knext-is-a '({favor} {countable}) '({favor} {countable})) (new-knext-is-a '({deference} {uncountable}) '({respect} {uncountable})) (new-knext-is-a '({respect} {uncountable}) '({deference} {uncountable})) (new-knext-eq '({assembly} {thing}) '({assemblage} {thing})) (new-knext-type {assembly} {countable}) (new-knext-type {disassembly} {countable}) (new-is-not-a {assembly} {disassembly}) (new-knext-is-a '({assemblage} {countable}) '({gathering} {countable})) (new-knext-is-a '({gathering} {countable}) '({assemblage} {countable})) (new-knext-eq '({meeting} {thing}) '({coming together} {thing})) (new-knext-is-a '({coming together} {countable}) '({congress} {countable})) (new-knext-is-a '({congress} {countable}) '({coming together} {countable})) (new-knext-is-a '({congregation} {countable}) '({congregating} {countable})) (new-knext-is-a '({congregating} {countable}) '({congregation} {countable})) (new-knext-eq '({attending} {thing}) '({attendance} {thing})) (new-knext-type {attendance} {countable}) (new-knext-type {nonattendance} {countable}) (new-is-not-a {attendance} {nonattendance}) (new-knext-type {presence} {countable}) (new-knext-type {absence} {countable}) (new-is-not-a {presence} {absence}) (new-knext-type {nonattendance} {countable}) (new-knext-type {attendance} {countable}) (new-is-not-a {nonattendance} {attendance}) (new-knext-type {absence} {countable}) (new-knext-type {presence} {countable}) (new-is-not-a {absence} {presence}) (new-knext-eq '({getting even} {thing}) '({paying back} {thing})) (new-knext-eq '({revenge} {thing}) '({retaliation} {thing})) (new-knext-is-a '({war} {uncountable}) '({warfare} {uncountable})) (new-knext-is-a '({warfare} {uncountable}) '({war} {uncountable})) (new-knext-eq '({engagement} {thing}) '({participation} {thing})) (new-knext-eq '({involution} {thing}) '({participation} {thing})) (new-knext-type {participation} {uncountable}) (new-knext-type {nonparticipation} {uncountable}) (new-is-not-a {participation} {nonparticipation}) (new-knext-is-a '({participation} {uncountable}) '({involvement} {uncountable})) (new-knext-is-a '({involvement} {uncountable}) '({participation} {uncountable})) (new-knext-type {nonparticipation} {uncountable}) (new-knext-type {participation} {uncountable}) (new-is-not-a {nonparticipation} {participation}) (new-knext-eq '({exoneration} {thing}) '({vindication} {thing})) (new-knext-eq '({nonviolent resistance} {thing}) '({passive resistance} {thing})) (new-knext-eq '({nonviolence} {thing}) '({passive resistance} {thing})) (new-knext-eq '({work stoppage} {thing}) '({strike} {thing})) (new-knext-eq '({admittance} {thing}) '({admission} {thing})) (new-knext-is-a '({transmutation} {countable}) '({transubstantiation} {countable})) (new-knext-is-a '({transubstantiation} {countable}) '({transmutation} {countable})) (new-knext-eq '({leading} {thing}) '({leadership} {thing})) (new-knext-is-a '({awakening} {countable}) '({waking up} {uncountable})) (new-knext-type {waking up} {uncountable}) (new-knext-type {awakening} {uncountable}) (new-statement {waking up} {consists of} {awakening}) (new-knext-eq '({spoilage} {thing}) '({spoiling} {thing})) (new-knext-is-a '({spoil} {uncountable}) '({spoiling} {uncountable})) (new-knext-is-a '({spoiling} {uncountable}) '({spoil} {uncountable})) (new-knext-is-a '({recruitment} {countable}) '({enlisting} {uncountable})) (new-knext-type {enlisting} {uncountable}) (new-knext-type {recruitment} {uncountable}) (new-statement {enlisting} {consists of} {recruitment}) (new-knext-eq '({reference} {thing}) '({consultation} {thing})) (new-knext-eq '({accenting} {thing}) '({emphasizing} {thing})) (new-knext-is-a '({emphasizing} {uncountable}) '({accentuation} {uncountable})) (new-knext-is-a '({accentuation} {uncountable}) '({emphasizing} {uncountable})) (new-knext-eq '({release} {thing}) '({vent} {thing})) (new-knext-is-a '({outlet} {countable}) '({vent} {countable})) (new-knext-is-a '({vent} {countable}) '({outlet} {countable})) (new-knext-eq '({jument} {thing}) '({beast of burden} {thing})) (new-knext-eq '({sumpter} {thing}) '({pack animal} {thing})) (new-knext-eq '({domesticated animal} {thing}) '({domestic animal} {thing})) (add-english-names (list {molter} {moulter}) (list "molter" "moulter")) (new-knext-type {female} {countable}) (new-knext-type {male} {countable}) (new-is-not-a {female} {male}) (new-knext-type {male} {countable}) (new-knext-type {female} {countable}) (new-is-not-a {male} {female}) (new-knext-eq '({offspring} {thing}) '({young} {thing})) (new-knext-eq '({whelp} {thing}) '({pup} {thing})) (new-knext-eq '({hybrid} {thing}) '({crossbreed} {thing})) (new-knext-type {parasite} {countable}) (new-knext-type {host} {countable}) (new-is-not-a {parasite} {host}) (new-knext-type {host} {countable}) (new-knext-type {parasite} {countable}) (new-is-not-a {host} {parasite}) (new-knext-eq '({protozoon} {thing}) '({protozoan} {thing})) (new-knext-eq '({embryo} {thing}) '({conceptus} {thing})) (new-knext-eq '({fertilized egg} {thing}) '({conceptus} {thing})) (new-knext-eq '({craniate} {thing}) '({vertebrate} {thing})) (new-knext-eq '({bird of jove} {thing}) '({eagle} {thing})) (new-knext-eq '({bird of minerva} {thing}) '({owl} {thing})) (new-knext-eq '({bird of night} {thing}) '({owl} {thing})) (new-knext-eq '({hooter} {thing}) '({owl} {thing})) (new-knext-eq '({toad} {thing}) '({frog} {thing})) (new-knext-eq '({anuran} {thing}) '({frog} {thing})) (new-knext-eq '({batrachian} {thing}) '({frog} {thing})) (new-knext-eq '({salientian} {thing}) '({frog} {thing})) (new-knext-eq '({reptilian} {thing}) '({reptile} {thing})) (new-knext-eq '({serpent} {thing}) '({snake} {thing})) (new-knext-eq '({ophidian} {thing}) '({snake} {thing})) (new-knext-eq '({neb} {thing}) '({beak} {thing})) (new-knext-eq '({nib} {thing}) '({beak} {thing})) (new-knext-eq '({pecker} {thing}) '({beak} {thing})) (new-knext-eq '({arachnoid} {thing}) '({arachnid} {thing})) (new-knext-eq '({gallinacean} {thing}) '({gallinaceous bird} {thing})) (new-knext-type {chicken} {countable}) (new-knext-indv {gallus gallus} {chicken}) (new-knext-eq '({biddy} {thing}) '({hen} {thing})) (new-knext-eq '({meleagris gallopavo} {thing}) '({turkey} {thing})) (new-knext-eq '({mammalian} {thing}) '({mammal} {thing})) (new-knext-eq '({eutherian} {thing}) '({placental} {thing})) (new-knext-eq '({eutherian mammal} {thing}) '({placental} {thing})) (new-knext-type {livestock} {uncountable}) (new-knext-type {farm animal} {uncountable}) (new-statement {livestock} {consists of} {farm animal}) (new-knext-type {farm animal} {countable}) (new-knext-type {livestock} {countable}) (new-statement {livestock} {consists of} {farm animal}) (new-knext-eq '({pelt} {thing}) '({hide} {thing})) (new-knext-eq '({skin} {thing}) '({hide} {thing})) (new-knext-eq '({plume} {thing}) '({feather} {thing})) (new-knext-type {feather} {countable}) (new-knext-type {plumage} {countable}) (new-statement {plumage} {consists of} {feather}) (new-knext-type {plumage} {uncountable}) (new-knext-type {feather} {uncountable}) (new-statement {plumage} {consists of} {feather}) (new-knext-eq '({cnidarian} {thing}) '({coelenterate} {thing})) (new-knext-eq '({angleworm} {thing}) '({earthworm} {thing})) (new-knext-eq '({fishworm} {thing}) '({earthworm} {thing})) (new-knext-eq '({fishing worm} {thing}) '({earthworm} {thing})) (new-knext-eq '({wiggler} {thing}) '({earthworm} {thing})) (new-knext-eq '({nightwalker} {thing}) '({earthworm} {thing})) (new-knext-eq '({nightcrawler} {thing}) '({earthworm} {thing})) (new-knext-eq '({crawler} {thing}) '({earthworm} {thing})) (new-knext-eq '({dew worm} {thing}) '({earthworm} {thing})) (new-knext-eq '({red worm} {thing}) '({earthworm} {thing})) (add-english-names (list {mollusk} {mollusc} {mollusc}) (list "mollusk" "mollusc" "mollusc")) (new-knext-eq '({mollusk} {thing}) '({mollusk} {thing})) (new-knext-eq '({shellfish} {thing}) '({mollusk} {thing})) (new-knext-eq '({beard} {thing}) '({byssus} {thing})) (new-knext-eq '({wader} {thing}) '({wading bird} {thing})) (new-knext-eq '({canine} {thing}) '({canid} {thing})) (new-knext-eq '({canis familiaris} {thing}) '({dog} {thing})) (new-knext-eq '({doggie} {thing}) '({pooch} {thing})) (new-knext-eq '({doggy} {thing}) '({pooch} {thing})) (new-knext-eq '({barker} {thing}) '({pooch} {thing})) (new-knext-eq '({king of beasts} {thing}) '({lion} {thing})) (new-knext-eq '({panthera leo} {thing}) '({lion} {thing})) (new-knext-eq '({tiger} {thing}) '({panthera tigris} {thing})) (new-knext-eq '({chiropteran} {thing}) '({bat} {thing})) (new-knext-eq '({quarry} {thing}) '({prey} {thing})) (new-knext-eq '({claw} {thing}) '({chela} {thing})) (new-knext-eq '({nipper} {thing}) '({chela} {thing})) (new-knext-eq '({pincer} {thing}) '({chela} {thing})) (new-knext-eq '({hymenopteran} {thing}) '({hymenopterous insect} {thing})) (new-knext-eq '({hymenopteron} {thing}) '({hymenopterous insect} {thing})) (new-knext-eq '({emmet} {thing}) '({ant} {thing})) (new-knext-eq '({pismire} {thing}) '({ant} {thing})) (new-knext-eq '({coney} {thing}) '({rabbit} {thing})) (new-knext-eq '({cony} {thing}) '({rabbit} {thing})) (new-knext-eq '({old world rabbit} {thing}) '({european rabbit} {thing})) (new-knext-type {european rabbit} {countable}) (new-knext-indv {oryctolagus cuniculus} {european rabbit}) (new-knext-eq '({cottontail} {thing}) '({wood rabbit} {thing})) (new-knext-eq '({cottontail rabbit} {thing}) '({wood rabbit} {thing})) (new-knext-eq '({gnawer} {thing}) '({rodent} {thing})) (new-knext-eq '({hoofed mammal} {thing}) '({ungulate} {thing})) (new-knext-eq '({equid} {thing}) '({equine} {thing})) (new-knext-type {horse} {countable}) (new-knext-indv {equus caballus} {horse}) (new-knext-eq '({entire} {thing}) '({stallion} {thing})) (new-knext-eq '({hack} {thing}) '({nag} {thing})) (new-knext-eq '({jade} {thing}) '({nag} {thing})) (new-knext-eq '({plug} {thing}) '({nag} {thing})) (new-knext-eq '({hog} {thing}) '({pig} {thing})) (new-knext-eq '({grunter} {thing}) '({pig} {thing})) (new-knext-eq '({squealer} {thing}) '({pig} {thing})) (new-knext-eq '({sus scrofa} {thing}) '({pig} {thing})) (new-knext-eq '({piggy} {thing}) '({piglet} {thing})) (new-knext-eq '({shoat} {thing}) '({piglet} {thing})) (new-knext-eq '({shote} {thing}) '({piglet} {thing})) (new-knext-eq '({cows} {thing}) '({cattle} {thing})) (new-knext-eq '({oxen} {thing}) '({cattle} {thing})) (new-knext-type {cattle} {uncountable}) (new-knext-type {kine} {uncountable}) (new-statement {cattle} {consists of} {kine}) (new-knext-type {kine} {countable}) (new-knext-type {cattle} {countable}) (new-statement {cattle} {consists of} {kine}) (new-knext-type {kine} {countable}) (new-knext-indv {bos taurus} {kine}) (new-knext-eq '({ram} {thing}) '({tup} {thing})) (new-knext-eq '({caprine animal} {thing}) '({goat} {thing})) (new-knext-eq '({cervid} {thing}) '({deer} {thing})) (new-knext-eq '({loin} {thing}) '({lumbus} {thing})) (new-knext-eq '({vein} {thing}) '({nervure} {thing})) (new-knext-eq '({homo} {thing}) '({human being} {thing})) (new-knext-eq '({gas pedal} {thing}) '({accelerator} {thing})) (new-knext-eq '({throttle} {thing}) '({accelerator} {thing})) (new-knext-eq '({gun} {thing}) '({accelerator} {thing})) (new-knext-eq '({approach} {thing}) '({access} {thing})) (new-knext-eq '({appurtenance} {thing}) '({accessory} {thing})) (new-knext-eq '({supplement} {thing}) '({accessory} {thing})) (new-knext-eq '({adapter} {thing}) '({adaptor} {thing})) (new-knext-eq '({improver} {thing}) '({addition} {thing})) (new-knext-eq '({intermixture} {thing}) '({admixture} {thing})) (new-knext-eq '({flattop} {thing}) '({aircraft carrier} {thing})) (new-knext-eq '({landing field} {thing}) '({airfield} {thing})) (new-knext-eq '({flying field} {thing}) '({airfield} {thing})) (new-knext-eq '({airway} {thing}) '({airline business} {thing})) (add-english-names (list {airplane} {aeroplane}) (list "airplane" "aeroplane")) (new-knext-eq '({airdrome} {thing}) '({airport} {thing})) (add-english-names (list {airdrome} {aerodrome}) (list "airdrome" "aerodrome")) (new-knext-eq '({airdrome} {thing}) '({airport} {thing})) (new-knext-eq '({drome} {thing}) '({airport} {thing})) (new-knext-eq '({alarm} {thing}) '({warning device} {thing})) (new-knext-eq '({alarm system} {thing}) '({warning device} {thing})) (new-knext-is-a '({ammunition} {uncountable}) '({ammo} {uncountable})) (new-knext-is-a '({ammo} {uncountable}) '({ammunition} {uncountable})) (new-knext-eq '({pep pill} {thing}) '({amphetamine} {thing})) (new-knext-eq '({upper} {thing}) '({amphetamine} {thing})) (new-knext-eq '({speed} {thing}) '({amphetamine} {thing})) (new-knext-eq '({anodyne} {thing}) '({analgesic} {thing})) (new-knext-eq '({painkiller} {thing}) '({analgesic} {thing})) (new-knext-eq '({pain pill} {thing}) '({analgesic} {thing})) (add-english-names (list {analyzer} {analyser} {analyzer} {analyser}) (list "analyzer" "analyser" "analyzer" "analyser")) (new-knext-eq '({analyzer} {thing}) '({analyzer} {thing})) (add-english-names (list {annex} {annexe} {annexe}) (list "annex" "annexe" "annexe")) (new-knext-eq '({annex} {thing}) '({annex} {thing})) (new-knext-eq '({antechamber} {thing}) '({anteroom} {thing})) (new-knext-eq '({entrance hall} {thing}) '({anteroom} {thing})) (new-knext-eq '({hall} {thing}) '({anteroom} {thing})) (new-knext-eq '({foyer} {thing}) '({anteroom} {thing})) (new-knext-eq '({lobby} {thing}) '({anteroom} {thing})) (new-knext-eq '({vestibule} {thing}) '({anteroom} {thing})) (new-knext-eq '({flat} {thing}) '({apartment} {thing})) (new-knext-eq '({apartment house} {thing}) '({apartment building} {thing})) (new-knext-eq '({setup} {thing}) '({apparatus} {thing})) (new-knext-eq '({wearing apparel} {thing}) '({clothes} {thing})) (new-knext-eq '({dress} {thing}) '({clothes} {thing})) (new-knext-is-a '({apparel} {uncountable}) '({clothes} {uncountable})) (new-knext-is-a '({clothes} {uncountable}) '({apparel} {uncountable})) (new-knext-eq '({contraption} {thing}) '({appliance} {thing})) (new-knext-eq '({contrivance} {thing}) '({appliance} {thing})) (new-knext-eq '({convenience} {thing}) '({appliance} {thing})) (new-knext-eq '({gadget} {thing}) '({appliance} {thing})) (new-knext-eq '({gizmo} {thing}) '({appliance} {thing})) (new-knext-eq '({gismo} {thing}) '({appliance} {thing})) (new-knext-eq '({widget} {thing}) '({appliance} {thing})) (new-knext-eq '({applier} {thing}) '({applicator} {thing})) (new-knext-eq '({fitting} {thing}) '({appointment} {thing})) (new-knext-eq '({apsis} {thing}) '({apse} {thing})) (new-knext-eq '({fish tank} {thing}) '({aquarium} {thing})) (new-knext-eq '({marine museum} {thing}) '({aquarium} {thing})) (new-knext-eq '({colonnade} {thing}) '({arcade} {thing})) (new-knext-eq '({armoured vehicle} {thing}) '({armored vehicle} {thing})) (new-knext-eq '({aspersorium} {thing}) '({aspergill} {thing})) (new-knext-eq '({acetylsalicylic acid} {thing}) '({aspirin} {thing})) (new-knext-eq '({empirin} {thing}) '({aspirin} {thing})) (new-knext-eq '({bond} {thing}) '({attachment} {thing})) (new-knext-eq '({dress} {thing}) '({garb} {thing})) (new-knext-is-a '({attire} {uncountable}) '({garb} {uncountable})) (new-knext-is-a '({garb} {uncountable}) '({attire} {uncountable})) (new-knext-eq '({automaton} {thing}) '({robot} {thing})) (new-knext-eq '({golem} {thing}) '({robot} {thing})) (new-knext-eq '({car horn} {thing}) '({automobile horn} {thing})) (new-knext-eq '({motor horn} {thing}) '({automobile horn} {thing})) (new-knext-eq '({hooter} {thing}) '({automobile horn} {thing})) (new-knext-eq '({avenue} {thing}) '({boulevard} {thing})) (new-knext-eq '({baby carriage} {thing}) '({baby buggy} {thing})) (new-knext-eq '({carriage} {thing}) '({baby buggy} {thing})) (new-knext-eq '({perambulator} {thing}) '({baby buggy} {thing})) (new-knext-eq '({pram} {thing}) '({baby buggy} {thing})) (new-knext-eq '({stroller} {thing}) '({baby buggy} {thing})) (new-knext-eq '({pushchair} {thing}) '({baby buggy} {thing})) (new-knext-eq '({pusher} {thing}) '({baby buggy} {thing})) (new-knext-eq '({travelling bag} {thing}) '({traveling bag} {thing})) (new-knext-eq '({grip} {thing}) '({traveling bag} {thing})) (new-knext-eq '({suitcase} {thing}) '({traveling bag} {thing})) (new-knext-eq '({pocketbook} {thing}) '({handbag} {thing})) (new-knext-eq '({purse} {thing}) '({handbag} {thing})) (new-knext-eq '({luggage} {thing}) '({baggage} {thing})) (new-knext-eq '({diamond} {thing}) '({ball field} {thing})) (new-knext-eq '({band} {thing}) '({stripe} {thing})) (new-knext-eq '({banding} {thing}) '({stripe} {thing})) (new-knext-eq '({patch} {thing}) '({bandage} {thing})) (new-knext-eq '({streamer} {thing}) '({banner} {thing})) (new-knext-eq '({flatboat} {thing}) '({barge} {thing})) (new-knext-eq '({hoy} {thing}) '({barge} {thing})) (new-knext-eq '({lighter} {thing}) '({barge} {thing})) (new-knext-eq '({cask} {thing}) '({barrel} {thing})) (new-knext-eq '({saloon} {thing}) '({barroom} {thing})) (new-knext-eq '({ginmill} {thing}) '({barroom} {thing})) (new-knext-eq '({taproom} {thing}) '({barroom} {thing})) (new-knext-eq '({base} {thing}) '({pedestal} {thing})) (new-knext-eq '({stand} {thing}) '({pedestal} {thing})) (new-knext-is-a '({baseball bat} {countable}) '({lumber} {uncountable})) (new-knext-type {lumber} {uncountable}) (new-knext-type {baseball bat} {uncountable}) (new-statement {lumber} {consists of} {baseball bat}) (new-knext-eq '({cellar} {thing}) '({basement} {thing})) (new-knext-eq '({bathing tub} {thing}) '({bathtub} {thing})) (new-knext-eq '({station wagon} {thing}) '({beach wagon} {thing})) (new-knext-eq '({estate car} {thing}) '({beach wagon} {thing})) (new-knext-eq '({beach waggon} {thing}) '({beach wagon} {thing})) (new-knext-eq '({station waggon} {thing}) '({beach wagon} {thing})) (new-knext-eq '({waggon} {thing}) '({beach wagon} {thing})) (new-knext-eq '({beacon} {thing}) '({lighthouse} {thing})) (new-knext-eq '({beacon light} {thing}) '({lighthouse} {thing})) (new-knext-eq '({pharos} {thing}) '({lighthouse} {thing})) (new-knext-eq '({sleeping room} {thing}) '({bedroom} {thing})) (new-knext-eq '({sleeping accommodation} {thing}) '({bedroom} {thing})) (new-knext-eq '({chamber} {thing}) '({bedroom} {thing})) (new-knext-eq '({bedchamber} {thing}) '({bedroom} {thing})) (new-knext-eq '({pager} {thing}) '({beeper} {thing})) (new-knext-eq '({curve} {thing}) '({bend} {thing})) (new-knext-eq '({cant} {thing}) '({bevel} {thing})) (new-knext-eq '({chamfer} {thing}) '({bevel} {thing})) (new-knext-eq '({bike} {thing}) '({bicycle} {thing})) (new-knext-eq '({wheel} {thing}) '({bicycle} {thing})) (new-knext-eq '({ligature} {thing}) '({binder} {thing})) (new-knext-eq '({cover} {thing}) '({book binding} {thing})) (new-knext-eq '({back} {thing}) '({book binding} {thing})) (new-knext-eq '({cover} {thing}) '({blanket} {thing})) (new-knext-eq '({liquidizer} {thing}) '({blender} {thing})) (add-english-names (list {liquidizer} {liquidiser} {liquidizer} {liquidiser}) (list "liquidizer" "liquidiser" "liquidizer" "liquidiser")) (new-knext-eq '({liquidizer} {thing}) '({blender} {thing})) (new-knext-eq '({blind} {thing}) '({screen} {thing})) (new-knext-eq '({closure} {thing}) '({blockage} {thing})) (new-knext-eq '({occlusion} {thing}) '({blockage} {thing})) (new-knext-eq '({stoppage} {thing}) '({blockage} {thing})) (new-knext-eq '({volume} {thing}) '({book} {thing})) (new-knext-eq '({booth} {thing}) '({kiosk} {thing})) (new-knext-eq '({cubicle} {thing}) '({kiosk} {thing})) (new-knext-eq '({stall} {thing}) '({kiosk} {thing})) (new-knext-eq '({borer} {thing}) '({bore bit} {thing})) (new-knext-eq '({rock drill} {thing}) '({bore bit} {thing})) (new-knext-eq '({stone drill} {thing}) '({bore bit} {thing})) (new-knext-eq '({bottom} {thing}) '({freighter} {thing})) (new-knext-eq '({merchantman} {thing}) '({freighter} {thing})) (new-knext-eq '({merchant ship} {thing}) '({freighter} {thing})) (new-knext-eq '({brace} {thing}) '({suspender} {thing})) (new-knext-is-a '({suspender} {countable}) '({gallus} {uncountable})) (new-knext-type {gallus} {uncountable}) (new-knext-type {suspender} {uncountable}) (new-statement {gallus} {consists of} {suspender}) (new-knext-eq '({span} {thing}) '({bridge} {thing})) (new-knext-eq '({lip} {thing}) '({brim} {thing})) (new-knext-eq '({spreader} {thing}) '({broadcaster} {thing})) (new-knext-eq '({pail} {thing}) '({bucket} {thing})) (new-knext-eq '({buffer} {thing}) '({polisher} {thing})) (new-knext-eq '({edifice} {thing}) '({building} {thing})) (new-knext-eq '({slug} {thing}) '({bullet} {thing})) (new-knext-eq '({bundle} {thing}) '({sheaf} {thing})) (new-knext-eq '({cottage} {thing}) '({bungalow} {thing})) (new-knext-eq '({coach} {thing}) '({bus} {thing})) (new-knext-eq '({charabanc} {thing}) '({bus} {thing})) (new-knext-eq '({jitney} {thing}) '({bus} {thing})) (new-knext-eq '({motorcoach} {thing}) '({bus} {thing})) (new-knext-eq '({passenger vehicle} {thing}) '({bus} {thing})) (new-knext-eq '({bus} {thing}) '({jalopy} {thing})) (new-knext-eq '({heap} {thing}) '({jalopy} {thing})) (new-knext-eq '({cab} {thing}) '({taxi} {thing})) (new-knext-eq '({hack} {thing}) '({taxi} {thing})) (new-knext-eq '({nightclub} {thing}) '({cabaret} {thing})) (new-knext-eq '({night club} {thing}) '({cabaret} {thing})) (new-knext-eq '({club} {thing}) '({cabaret} {thing})) (new-knext-eq '({nightspot} {thing}) '({cabaret} {thing})) (new-knext-eq '({coffeehouse} {thing}) '({cafe} {thing})) (new-knext-eq '({coffee shop} {thing}) '({cafe} {thing})) (new-knext-eq '({coffee bar} {thing}) '({cafe} {thing})) (new-knext-eq '({coop} {thing}) '({cage} {thing})) (new-knext-eq '({calculator} {thing}) '({calculating machine} {thing})) (new-knext-eq '({camper} {thing}) '({camping bus} {thing})) (new-knext-eq '({motor home} {thing}) '({camping bus} {thing})) (new-knext-eq '({tin} {thing}) '({can} {thing})) (new-knext-eq '({taper} {thing}) '({candle} {thing})) (new-knext-eq '({wax light} {thing}) '({candle} {thing})) (new-knext-eq '({canister} {thing}) '({cannister} {thing})) (new-knext-eq '({tin} {thing}) '({cannister} {thing})) (new-knext-type {canvas} {uncountable}) (new-knext-type {canvass} {uncountable}) (new-statement {canvas} {consists of} {canvass}) (new-knext-is-a '({canvass} {countable}) '({canvas} {uncountable})) (new-knext-eq '({capital} {thing}) '({chapiter} {thing})) (new-knext-eq '({cap} {thing}) '({chapiter} {thing})) (new-knext-eq '({auto} {thing}) '({car} {thing})) (new-knext-eq '({automobile} {thing}) '({car} {thing})) (new-knext-eq '({machine} {thing}) '({car} {thing})) (new-knext-eq '({railway car} {thing}) '({railcar} {thing})) (new-knext-eq '({railroad car} {thing}) '({railcar} {thing})) (new-knext-eq '({lading} {thing}) '({cargo} {thing})) (new-knext-eq '({freight} {thing}) '({cargo} {thing})) (new-knext-eq '({load} {thing}) '({shipment} {thing})) (new-knext-eq '({loading} {thing}) '({shipment} {thing})) (new-knext-eq '({payload} {thing}) '({shipment} {thing})) (new-knext-eq '({consignment} {thing}) '({shipment} {thing})) (new-knext-type {cargo} {uncountable}) (new-knext-type {shipment} {uncountable}) (new-statement {cargo} {consists of} {shipment}) (new-knext-is-a '({shipment} {countable}) '({cargo} {uncountable})) (new-knext-eq '({cargo deck} {thing}) '({cargo area} {thing})) (new-knext-eq '({cargo hold} {thing}) '({cargo area} {thing})) (new-knext-eq '({hold} {thing}) '({cargo area} {thing})) (new-knext-eq '({storage area} {thing}) '({cargo area} {thing})) (new-knext-eq '({rug beater} {thing}) '({carpet beater} {thing})) (new-knext-eq '({equipage} {thing}) '({carriage} {thing})) (new-knext-eq '({rig} {thing}) '({carriage} {thing})) (new-knext-eq '({showcase} {thing}) '({display case} {thing})) (new-knext-eq '({vitrine} {thing}) '({display case} {thing})) (new-knext-eq '({cast} {thing}) '({casting} {thing})) (new-knext-eq '({plaster bandage} {thing}) '({plaster cast} {thing})) (new-knext-eq '({cauterant} {thing}) '({cautery} {thing})) (new-knext-eq '({prison cell} {thing}) '({jail cell} {thing})) (new-knext-eq '({cell} {thing}) '({cubicle} {thing})) (new-knext-eq '({cellular phone} {thing}) '({cellular telephone} {thing})) (new-knext-eq '({cellphone} {thing}) '({cellular telephone} {thing})) (new-knext-eq '({mobile phone} {thing}) '({cellular telephone} {thing})) (add-english-names (list {center} {centre}) (list "center" "centre")) (new-knext-eq '({telephone exchange} {thing}) '({central} {thing})) (new-knext-eq '({exchange} {thing}) '({central} {thing})) (new-knext-eq '({pendant} {thing}) '({chandelier} {thing})) (new-knext-eq '({pendent} {thing}) '({chandelier} {thing})) (new-knext-eq '({tv channel} {thing}) '({television channel} {thing})) (new-knext-eq '({bursting charge} {thing}) '({burster} {thing})) (new-knext-eq '({explosive charge} {thing}) '({burster} {thing})) (new-knext-eq '({checker board} {thing}) '({checkerboard} {thing})) (new-knext-eq '({bureau} {thing}) '({chest of drawers} {thing})) (new-knext-eq '({dresser} {thing}) '({chest of drawers} {thing})) (new-knext-eq '({micro chip} {thing}) '({microchip} {thing})) (new-knext-eq '({silicon chip} {thing}) '({microchip} {thing})) (new-knext-eq '({microprocessor chip} {thing}) '({microchip} {thing})) (new-knext-eq '({chute} {thing}) '({slideway} {thing})) (new-knext-eq '({sloping trough} {thing}) '({slideway} {thing})) (add-english-names (list {cigaret} {cigarette} {cigarette}) (list "cigaret" "cigarette" "cigarette")) (new-knext-eq '({cigaret} {thing}) '({cigaret} {thing})) (add-english-names (list {cigaret} {cigarette} {cigarette}) (list "cigaret" "cigarette" "cigarette")) (new-knext-eq '({coffin nail} {thing}) '({cigaret} {thing})) (add-english-names (list {cigaret} {cigarette} {cigarette}) (list "cigaret" "cigarette" "cigarette")) (new-knext-eq '({butt} {thing}) '({cigaret} {thing})) (add-english-names (list {cigaret} {cigarette} {cigarette}) (list "cigaret" "cigarette" "cigarette")) (new-knext-eq '({fag} {thing}) '({cigaret} {thing})) (new-knext-eq '({cinema} {thing}) '({movie theater} {thing})) (new-knext-eq '({movie theatre} {thing}) '({movie theater} {thing})) (new-knext-eq '({movie house} {thing}) '({movie theater} {thing})) (new-knext-eq '({picture palace} {thing}) '({movie theater} {thing})) (new-knext-eq '({schoolroom} {thing}) '({classroom} {thing})) (new-knext-eq '({cleanser} {thing}) '({cleansing agent} {thing})) (new-knext-eq '({cleaner} {thing}) '({cleansing agent} {thing})) (new-knext-eq '({geta} {thing}) '({clog} {thing})) (new-knext-eq '({patten} {thing}) '({clog} {thing})) (new-knext-eq '({sabot} {thing}) '({clog} {thing})) (new-knext-eq '({wear} {thing}) '({clothing} {thing})) (new-knext-eq '({vesture} {thing}) '({article of clothing} {thing})) (new-knext-eq '({wearable} {thing}) '({article of clothing} {thing})) (new-knext-eq '({habiliment} {thing}) '({article of clothing} {thing})) (new-knext-type {clothing} {uncountable}) (new-knext-type {article of clothing} {uncountable}) (new-statement {clothing} {consists of} {article of clothing}) (new-knext-type {article of clothing} {countable}) (new-knext-type {clothing} {countable}) (new-statement {clothing} {consists of} {article of clothing}) (new-knext-eq '({coat} {thing}) '({coating} {thing})) (new-knext-eq '({casket} {thing}) '({coffin} {thing})) (new-knext-eq '({neckband} {thing}) '({collar} {thing})) (new-knext-eq '({column} {thing}) '({pillar} {thing})) (new-knext-eq '({trade good} {thing}) '({commodity} {thing})) (new-knext-eq '({good} {thing}) '({commodity} {thing})) (new-knext-type {communication system} {countable}) (new-knext-type {communication equipment} {countable}) (new-statement {communication equipment} {consists of} {communication system}) (new-knext-type {communication equipment} {uncountable}) (new-knext-type {communication system} {uncountable}) (new-statement {communication equipment} {consists of} {communication system}) (new-knext-eq '({component} {thing}) '({constituent} {thing})) (new-knext-eq '({element} {thing}) '({constituent} {thing})) (new-knext-eq '({computing machine} {thing}) '({computer} {thing})) (new-knext-eq '({computing device} {thing}) '({computer} {thing})) (new-knext-eq '({data processor} {thing}) '({computer} {thing})) (new-knext-eq '({information processing system} {thing}) '({computer} {thing})) (new-knext-eq '({connection} {thing}) '({connector} {thing})) (add-english-names (list {connection} {connexion} {connection} {connexion}) (list "connection" "connexion" "connection" "connexion")) (new-knext-eq '({connection} {thing}) '({connector} {thing})) (new-knext-eq '({connecter} {thing}) '({connector} {thing})) (new-knext-eq '({connective} {thing}) '({connector} {thing})) (new-knext-eq '({control} {thing}) '({controller} {thing})) (new-knext-eq '({convertor} {thing}) '({converter} {thing})) (new-knext-eq '({conveyance} {thing}) '({transport} {thing})) (new-knext-eq '({conveyor belt} {thing}) '({conveyer belt} {thing})) (new-knext-eq '({conveyor} {thing}) '({conveyer belt} {thing})) (new-knext-eq '({transporter} {thing}) '({conveyer belt} {thing})) (new-knext-eq '({ice chest} {thing}) '({cooler} {thing})) (new-knext-eq '({corner} {thing}) '({nook} {thing})) (new-knext-eq '({restorative} {thing}) '({corrective} {thing})) (new-knext-eq '({counter} {thing}) '({tabulator} {thing})) (new-knext-eq '({counterbalance} {thing}) '({counterweight} {thing})) (new-knext-eq '({counterpoise} {thing}) '({counterweight} {thing})) (new-knext-eq '({equalizer} {thing}) '({counterweight} {thing})) (add-english-names (list {equalizer} {equaliser} {equalizer} {equaliser}) (list "equalizer" "equaliser" "equalizer" "equaliser")) (new-knext-eq '({equalizer} {thing}) '({counterweight} {thing})) (new-knext-eq '({course} {thing}) '({row} {thing})) (new-knext-eq '({crampon} {thing}) '({climbing iron} {thing})) (new-knext-eq '({crampoon} {thing}) '({climbing iron} {thing})) (new-knext-eq '({climber} {thing}) '({climbing iron} {thing})) (new-knext-eq '({cream} {thing}) '({emollient} {thing})) (new-knext-type {ointment} {uncountable}) (new-knext-type {emollient} {uncountable}) (new-statement {ointment} {consists of} {emollient}) (new-knext-is-a '({emollient} {countable}) '({ointment} {uncountable})) (new-knext-is-a '({crepe} {countable}) '({crape} {uncountable})) (new-knext-type {crape} {uncountable}) (new-knext-type {crepe} {uncountable}) (new-statement {crape} {consists of} {crepe}) (new-knext-eq '({crossing} {thing}) '({crosswalk} {thing})) (new-knext-eq '({crossover} {thing}) '({crosswalk} {thing})) (new-knext-eq '({crown} {thing}) '({diadem} {thing})) (new-knext-eq '({jacket} {thing}) '({crownwork} {thing})) (new-knext-eq '({jacket crown} {thing}) '({crownwork} {thing})) (new-knext-eq '({cap} {thing}) '({crownwork} {thing})) (new-knext-eq '({cube} {thing}) '({square block} {thing})) (new-knext-eq '({closet} {thing}) '({cupboard} {thing})) (new-knext-eq '({roller} {thing}) '({curler} {thing})) (new-knext-eq '({crimper} {thing}) '({curler} {thing})) (new-knext-eq '({pointer} {thing}) '({cursor} {thing})) (new-knext-eq '({drape} {thing}) '({curtain} {thing})) (new-knext-eq '({drapery} {thing}) '({curtain} {thing})) (new-knext-eq '({mantle} {thing}) '({curtain} {thing})) (new-knext-eq '({pall} {thing}) '({curtain} {thing})) (new-knext-type {cutlery} {uncountable}) (new-knext-type {eating utensil} {uncountable}) (new-statement {cutlery} {consists of} {eating utensil}) (new-knext-type {eating utensil} {countable}) (new-knext-type {cutlery} {countable}) (new-statement {cutlery} {consists of} {eating utensil}) (new-knext-eq '({cutter} {thing}) '({cutting tool} {thing})) (new-knext-type {cutlery} {uncountable}) (new-knext-type {cutting tool} {uncountable}) (new-statement {cutlery} {consists of} {cutting tool}) (new-knext-is-a '({cutting tool} {countable}) '({cutlery} {uncountable})) (new-knext-eq '({ledger} {thing}) '({daybook} {thing})) (new-knext-eq '({ornament} {thing}) '({decoration} {thing})) (add-english-names (list {defense} {defence}) (list "defense" "defence")) (new-knext-eq '({defense} {thing}) '({defensive structure} {thing})) (new-knext-eq '({delineation} {thing}) '({limning} {thing})) (new-knext-eq '({depiction} {thing}) '({limning} {thing})) (new-knext-eq '({line drawing} {thing}) '({limning} {thing})) (new-knext-eq '({deposit} {thing}) '({depository} {thing})) (new-knext-eq '({depositary} {thing}) '({depository} {thing})) (new-knext-eq '({repository} {thing}) '({depository} {thing})) (new-knext-eq '({design} {thing}) '({pattern} {thing})) (new-knext-eq '({sensor} {thing}) '({detector} {thing})) (new-knext-eq '({sensing element} {thing}) '({detector} {thing})) (new-knext-type {die} {countable}) (new-knext-type {dice} {countable}) (new-statement {dice} {consists of} {die}) (new-knext-type {dice} {uncountable}) (new-knext-type {die} {uncountable}) (new-statement {dice} {consists of} {die}) (new-knext-eq '({digs} {thing}) '({lodgings} {thing})) (new-knext-eq '({diggings} {thing}) '({pad} {thing})) (new-knext-eq '({domiciliation} {thing}) '({pad} {thing})) (new-knext-type {lodgings} {uncountable}) (new-knext-type {pad} {uncountable}) (new-statement {lodgings} {consists of} {pad}) (new-knext-type {pad} {countable}) (new-knext-type {lodgings} {countable}) (new-statement {lodgings} {consists of} {pad}) (new-knext-eq '({dish antenna} {thing}) '({dish aerial} {thing})) (new-knext-eq '({saucer} {thing}) '({dish aerial} {thing})) (new-knext-eq '({germicide} {thing}) '({disinfectant} {thing})) (new-knext-eq '({antimicrobic} {thing}) '({disinfectant} {thing})) (new-knext-eq '({antimicrobial} {thing}) '({disinfectant} {thing})) (new-knext-eq '({disc} {thing}) '({disk} {thing})) (new-knext-eq '({disc drive} {thing}) '({disk drive} {thing})) (new-knext-eq '({hard drive} {thing}) '({disk drive} {thing})) (new-knext-eq '({winchester drive} {thing}) '({disk drive} {thing})) (new-knext-eq '({distributer} {thing}) '({electrical distributor} {thing})) (new-knext-eq '({dolly} {thing}) '({doll} {thing})) (new-knext-eq '({buzzer} {thing}) '({doorbell} {thing})) (new-knext-eq '({doorstep} {thing}) '({doorsill} {thing})) (new-knext-eq '({threshold} {thing}) '({doorsill} {thing})) (new-knext-eq '({residence hall} {thing}) '({dormitory} {thing})) (new-knext-eq '({hall} {thing}) '({dormitory} {thing})) (new-knext-eq '({student residence} {thing}) '({dormitory} {thing})) (new-knext-eq '({dosage} {thing}) '({dose} {thing})) (new-knext-eq '({waste pipe} {thing}) '({drainpipe} {thing})) (new-knext-eq '({frock} {thing}) '({dress} {thing})) (new-knext-eq '({water fountain} {thing}) '({drinking fountain} {thing})) (new-knext-eq '({bubbler} {thing}) '({drinking fountain} {thing})) (new-knext-eq '({private road} {thing}) '({driveway} {thing})) (new-knext-eq '({street drug} {thing}) '({drug of abuse} {thing})) (new-knext-eq '({pharmacy} {thing}) '({drugstore} {thing})) (new-knext-eq '({membranophone} {thing}) '({drum} {thing})) (new-knext-eq '({tympan} {thing}) '({drum} {thing})) (new-knext-eq '({electric sander} {thing}) '({drum sander} {thing})) (new-knext-eq '({smoother} {thing}) '({drum sander} {thing})) (new-knext-eq '({drier} {thing}) '({dryer} {thing})) (new-knext-eq '({soft goods} {thing}) '({drygoods} {thing})) (new-knext-eq '({copier} {thing}) '({duplicator} {thing})) (new-knext-eq '({durable goods} {thing}) '({durables} {thing})) (new-knext-eq '({home} {thing}) '({dwelling} {thing})) (new-knext-eq '({domicile} {thing}) '({dwelling} {thing})) (new-knext-eq '({abode} {thing}) '({dwelling} {thing})) (new-knext-eq '({habitation} {thing}) '({dwelling} {thing})) (new-knext-eq '({image} {thing}) '({effigy} {thing})) (new-knext-eq '({simulacrum} {thing}) '({effigy} {thing})) (new-knext-eq '({fridge} {thing}) '({electric refrigerator} {thing})) (new-knext-eq '({lift} {thing}) '({elevator} {thing})) (new-knext-eq '({remainder} {thing}) '({oddment} {thing})) (new-knext-eq '({remnant} {thing}) '({oddment} {thing})) (new-knext-is-a '({end product} {countable}) '({output} {uncountable})) (new-knext-type {output} {uncountable}) (new-knext-type {end product} {uncountable}) (new-statement {output} {consists of} {end product}) (new-knext-eq '({entryway} {thing}) '({entrance} {thing})) (new-knext-eq '({entry} {thing}) '({entrance} {thing})) (new-knext-eq '({entree} {thing}) '({entrance} {thing})) (new-knext-eq '({escalator} {thing}) '({moving staircase} {thing})) (new-knext-eq '({moving stairway} {thing}) '({moving staircase} {thing})) (new-knext-eq '({outlet} {thing}) '({exit} {thing})) (new-knext-eq '({way out} {thing}) '({exit} {thing})) (new-knext-eq '({exportation} {thing}) '({export} {thing})) (new-knext-type {export} {countable}) (new-knext-type {import} {countable}) (new-is-not-a {export} {import}) (new-knext-eq '({freeway} {thing}) '({expressway} {thing})) (new-knext-eq '({motorway} {thing}) '({expressway} {thing})) (new-knext-eq '({pike} {thing}) '({expressway} {thing})) (new-knext-eq '({state highway} {thing}) '({expressway} {thing})) (new-knext-eq '({superhighway} {thing}) '({expressway} {thing})) (add-english-names (list {thruway} {throughway} {throughway}) (list "thruway" "throughway" "throughway")) (new-knext-eq '({thruway} {thing}) '({expressway} {thing})) (new-knext-eq '({thruway} {thing}) '({expressway} {thing})) (new-knext-eq '({extension phone} {thing}) '({telephone extension} {thing})) (new-knext-eq '({cloth} {thing}) '({fabric} {thing})) (new-knext-eq '({material} {thing}) '({fabric} {thing})) (new-knext-is-a '({fabric} {uncountable}) '({textile} {countable})) (new-knext-is-a '({textile} {countable}) '({fabric} {uncountable})) (new-knext-eq '({frontage} {thing}) '({facade} {thing})) (new-knext-eq '({frontal} {thing}) '({facade} {thing})) (add-english-names (list {instillment} {instilment} {installation} {instilment}) (list "instillment" "instilment" "installation" "instilment")) (new-knext-eq '({instillment} {thing}) '({facility} {thing})) (new-knext-eq '({facing} {thing}) '({cladding} {thing})) (new-knext-eq '({veneer} {thing}) '({facing} {thing})) (new-knext-eq '({fax} {thing}) '({facsimile machine} {thing})) (new-knext-eq '({mill} {thing}) '({factory} {thing})) (new-knext-eq '({manufacturing plant} {thing}) '({factory} {thing})) (new-knext-eq '({sham} {thing}) '({fake} {thing})) (new-knext-eq '({postiche} {thing}) '({fake} {thing})) (new-knext-eq '({fastener} {thing}) '({fastening} {thing})) (new-knext-eq '({holdfast} {thing}) '({fastening} {thing})) (new-knext-eq '({fixing} {thing}) '({fastening} {thing})) (new-knext-eq '({spigot} {thing}) '({faucet} {thing})) (new-knext-eq '({fencing} {thing}) '({fence} {thing})) (new-knext-eq '({attack aircraft} {thing}) '({fighter aircraft} {thing})) (new-knext-eq '({filing cabinet} {thing}) '({file cabinet} {thing})) (new-knext-eq '({tackle} {thing}) '({fishing gear} {thing})) (new-knext-eq '({fishing tackle} {thing}) '({fishing gear} {thing})) (new-knext-eq '({fishing rig} {thing}) '({fishing gear} {thing})) (new-knext-eq '({rig} {thing}) '({fishing gear} {thing})) (new-knext-eq '({flash lamp} {thing}) '({photoflash} {thing})) (new-knext-eq '({flashgun} {thing}) '({photoflash} {thing})) (new-knext-eq '({flashbulb} {thing}) '({photoflash} {thing})) (new-knext-eq '({flash bulb} {thing}) '({photoflash} {thing})) (new-knext-eq '({torch} {thing}) '({flashlight} {thing})) (new-knext-is-a '({flatware} {uncountable}) '({silver} {uncountable})) (new-knext-is-a '({silver} {uncountable}) '({flatware} {uncountable})) (new-knext-eq '({flight of steps} {thing}) '({flight of stairs} {thing})) (new-knext-eq '({flooring} {thing}) '({floor} {thing})) (add-english-names (list {story} {storey} {story} {storey}) (list "story" "storey" "story" "storey")) (new-knext-eq '({floor} {thing}) '({story} {thing})) (add-english-names (list {story} {storey} {story} {storey}) (list "story" "storey" "story" "storey")) (new-knext-eq '({level} {thing}) '({story} {thing})) (add-english-names (list {story} {storey} {story} {storey}) (list "story" "storey" "story" "storey")) (new-knext-eq '({story} {thing}) '({story} {thing})) (new-knext-eq '({footwear} {thing}) '({footgear} {thing})) (new-knext-eq '({forge} {thing}) '({smithy} {thing})) (new-knext-eq '({foundation} {thing}) '({understructure} {thing})) (new-knext-eq '({base} {thing}) '({understructure} {thing})) (new-knext-eq '({fundament} {thing}) '({understructure} {thing})) (new-knext-eq '({foot} {thing}) '({understructure} {thing})) (new-knext-eq '({groundwork} {thing}) '({understructure} {thing})) (new-knext-eq '({substructure} {thing}) '({understructure} {thing})) (new-knext-type {front} {countable}) (new-knext-type {rear} {countable}) (new-is-not-a {front} {rear}) (new-knext-eq '({frypan} {thing}) '({frying pan} {thing})) (new-knext-eq '({skillet} {thing}) '({frying pan} {thing})) (new-knext-eq '({article of furniture} {thing}) '({piece of furniture} {thing})) (new-knext-type {furniture} {uncountable}) (new-knext-type {piece of furniture} {uncountable}) (new-statement {furniture} {consists of} {piece of furniture}) (new-knext-type {piece of furniture} {countable}) (new-knext-type {furniture} {countable}) (new-statement {furniture} {consists of} {piece of furniture}) (new-knext-eq '({picture gallery} {thing}) '({art gallery} {thing})) (new-knext-eq '({gap} {thing}) '({crack} {thing})) (new-knext-eq '({service department} {thing}) '({garage} {thing})) (new-knext-eq '({gear} {thing}) '({paraphernalia} {thing})) (new-knext-eq '({appurtenance} {thing}) '({paraphernalia} {thing})) (new-knext-is-a '({glassware} {uncountable}) '({glasswork} {uncountable})) (new-knext-is-a '({glasswork} {uncountable}) '({glassware} {uncountable})) (new-knext-eq '({sailplane} {thing}) '({glider} {thing})) (new-knext-eq '({regulator} {thing}) '({governor} {thing})) (new-knext-eq '({gown} {thing}) '({robe} {thing})) (new-knext-eq '({grave} {thing}) '({tomb} {thing})) (new-knext-eq '({glasshouse} {thing}) '({greenhouse} {thing})) (new-knext-eq '({food market} {thing}) '({grocery store} {thing})) (new-knext-eq '({market} {thing}) '({grocery store} {thing})) (new-knext-eq '({first floor} {thing}) '({ground floor} {thing})) (new-knext-eq '({ground level} {thing}) '({ground floor} {thing})) (new-knext-eq '({guard} {thing}) '({safety device} {thing})) (new-knext-eq '({trough} {thing}) '({gutter} {thing})) (new-knext-eq '({exerciser} {thing}) '({gymnastic apparatus} {thing})) (new-knext-eq '({pushcart} {thing}) '({handcart} {thing})) (new-knext-eq '({hankie} {thing}) '({handkerchief} {thing})) (new-knext-eq '({hanky} {thing}) '({handkerchief} {thing})) (new-knext-eq '({hankey} {thing}) '({handkerchief} {thing})) (new-knext-eq '({grip} {thing}) '({handle} {thing})) (new-knext-eq '({handgrip} {thing}) '({handle} {thing})) (new-knext-eq '({hold} {thing}) '({handle} {thing})) (new-knext-eq '({french telephone} {thing}) '({handset} {thing})) (new-knext-type {hardware} {uncountable}) (new-knext-type {software} {uncountable}) (new-is-not-a {hardware} {software}) (new-knext-eq '({reaper} {thing}) '({harvester} {thing})) (new-knext-eq '({chapeau} {thing}) '({hat} {thing})) (new-knext-eq '({lid} {thing}) '({hat} {thing})) (new-knext-eq '({veil} {thing}) '({head covering} {thing})) (new-knext-eq '({headgear} {thing}) '({headdress} {thing})) (new-knext-eq '({central office} {thing}) '({headquarters} {thing})) (new-knext-eq '({main office} {thing}) '({headquarters} {thing})) (new-knext-eq '({home office} {thing}) '({headquarters} {thing})) (new-knext-eq '({home base} {thing}) '({headquarters} {thing})) (new-knext-eq '({warmer} {thing}) '({heater} {thing})) (new-knext-eq '({heating plant} {thing}) '({heating system} {thing})) (new-knext-is-a '({heating system} {countable}) '({heating} {uncountable})) (new-knext-type {heating} {uncountable}) (new-knext-type {heating system} {uncountable}) (new-statement {heating} {consists of} {heating system}) (new-knext-eq '({chopper} {thing}) '({helicopter} {thing})) (new-knext-eq '({whirlybird} {thing}) '({helicopter} {thing})) (new-knext-eq '({eggbeater} {thing}) '({helicopter} {thing})) (new-knext-eq '({diacetylmorphine} {thing}) '({heroin} {thing})) (new-knext-eq '({retreat} {thing}) '({hideaway} {thing})) (new-knext-eq '({hinderance} {thing}) '({hindrance} {thing})) (new-knext-eq '({hitch} {thing}) '({hindrance} {thing})) (new-knext-eq '({preventive} {thing}) '({hindrance} {thing})) (new-knext-eq '({preventative} {thing}) '({hindrance} {thing})) (new-knext-eq '({encumbrance} {thing}) '({hindrance} {thing})) (new-knext-eq '({incumbrance} {thing}) '({hindrance} {thing})) (new-knext-is-a '({hindrance} {countable}) '({interference} {uncountable})) (new-knext-type {interference} {uncountable}) (new-knext-type {hindrance} {uncountable}) (new-statement {interference} {consists of} {hindrance}) (new-knext-eq '({hold} {thing}) '({keep} {thing})) (new-knext-eq '({rest home} {thing}) '({nursing home} {thing})) (new-knext-eq '({ring} {thing}) '({hoop} {thing})) (new-knext-eq '({level} {thing}) '({horizontal surface} {thing})) (new-knext-eq '({infirmary} {thing}) '({hospital} {thing})) (new-knext-eq '({student lodging} {thing}) '({youth hostel} {thing})) (new-knext-eq '({inn} {thing}) '({hostel} {thing})) (new-knext-eq '({lodge} {thing}) '({hostel} {thing})) (new-knext-eq '({auberge} {thing}) '({hostel} {thing})) (new-knext-eq '({living accommodations} {thing}) '({housing} {thing})) (new-knext-is-a '({housing} {uncountable}) '({lodging} {uncountable})) (new-knext-is-a '({lodging} {uncountable}) '({housing} {uncountable})) (new-knext-eq '({hut} {thing}) '({hovel} {thing})) (new-knext-eq '({hutch} {thing}) '({hovel} {thing})) (new-knext-eq '({shack} {thing}) '({hovel} {thing})) (add-english-names (list {chanty} {shanty} {chanty} {chantey} {shanty}) (list "chanty" "shanty" "chanty" "chantey" "shanty")) (new-knext-eq '({chanty} {thing}) '({hovel} {thing})) (new-knext-eq '({iceboat} {thing}) '({ice yacht} {thing})) (new-knext-eq '({scooter} {thing}) '({ice yacht} {thing})) (new-knext-eq '({forgery} {thing}) '({counterfeit} {thing})) (new-knext-eq '({importation} {thing}) '({import} {thing})) (new-knext-type {import} {countable}) (new-knext-type {export} {countable}) (new-is-not-a {import} {export}) (new-knext-eq '({inflator} {thing}) '({inflater} {thing})) (new-knext-eq '({substructure} {thing}) '({infrastructure} {thing})) (new-knext-eq '({inset} {thing}) '({insert} {thing})) (new-knext-is-a '({internet} {countable}) '({cyberspace} {uncountable})) (new-knext-type {cyberspace} {uncountable}) (new-knext-type {internet} {uncountable}) (new-statement {cyberspace} {consists of} {internet}) (new-knext-eq '({intersection} {thing}) '({crossroad} {thing})) (new-knext-eq '({crossway} {thing}) '({crossroad} {thing})) (new-knext-eq '({crossing} {thing}) '({crossroad} {thing})) (new-knext-eq '({carrefour} {thing}) '({crossroad} {thing})) (new-knext-eq '({invention} {thing}) '({innovation} {thing})) (new-knext-is-a '({jeans} {uncountable}) '({denim} {uncountable})) (new-knext-is-a '({denim} {uncountable}) '({jeans} {uncountable})) (new-knext-eq '({landrover} {thing}) '({jeep} {thing})) (new-knext-eq '({gem} {thing}) '({jewel} {thing})) (new-knext-eq '({precious stone} {thing}) '({jewel} {thing})) (add-english-names (list {jewelry} {jewellery} {jewellery}) (list "jewelry" "jewellery" "jewellery")) (new-knext-eq '({jewelry} {thing}) '({jewelry} {thing})) (new-knext-eq '({boiler} {thing}) '({kettle} {thing})) (new-knext-eq '({outfit} {thing}) '({kit} {thing})) (new-knext-eq '({claxon} {thing}) '({klaxon} {thing})) (new-knext-eq '({horse} {thing}) '({knight} {thing})) (new-knext-eq '({laboratory} {thing}) '({lab} {thing})) (new-knext-eq '({port} {thing}) '({larboard} {thing})) (new-knext-type {larboard} {countable}) (new-knext-type {starboard} {countable}) (new-is-not-a {larboard} {starboard}) (new-knext-eq '({optical maser} {thing}) '({laser} {thing})) (new-knext-eq '({lasso} {thing}) '({lariat} {thing})) (new-knext-eq '({riata} {thing}) '({lariat} {thing})) (new-knext-eq '({reata} {thing}) '({lariat} {thing})) (new-knext-eq '({wash} {thing}) '({washables} {thing})) (new-knext-eq '({washing} {thing}) '({washables} {thing})) (new-knext-is-a '({laundry} {uncountable}) '({washables} {uncountable})) (new-knext-is-a '({washables} {uncountable}) '({laundry} {uncountable})) (new-knext-eq '({bed} {thing}) '({layer} {thing})) (new-knext-eq '({tether} {thing}) '({leash} {thing})) (new-knext-eq '({lemon} {thing}) '({stinker} {thing})) (new-knext-eq '({lightbulb} {thing}) '({light bulb} {thing})) (new-knext-eq '({incandescent lamp} {thing}) '({light bulb} {thing})) (new-knext-eq '({electric light} {thing}) '({light bulb} {thing})) (new-knext-eq '({igniter} {thing}) '({lighter} {thing})) (new-knext-eq '({ignitor} {thing}) '({lighter} {thing})) (new-knext-eq '({clipper} {thing}) '({limiter} {thing})) (new-knext-eq '({railway line} {thing}) '({rail line} {thing})) (new-knext-eq '({tie} {thing}) '({linkup} {thing})) (new-knext-eq '({loading} {thing}) '({load} {thing})) (new-knext-eq '({burden} {thing}) '({load} {thing})) (new-knext-eq '({engine} {thing}) '({locomotive} {thing})) (new-knext-eq '({loft} {thing}) '({attic} {thing})) (new-knext-eq '({garret} {thing}) '({attic} {thing})) (new-knext-eq '({speaker unit} {thing}) '({loudspeaker} {thing})) (new-knext-eq '({speaker system} {thing}) '({loudspeaker} {thing})) (new-knext-eq '({lounge} {thing}) '({waiting room} {thing})) (new-knext-eq '({waiting area} {thing}) '({waiting room} {thing})) (new-knext-eq '({automobile trunk} {thing}) '({luggage compartment} {thing})) (new-knext-eq '({trunk} {thing}) '({luggage compartment} {thing})) (new-knext-eq '({boot} {thing}) '({luggage compartment} {thing})) (new-knext-eq '({war paint} {thing}) '({makeup} {thing})) (new-knext-eq '({filler} {thing}) '({makeweight} {thing})) (new-knext-eq '({manse} {thing}) '({mansion house} {thing})) (new-knext-eq '({residence} {thing}) '({mansion house} {thing})) (new-knext-eq '({original} {thing}) '({master copy} {thing})) (new-knext-eq '({lucifer} {thing}) '({match} {thing})) (new-knext-eq '({mate} {thing}) '({match} {thing})) (new-knext-eq '({equipage} {thing}) '({materiel} {thing})) (new-knext-eq '({labyrinth} {thing}) '({maze} {thing})) (new-knext-eq '({measuring system} {thing}) '({measuring instrument} {thing})) (new-knext-eq '({measuring device} {thing}) '({measuring instrument} {thing})) (new-knext-eq '({measure} {thing}) '({measuring stick} {thing})) (new-knext-eq '({measuring rod} {thing}) '({measuring stick} {thing})) (new-knext-eq '({medicament} {thing}) '({medication} {thing})) (new-knext-eq '({medicinal drug} {thing}) '({medication} {thing})) (new-knext-type {medicine} {uncountable}) (new-knext-type {medication} {uncountable}) (new-statement {medicine} {consists of} {medication}) (new-knext-is-a '({medication} {countable}) '({medicine} {uncountable})) (new-knext-eq '({memorial} {thing}) '({monument} {thing})) (new-knext-eq '({storage} {thing}) '({computer memory} {thing})) (new-knext-eq '({computer storage} {thing}) '({computer memory} {thing})) (new-knext-eq '({store} {thing}) '({memory board} {thing})) (new-knext-type {computer memory} {uncountable}) (new-knext-type {memory board} {uncountable}) (new-statement {computer memory} {consists of} {memory board}) (new-knext-is-a '({memory board} {countable}) '({computer memory} {uncountable})) (new-knext-eq '({storage device} {thing}) '({memory device} {thing})) (new-knext-eq '({patch} {thing}) '({mend} {thing})) (new-knext-eq '({darn} {thing}) '({mend} {thing})) (new-knext-eq '({psychiatric hospital} {thing}) '({mental hospital} {thing})) (new-knext-eq '({mental institution} {thing}) '({mental hospital} {thing})) (new-knext-eq '({institution} {thing}) '({mental hospital} {thing})) (new-knext-eq '({mental home} {thing}) '({mental hospital} {thing})) (new-knext-eq '({insane asylum} {thing}) '({mental hospital} {thing})) (new-knext-eq '({asylum} {thing}) '({mental hospital} {thing})) (new-knext-eq '({retail store} {thing}) '({mercantile establishment} {thing})) (new-knext-eq '({sales outlet} {thing}) '({mercantile establishment} {thing})) (new-knext-eq '({outlet} {thing}) '({mercantile establishment} {thing})) (new-knext-eq '({ware} {thing}) '({merchandise} {thing})) (new-knext-is-a '({merchandise} {uncountable}) '({product} {uncountable})) (new-knext-is-a '({product} {uncountable}) '({merchandise} {uncountable})) (new-knext-eq '({tube} {thing}) '({metro} {thing})) (new-knext-eq '({underground} {thing}) '({metro} {thing})) (new-knext-eq '({subway system} {thing}) '({metro} {thing})) (new-knext-eq '({subway} {thing}) '({metro} {thing})) (new-knext-eq '({mike} {thing}) '({microphone} {thing})) (new-knext-eq '({grinder} {thing}) '({milling machinery} {thing})) (new-knext-eq '({motorbike} {thing}) '({minibike} {thing})) (new-knext-eq '({model} {thing}) '({simulation} {thing})) (add-english-names (list {mold} {mould}) (list "mold" "mould")) (new-knext-eq '({cast} {thing}) '({mold} {thing})) (new-knext-eq '({mold} {thing}) '({modeling} {thing})) (add-english-names (list {mold} {mould}) (list "mold" "mould")) (new-knext-eq '({mold} {thing}) '({modeling} {thing})) (new-knext-eq '({molding} {thing}) '({modeling} {thing})) (add-english-names (list {molding} {moulding}) (list "molding" "moulding")) (new-knext-eq '({molding} {thing}) '({modeling} {thing})) (new-knext-eq '({clay sculpture} {thing}) '({modeling} {thing})) (new-knext-eq '({morphia} {thing}) '({morphine} {thing})) (new-knext-eq '({motive} {thing}) '({motif} {thing})) (new-knext-eq '({bike} {thing}) '({motorcycle} {thing})) (new-knext-eq '({automotive vehicle} {thing}) '({motor vehicle} {thing})) (new-knext-eq '({mound} {thing}) '({hill} {thing})) (new-knext-eq '({needlecraft} {thing}) '({needlework} {thing})) (new-knext-eq '({neglige} {thing}) '({negligee} {thing})) (new-knext-eq '({peignoir} {thing}) '({negligee} {thing})) (new-knext-eq '({wrapper} {thing}) '({negligee} {thing})) (new-knext-eq '({housecoat} {thing}) '({negligee} {thing})) (new-knext-eq '({net} {thing}) '({meshwork} {thing})) (new-knext-eq '({network} {thing}) '({meshwork} {thing})) (new-knext-type {meshing} {uncountable}) (new-knext-type {meshwork} {uncountable}) (new-statement {meshing} {consists of} {meshwork}) (new-knext-is-a '({meshwork} {countable}) '({meshing} {uncountable})) (new-knext-eq '({slip noose} {thing}) '({running noose} {thing})) (new-knext-eq '({obstructor} {thing}) '({obstruction} {thing})) (new-knext-eq '({obstructer} {thing}) '({obstruction} {thing})) (new-knext-eq '({impediment} {thing}) '({obstruction} {thing})) (new-knext-eq '({impedimenta} {thing}) '({obstruction} {thing})) (new-knext-eq '({body of work} {thing}) '({oeuvre} {thing})) (new-knext-is-a '({oeuvre} {countable}) '({work} {uncountable})) (new-knext-type {work} {uncountable}) (new-knext-type {oeuvre} {uncountable}) (new-statement {work} {consists of} {oeuvre}) (new-knext-eq '({office block} {thing}) '({office building} {thing})) (new-knext-type {outfield} {countable}) (new-knext-type {infield} {countable}) (new-is-not-a {outfield} {infield}) (new-knext-eq '({outfit} {thing}) '({getup} {thing})) (new-knext-eq '({rig} {thing}) '({getup} {thing})) (new-knext-eq '({turnout} {thing}) '({getup} {thing})) (new-knext-eq '({outer garment} {thing}) '({overgarment} {thing})) (new-knext-type {overgarment} {countable}) (new-knext-type {undergarment} {countable}) (new-is-not-a {overgarment} {undergarment}) (new-knext-eq '({package} {thing}) '({parcel} {thing})) (new-knext-eq '({cushioning} {thing}) '({padding} {thing})) (new-knext-eq '({pigment} {thing}) '({paint} {thing})) (new-knext-eq '({picture} {thing}) '({painting} {thing})) (new-knext-eq '({alleviant} {thing}) '({palliative} {thing})) (new-knext-eq '({alleviator} {thing}) '({palliative} {thing})) (new-knext-eq '({trouser leg} {thing}) '({pant leg} {thing})) (new-knext-eq '({part} {thing}) '({portion} {thing})) (new-knext-eq '({divider} {thing}) '({partition} {thing})) (new-knext-eq '({pathway} {thing}) '({footpath} {thing})) (new-knext-eq '({terrace} {thing}) '({patio} {thing})) (new-knext-eq '({pedal} {thing}) '({treadle} {thing})) (new-knext-eq '({foot pedal} {thing}) '({treadle} {thing})) (new-knext-eq '({foot lever} {thing}) '({treadle} {thing})) (new-knext-eq '({percussive instrument} {thing}) '({percussion instrument} {thing})) (new-knext-eq '({essence} {thing}) '({perfume} {thing})) (new-knext-eq '({exposure} {thing}) '({photograph} {thing})) (new-knext-eq '({pic} {thing}) '({photograph} {thing})) (new-knext-eq '({image} {thing}) '({picture} {thing})) (new-knext-eq '({icon} {thing}) '({picture} {thing})) (new-knext-eq '({ikon} {thing}) '({picture} {thing})) (new-knext-eq '({piece of material} {thing}) '({piece of cloth} {thing})) (new-knext-eq '({lozenge} {thing}) '({pill} {thing})) (new-knext-eq '({tablet} {thing}) '({pill} {thing})) (new-knext-eq '({tab} {thing}) '({pill} {thing})) (new-knext-eq '({contraceptive pill} {thing}) '({birth control pill} {thing})) (new-knext-eq '({oral contraceptive pill} {thing}) '({birth control pill} {thing})) (new-knext-eq '({oral contraceptive} {thing}) '({birth control pill} {thing})) (new-knext-eq '({anovulatory drug} {thing}) '({birth control pill} {thing})) (new-knext-eq '({anovulant} {thing}) '({birth control pill} {thing})) (new-knext-eq '({pel} {thing}) '({pixel} {thing})) (new-knext-eq '({picture element} {thing}) '({pixel} {thing})) (new-knext-eq '({business establishment} {thing}) '({place of business} {thing})) (new-knext-eq '({house of prayer} {thing}) '({place of worship} {thing})) (new-knext-eq '({house of god} {thing}) '({place of worship} {thing})) (new-knext-eq '({house of worship} {thing}) '({place of worship} {thing})) (new-knext-eq '({works} {thing}) '({plant} {thing})) (new-knext-eq '({sticking plaster} {thing}) '({adhesive plaster} {thing})) (new-knext-eq '({sheet glass} {thing}) '({plate glass} {thing})) (new-knext-eq '({toy} {thing}) '({plaything} {thing})) (new-knext-eq '({perpendicular} {thing}) '({plumb line} {thing})) (new-knext-eq '({port} {thing}) '({embrasure} {thing})) (new-knext-eq '({porthole} {thing}) '({embrasure} {thing})) (new-knext-eq '({portrayal} {thing}) '({portrait} {thing})) (new-knext-eq '({pot} {thing}) '({dope} {thing})) (new-knext-eq '({grass} {thing}) '({dope} {thing})) (new-knext-eq '({weed} {thing}) '({dope} {thing})) (new-knext-eq '({sens} {thing}) '({dope} {thing})) (new-knext-eq '({smoke} {thing}) '({dope} {thing})) (new-knext-eq '({skunk} {thing}) '({dope} {thing})) (new-knext-eq '({locoweed} {thing}) '({dope} {thing})) (new-knext-eq '({mary jane} {thing}) '({dope} {thing})) (add-english-names (list {gauge} {gauge} {gage}) (list "gauge" "gauge" "gage")) (new-knext-eq '({gauge} {thing}) '({green goddess} {thing})) (new-knext-eq '({sess} {thing}) '({green goddess} {thing})) (new-knext-is-a '({green goddess} {countable}) '({dope} {uncountable})) (new-knext-type {dope} {uncountable}) (new-knext-type {green goddess} {uncountable}) (new-statement {dope} {consists of} {green goddess}) (new-knext-eq '({clayware} {thing}) '({pottery} {thing})) (new-knext-eq '({sawing machine} {thing}) '({power saw} {thing})) (new-knext-eq '({excavator} {thing}) '({power shovel} {thing})) (new-knext-eq '({digger} {thing}) '({power shovel} {thing})) (new-knext-eq '({prescription medicine} {thing}) '({prescription drug} {thing})) (new-knext-eq '({ethical drug} {thing}) '({prescription drug} {thing})) (new-knext-eq '({printer} {thing}) '({printing machine} {thing})) (new-knext-eq '({prod} {thing}) '({goad} {thing})) (new-knext-eq '({production} {thing}) '({product} {thing})) (new-knext-eq '({assembly line} {thing}) '({production line} {thing})) (new-knext-eq '({missile} {thing}) '({projectile} {thing})) (new-knext-eq '({propellor} {thing}) '({propeller} {thing})) (new-knext-is-a '({protective covering} {countable}) '({protection} {uncountable})) (new-knext-type {protection} {uncountable}) (new-knext-type {protective covering} {uncountable}) (new-statement {protection} {consists of} {protective covering}) (new-knext-eq '({saloon} {thing}) '({public house} {thing})) (new-knext-eq '({pothouse} {thing}) '({public house} {thing})) (new-knext-eq '({gin mill} {thing}) '({public house} {thing})) (new-knext-eq '({taphouse} {thing}) '({public house} {thing})) (new-knext-eq '({puncher} {thing}) '({punch} {thing})) (new-knext-eq '({racecourse} {thing}) '({racetrack} {thing})) (new-knext-eq '({raceway} {thing}) '({racetrack} {thing})) (new-knext-eq '({wheel} {thing}) '({rack} {thing})) (new-knext-eq '({racket} {thing}) '({racquet} {thing})) (new-knext-eq '({wireless} {thing}) '({radio} {thing})) (new-knext-eq '({receiving set} {thing}) '({radio receiver} {thing})) (new-knext-eq '({radio set} {thing}) '({radio receiver} {thing})) (new-knext-eq '({tuner} {thing}) '({radio receiver} {thing})) (new-knext-eq '({wireless} {thing}) '({radio receiver} {thing})) (new-knext-eq '({railway} {thing}) '({railroad track} {thing})) (new-knext-eq '({railroad} {thing}) '({railway} {thing})) (new-knext-eq '({railroad line} {thing}) '({railway} {thing})) (new-knext-eq '({incline} {thing}) '({ramp} {thing})) (new-knext-eq '({spread} {thing}) '({ranch} {thing})) (new-knext-eq '({cattle farm} {thing}) '({ranch} {thing})) (new-knext-eq '({rear} {thing}) '({back} {thing})) (new-knext-type {rear} {countable}) (new-knext-type {front} {countable}) (new-is-not-a {rear} {front}) (new-knext-eq '({recess} {thing}) '({niche} {thing})) (new-knext-eq '({recording machine} {thing}) '({recorder} {thing})) (new-knext-type {recorder} {countable}) (new-knext-type {recording equipment} {countable}) (new-statement {recording equipment} {consists of} {recorder}) (new-knext-type {recording equipment} {uncountable}) (new-knext-type {recorder} {uncountable}) (new-statement {recording equipment} {consists of} {recorder}) (new-knext-eq '({rv} {thing}) '({recreational vehicle} {thing})) (new-knext-eq '({reflexion} {thing}) '({reflection} {thing})) (new-knext-eq '({refuge} {thing}) '({asylum} {thing})) (new-knext-eq '({sanctuary} {thing}) '({asylum} {thing})) (new-knext-eq '({remedy} {thing}) '({cure} {thing})) (new-knext-eq '({therapeutic} {thing}) '({cure} {thing})) (new-knext-type {curative} {uncountable}) (new-knext-type {cure} {uncountable}) (new-statement {curative} {consists of} {cure}) (new-knext-is-a '({cure} {countable}) '({curative} {uncountable})) (new-knext-eq '({reproduction} {thing}) '({replica} {thing})) (new-knext-eq '({reservoir} {thing}) '({artificial lake} {thing})) (new-knext-eq '({resonating chamber} {thing}) '({resonator} {thing})) (new-knext-eq '({eating house} {thing}) '({restaurant} {thing})) (new-knext-eq '({eating place} {thing}) '({restaurant} {thing})) (new-knext-eq '({eatery} {thing}) '({restaurant} {thing})) (new-knext-eq '({restraint} {thing}) '({constraint} {thing})) (new-knext-eq '({rightfield} {thing}) '({right field} {thing})) (new-knext-eq '({band} {thing}) '({ring} {thing})) (new-knext-eq '({route} {thing}) '({road} {thing})) (new-knext-eq '({projectile} {thing}) '({rocket} {thing})) (new-knext-eq '({rocker} {thing}) '({rocking chair} {thing})) (new-knext-eq '({smoke} {thing}) '({roll of tobacco} {thing})) (new-knext-eq '({positioner} {thing}) '({rotary actuator} {thing})) (new-knext-eq '({paint} {thing}) '({rouge} {thing})) (new-knext-eq '({blusher} {thing}) '({rouge} {thing})) (new-knext-eq '({carpet} {thing}) '({rug} {thing})) (new-knext-eq '({carpeting} {thing}) '({rug} {thing})) (new-knext-eq '({stave} {thing}) '({rung} {thing})) (new-knext-eq '({canvas} {thing}) '({sail} {thing})) (new-knext-eq '({canvass} {thing}) '({sail} {thing})) (new-knext-eq '({sheet} {thing}) '({sail} {thing})) (new-knext-eq '({sailing ship} {thing}) '({sailing vessel} {thing})) (new-knext-eq '({beauty parlor} {thing}) '({beauty salon} {thing})) (new-knext-eq '({beauty parlour} {thing}) '({beauty salon} {thing})) (new-knext-eq '({beauty shop} {thing}) '({beauty salon} {thing})) (new-knext-eq '({orbiter} {thing}) '({satellite} {thing})) (new-knext-eq '({scale} {thing}) '({weighing machine} {thing})) (new-knext-eq '({straw man} {thing}) '({scarecrow} {thing})) (new-knext-eq '({strawman} {thing}) '({scarecrow} {thing})) (new-knext-eq '({scarer} {thing}) '({scarecrow} {thing})) (new-knext-eq '({view} {thing}) '({scene} {thing})) (new-knext-eq '({screen} {thing}) '({cover} {thing})) (new-knext-eq '({concealment} {thing}) '({cover} {thing})) (new-knext-is-a '({seating} {uncountable}) '({seats} {uncountable})) (new-knext-type {seating} {uncountable}) (new-knext-type {seating area} {uncountable}) (new-statement {seating} {consists of} {seating area}) (new-knext-is-a '({seats} {uncountable}) '({seating} {uncountable})) (new-knext-type {seats} {uncountable}) (new-knext-type {seating area} {uncountable}) (new-statement {seats} {consists of} {seating area}) (new-knext-is-a '({seating area} {countable}) '({seating} {uncountable})) (new-knext-type {seating area} {countable}) (new-knext-type {seats} {countable}) (new-statement {seats} {consists of} {seating area}) (new-knext-eq '({section} {thing}) '({segment} {thing})) (new-knext-eq '({security system} {thing}) '({security measure} {thing})) (new-knext-eq '({saloon} {thing}) '({sedan} {thing})) (new-knext-eq '({depressant} {thing}) '({sedative} {thing})) (new-knext-eq '({downer} {thing}) '({sedative} {thing})) (new-knext-eq '({sewing} {thing}) '({stitchery} {thing})) (new-knext-eq '({bond} {thing}) '({shackle} {thing})) (new-knext-eq '({hamper} {thing}) '({shackle} {thing})) (new-knext-eq '({trammel} {thing}) '({shackle} {thing})) (new-knext-eq '({shaper} {thing}) '({shaping machine} {thing})) (new-knext-eq '({sherd} {thing}) '({shard} {thing})) (new-knext-eq '({fragment} {thing}) '({shard} {thing})) (new-knext-eq '({sheet} {thing}) '({flat solid} {thing})) (new-knext-eq '({store} {thing}) '({shop} {thing})) (new-knext-eq '({shorts} {thing}) '({short pants} {thing})) (new-knext-eq '({trunks} {thing}) '({short pants} {thing})) (new-knext-eq '({shoulder} {thing}) '({berm} {thing})) (new-knext-is-a '({sidewalk} {countable}) '({pavement} {uncountable})) (new-knext-type {pavement} {uncountable}) (new-knext-type {sidewalk} {uncountable}) (new-statement {pavement} {consists of} {sidewalk}) (new-knext-eq '({screen} {thing}) '({sieve} {thing})) (new-knext-eq '({ski lift} {thing}) '({ski tow} {thing})) (new-knext-eq '({lift} {thing}) '({ski tow} {thing})) (new-knext-eq '({arm} {thing}) '({sleeve} {thing})) (new-knext-eq '({sliding board} {thing}) '({playground slide} {thing})) (new-knext-eq '({couch} {thing}) '({sofa} {thing})) (new-knext-eq '({lounge} {thing}) '({sofa} {thing})) (new-knext-eq '({spear} {thing}) '({fizgig} {thing})) (new-knext-eq '({fishgig} {thing}) '({fizgig} {thing})) (new-knext-eq '({lance} {thing}) '({fizgig} {thing})) (new-knext-eq '({specs} {thing}) '({spectacles} {thing})) (new-knext-eq '({eyeglasses} {thing}) '({spectacles} {thing})) (new-knext-eq '({glasses} {thing}) '({spectacles} {thing})) (new-knext-eq '({horse barn} {thing}) '({stable} {thing})) (new-knext-type {stable} {countable}) (new-knext-type {stalls} {countable}) (new-statement {stalls} {consists of} {stable}) (new-knext-type {stalls} {uncountable}) (new-knext-type {stable} {uncountable}) (new-statement {stalls} {consists of} {stable}) (new-knext-eq '({bowl} {thing}) '({stadium} {thing})) (new-knext-eq '({arena} {thing}) '({stadium} {thing})) (new-knext-eq '({staircase} {thing}) '({stairway} {thing})) (new-knext-eq '({stall} {thing}) '({sales booth} {thing})) (new-knext-eq '({stand} {thing}) '({sales booth} {thing})) (new-knext-type {starboard} {countable}) (new-knext-type {larboard} {countable}) (new-is-not-a {starboard} {larboard}) (new-knext-eq '({steamer} {thing}) '({steamship} {thing})) (new-knext-eq '({step} {thing}) '({stair} {thing})) (new-knext-eq '({joystick} {thing}) '({control stick} {thing})) (new-knext-eq '({excitant} {thing}) '({stimulant drug} {thing})) (new-knext-is-a '({stock} {uncountable}) '({inventory} {uncountable})) (new-knext-is-a '({inventory} {uncountable}) '({stock} {uncountable})) (new-knext-eq '({depot} {thing}) '({storehouse} {thing})) (new-knext-eq '({entrepot} {thing}) '({storehouse} {thing})) (new-knext-is-a '({storehouse} {countable}) '({storage} {uncountable})) (new-knext-type {storage} {uncountable}) (new-knext-type {storehouse} {uncountable}) (new-statement {storage} {consists of} {storehouse}) (new-knext-eq '({range} {thing}) '({stove} {thing})) (new-knext-eq '({kitchen range} {thing}) '({stove} {thing})) (new-knext-eq '({tram} {thing}) '({streetcar} {thing})) (new-knext-eq '({tramcar} {thing}) '({streetcar} {thing})) (new-knext-eq '({trolley} {thing}) '({streetcar} {thing})) (new-knext-eq '({trolley car} {thing}) '({streetcar} {thing})) (new-knext-eq '({reinforcement} {thing}) '({strengthener} {thing})) (new-knext-eq '({twine} {thing}) '({string} {thing})) (new-knext-eq '({slip} {thing}) '({strip} {thing})) (new-knext-eq '({construction} {thing}) '({structure} {thing})) (new-knext-eq '({subject} {thing}) '({depicted object} {thing})) (new-knext-eq '({content} {thing}) '({depicted object} {thing})) (new-knext-type {suite} {countable}) (new-knext-type {rooms} {countable}) (new-statement {rooms} {consists of} {suite}) (new-knext-type {rooms} {uncountable}) (new-knext-type {suite} {uncountable}) (new-statement {rooms} {consists of} {suite}) (new-knext-eq '({sum} {thing}) '({total} {thing})) (new-knext-eq '({totality} {thing}) '({total} {thing})) (new-knext-eq '({aggregate} {thing}) '({total} {thing})) (new-knext-eq '({wrapping} {thing}) '({swathe} {thing})) (new-knext-eq '({jumper} {thing}) '({sweater} {thing})) (new-knext-eq '({blade} {thing}) '({sword} {thing})) (new-knext-eq '({brand} {thing}) '({sword} {thing})) (new-knext-eq '({steel} {thing}) '({sword} {thing})) (new-knext-eq '({armored combat vehicle} {thing}) '({tank} {thing})) (new-knext-eq '({armoured combat vehicle} {thing}) '({tank} {thing})) (new-knext-eq '({taping} {thing}) '({tape recording} {thing})) (new-knext-eq '({tape measure} {thing}) '({tapeline} {thing})) (new-knext-eq '({telephone circuit} {thing}) '({phone line} {thing})) (new-knext-eq '({subscriber line} {thing}) '({phone line} {thing})) (new-knext-eq '({television set} {thing}) '({television receiver} {thing})) (new-knext-eq '({tv} {thing}) '({television receiver} {thing})) (new-knext-eq '({tv set} {thing}) '({television receiver} {thing})) (new-knext-eq '({idiot box} {thing}) '({television receiver} {thing})) (new-knext-eq '({boob tube} {thing}) '({television receiver} {thing})) (new-knext-eq '({telly} {thing}) '({television receiver} {thing})) (new-knext-eq '({goggle box} {thing}) '({television receiver} {thing})) (new-knext-eq '({collapsible shelter} {thing}) '({tent} {thing})) (add-english-names (list {theater} {theatre} {theatre}) (list "theater" "theatre" "theatre")) (new-knext-eq '({theater} {thing}) '({theater} {thing})) (new-knext-eq '({yarn} {thing}) '({thread} {thing})) (new-knext-eq '({timekeeper} {thing}) '({timepiece} {thing})) (new-knext-eq '({horologe} {thing}) '({timepiece} {thing})) (new-knext-eq '({tin foil} {thing}) '({tinfoil} {thing})) (add-english-names (list {tire} {tyre}) (list "tire" "tyre")) (new-knext-eq '({baccy} {thing}) '({tobacco} {thing})) (new-knext-eq '({lavatory} {thing}) '({toilet} {thing})) (new-knext-eq '({lav} {thing}) '({toilet} {thing})) (new-knext-eq '({can} {thing}) '({toilet} {thing})) (new-knext-eq '({john} {thing}) '({toilet} {thing})) (new-knext-eq '({privy} {thing}) '({toilet} {thing})) (new-knext-eq '({bathroom} {thing}) '({toilet} {thing})) (new-knext-eq '({toilet articles} {thing}) '({toiletry} {thing})) (new-knext-eq '({top} {thing}) '({cover} {thing})) (new-knext-eq '({top} {thing}) '({whirligig} {thing})) (new-knext-eq '({teetotum} {thing}) '({whirligig} {thing})) (new-knext-eq '({spinning top} {thing}) '({whirligig} {thing})) (new-knext-eq '({tormentor} {thing}) '({tormenter} {thing})) (new-knext-eq '({teaser} {thing}) '({tormenter} {thing})) (new-knext-eq '({trace} {thing}) '({tracing} {thing})) (new-knext-eq '({track} {thing}) '({runway} {thing})) (new-knext-eq '({rail} {thing}) '({runway} {thing})) (new-knext-type {rails} {uncountable}) (new-knext-type {runway} {uncountable}) (new-statement {rails} {consists of} {runway}) (new-knext-type {runway} {countable}) (new-knext-type {rails} {countable}) (new-statement {rails} {consists of} {runway}) (new-knext-eq '({transit} {thing}) '({transportation} {thing})) (new-knext-is-a '({transportation system} {countable}) '({transportation} {uncountable})) (new-knext-type {transportation} {uncountable}) (new-knext-type {transportation system} {uncountable}) (new-statement {transportation} {consists of} {transportation system}) (new-knext-eq '({prize} {thing}) '({trophy} {thing})) (new-knext-eq '({vat} {thing}) '({tub} {thing})) (new-knext-eq '({tubing} {thing}) '({tube} {thing})) (new-knext-eq '({unmentionable} {thing}) '({undergarment} {thing})) (new-knext-type {undergarment} {countable}) (new-knext-type {overgarment} {countable}) (new-is-not-a {undergarment} {overgarment}) (new-knext-eq '({underclothes} {thing}) '({underwear} {thing})) (new-knext-is-a '({underwear} {uncountable}) '({underclothing} {uncountable})) (new-knext-is-a '({underclothing} {uncountable}) '({underwear} {uncountable})) (new-knext-eq '({upset} {thing}) '({swage} {thing})) (new-knext-eq '({long horse} {thing}) '({vaulting horse} {thing})) (new-knext-eq '({buck} {thing}) '({vaulting horse} {thing})) (new-knext-eq '({ventilating system} {thing}) '({ventilation system} {thing})) (new-knext-type {ventilation} {uncountable}) (new-knext-type {ventilation system} {uncountable}) (new-statement {ventilation} {consists of} {ventilation system}) (new-knext-is-a '({ventilation system} {countable}) '({ventilation} {uncountable})) (new-knext-eq '({watercraft} {thing}) '({vessel} {thing})) (new-knext-eq '({waggon} {thing}) '({wagon} {thing})) (new-knext-eq '({paseo} {thing}) '({walkway} {thing})) (new-knext-eq '({wall plug} {thing}) '({wall socket} {thing})) (new-knext-eq '({electric outlet} {thing}) '({wall socket} {thing})) (new-knext-eq '({electrical outlet} {thing}) '({wall socket} {thing})) (new-knext-eq '({outlet} {thing}) '({wall socket} {thing})) (new-knext-eq '({electric receptacle} {thing}) '({wall socket} {thing})) (new-knext-eq '({closet} {thing}) '({wardrobe} {thing})) (new-knext-eq '({press} {thing}) '({wardrobe} {thing})) (new-knext-eq '({payload} {thing}) '({warhead} {thing})) (new-knext-eq '({load} {thing}) '({warhead} {thing})) (new-knext-eq '({war vessel} {thing}) '({warship} {thing})) (new-knext-eq '({combat ship} {thing}) '({warship} {thing})) (new-knext-eq '({washbowl} {thing}) '({washbasin} {thing})) (new-knext-eq '({washstand} {thing}) '({washbasin} {thing})) (new-knext-eq '({lavatory} {thing}) '({washbasin} {thing})) (new-knext-eq '({washing machine} {thing}) '({automatic washer} {thing})) (new-knext-eq '({ticker} {thing}) '({watch} {thing})) (new-knext-eq '({water tap} {thing}) '({water faucet} {thing})) (new-knext-eq '({tap} {thing}) '({water faucet} {thing})) (new-knext-eq '({hydrant} {thing}) '({water faucet} {thing})) (new-knext-eq '({watering pot} {thing}) '({watering can} {thing})) (new-knext-eq '({sea scooter} {thing}) '({water scooter} {thing})) (new-knext-eq '({water system} {thing}) '({water supply} {thing})) (new-knext-is-a '({water supply} {countable}) '({water} {uncountable})) (new-knext-type {water} {uncountable}) (new-knext-type {water supply} {uncountable}) (new-statement {water} {consists of} {water supply}) (new-knext-eq '({arm} {thing}) '({weapon} {thing})) (new-knext-eq '({arms} {thing}) '({weaponry} {thing})) (new-knext-eq '({implements of war} {thing}) '({weaponry} {thing})) (new-knext-eq '({munition} {thing}) '({weaponry} {thing})) (new-knext-eq '({exercising weight} {thing}) '({free weight} {thing})) (new-knext-eq '({windscreen wiper} {thing}) '({windshield wiper} {thing})) (new-knext-eq '({wiper blade} {thing}) '({windshield wiper} {thing})) (new-knext-eq '({contact arm} {thing}) '({wiper arm} {thing})) (new-knext-eq '({woolen} {thing}) '({wool} {thing})) (add-english-names (list {woolen} {woollen} {woollen}) (list "woolen" "woollen" "woollen")) (new-knext-type {wool} {uncountable}) (new-knext-type {woolen} {uncountable}) (new-statement {wool} {consists of} {woolen}) (add-english-names (list {woolen} {woollen} {woollen}) (list "woolen" "woollen" "woollen")) (new-knext-eq '({work bench} {thing}) '({workbench} {thing})) (new-knext-eq '({wrapper} {thing}) '({wrap} {thing})) (new-knext-eq '({wrap} {thing}) '({wrapping} {thing})) (new-knext-eq '({wrapper} {thing}) '({wrapping} {thing})) (new-knext-eq '({yard} {thing}) '({curtilage} {thing})) (new-knext-eq '({grounds} {thing}) '({curtilage} {thing})) (new-knext-eq '({railyard} {thing}) '({railway yard} {thing})) (new-knext-eq '({yield} {thing}) '({fruit} {thing})) (new-knext-eq '({individuality} {thing}) '({identity} {thing})) (new-knext-eq '({fiber} {thing}) '({character} {thing})) (add-english-names (list {fiber} {fibre}) (list "fiber" "fibre")) (new-knext-eq '({fiber} {thing}) '({character} {thing})) (new-knext-eq '({privateness} {thing}) '({privacy} {thing})) (new-knext-eq '({seclusion} {thing}) '({privacy} {thing})) (new-knext-eq '({temperament} {thing}) '({disposition} {thing})) (new-knext-eq '({spirit} {thing}) '({heart} {thing})) (new-knext-eq '({morale} {thing}) '({esprit de corps} {thing})) (new-knext-eq '({team spirit} {thing}) '({esprit de corps} {thing})) (new-knext-eq '({emotionalism} {thing}) '({emotionality} {thing})) (new-knext-type {emotionality} {countable}) (new-knext-type {unemotionality} {uncountable}) (new-is-not-a {emotionality} {unemotionality}) (new-knext-eq '({heat} {thing}) '({passion} {thing})) (new-knext-eq '({warmth} {thing}) '({passion} {thing})) (new-knext-eq '({emotionlessness} {thing}) '({unemotionality} {thing})) (new-knext-type {unemotionality} {uncountable}) (new-knext-type {emotionality} {countable}) (new-is-not-a {unemotionality} {emotionality}) (new-knext-eq '({coolness} {thing}) '({coldness} {thing})) (new-knext-eq '({frigidity} {thing}) '({coldness} {thing})) (new-knext-eq '({frigidness} {thing}) '({coldness} {thing})) (new-knext-eq '({iciness} {thing}) '({coldness} {thing})) (new-knext-eq '({chilliness} {thing}) '({coldness} {thing})) (new-knext-eq '({cheer} {thing}) '({cheerfulness} {thing})) (new-knext-eq '({sunniness} {thing}) '({cheerfulness} {thing})) (new-knext-eq '({sunshine} {thing}) '({cheerfulness} {thing})) (new-knext-type {cheerfulness} {uncountable}) (new-knext-type {uncheerfulness} {uncountable}) (new-is-not-a {cheerfulness} {uncheerfulness}) (new-knext-eq '({activity} {thing}) '({activeness} {thing})) (new-knext-type {activeness} {uncountable}) (new-knext-type {inactiveness} {uncountable}) (new-is-not-a {activeness} {inactiveness}) (new-knext-eq '({inactiveness} {thing}) '({inertia} {thing})) (new-knext-eq '({inactivity} {thing}) '({inertia} {thing})) (new-knext-type {inactiveness} {uncountable}) (new-knext-type {activeness} {uncountable}) (new-is-not-a {inactiveness} {activeness}) (new-knext-eq '({sufferance} {thing}) '({toleration} {thing})) (new-knext-type {toleration} {uncountable}) (new-knext-type {acceptance} {uncountable}) (new-statement {toleration} {consists of} {acceptance}) (new-knext-is-a '({acceptance} {countable}) '({toleration} {uncountable})) (new-knext-eq '({grace} {thing}) '({good will} {thing})) (new-knext-eq '({goodwill} {thing}) '({good will} {thing})) (new-knext-eq '({forbearance} {thing}) '({patience} {thing})) (new-knext-eq '({longanimity} {thing}) '({patience} {thing})) (new-knext-type {patience} {uncountable}) (new-knext-type {impatience} {uncountable}) (new-is-not-a {patience} {impatience}) (new-knext-eq '({hesitancy} {thing}) '({reluctance} {thing})) (new-knext-eq '({hesitation} {thing}) '({reluctance} {thing})) (new-knext-eq '({disinclination} {thing}) '({reluctance} {thing})) (new-knext-eq '({indisposition} {thing}) '({reluctance} {thing})) (new-knext-eq '({gravity} {thing}) '({graveness} {thing})) (new-knext-eq '({sobriety} {thing}) '({graveness} {thing})) (new-knext-eq '({soberness} {thing}) '({graveness} {thing})) (new-knext-eq '({somberness} {thing}) '({graveness} {thing})) (add-english-names (list {somberness} {sombreness}) (list "somberness" "sombreness")) (new-knext-eq '({somberness} {thing}) '({graveness} {thing})) (add-english-names (list {humor} {humour}) (list "humor" "humour")) (new-knext-eq '({humor} {thing}) '({sense of humor} {thing})) (new-knext-eq '({sense of humour} {thing}) '({sense of humor} {thing})) (new-knext-type {communicativeness} {uncountable}) (new-knext-type {uncommunicativeness} {uncountable}) (new-is-not-a {communicativeness} {uncommunicativeness}) (new-knext-type {uncommunicativeness} {uncountable}) (new-knext-type {communicativeness} {uncountable}) (new-is-not-a {uncommunicativeness} {communicativeness}) (new-knext-eq '({secretiveness} {thing}) '({secrecy} {thing})) (new-knext-eq '({silence} {thing}) '({secrecy} {thing})) (new-knext-eq '({reserve} {thing}) '({reticence} {thing})) (new-knext-eq '({taciturnity} {thing}) '({reticence} {thing})) (new-knext-type {attentiveness} {uncountable}) (new-knext-type {inattentiveness} {uncountable}) (new-is-not-a {attentiveness} {inattentiveness}) (new-knext-type {carefulness} {uncountable}) (new-knext-type {carelessness} {uncountable}) (new-is-not-a {carefulness} {carelessness}) (new-knext-eq '({sloppiness} {thing}) '({carelessness} {thing})) (new-knext-type {carelessness} {uncountable}) (new-knext-type {carefulness} {uncountable}) (new-is-not-a {carelessness} {carefulness}) (new-knext-eq '({negligence} {thing}) '({neglectfulness} {thing})) (new-knext-eq '({neglect} {thing}) '({neglectfulness} {thing})) (new-knext-eq '({unconcern} {thing}) '({nonchalance} {thing})) (new-knext-eq '({indifference} {thing}) '({nonchalance} {thing})) (new-knext-eq '({visual aspect} {thing}) '({appearance} {thing})) (add-english-names (list {color} {colour}) (list "color" "colour")) (new-knext-eq '({effect} {thing}) '({impression} {thing})) (new-knext-eq '({form} {thing}) '({cast} {thing})) (new-knext-eq '({shape} {thing}) '({cast} {thing})) (new-knext-eq '({visage} {thing}) '({countenance} {thing})) (new-knext-eq '({look} {thing}) '({expression} {thing})) (new-knext-eq '({aspect} {thing}) '({expression} {thing})) (new-knext-eq '({face} {thing}) '({expression} {thing})) (new-knext-type {beauty} {uncountable}) (new-knext-type {ugliness} {uncountable}) (new-is-not-a {beauty} {ugliness}) (new-knext-eq '({glory} {thing}) '({resplendence} {thing})) (new-knext-type {resplendence} {uncountable}) (new-knext-type {resplendency} {uncountable}) (new-statement {resplendence} {consists of} {resplendency}) (new-knext-is-a '({resplendency} {countable}) '({resplendence} {uncountable})) (new-knext-eq '({appeal} {thing}) '({appealingness} {thing})) (new-knext-eq '({charm} {thing}) '({appealingness} {thing})) (new-knext-eq '({attraction} {thing}) '({attractiveness} {thing})) (new-knext-type {ugliness} {uncountable}) (new-knext-type {beauty} {uncountable}) (new-is-not-a {ugliness} {beauty}) (new-knext-eq '({defect} {thing}) '({blemish} {thing})) (new-knext-eq '({mar} {thing}) '({blemish} {thing})) (new-knext-eq '({scrape} {thing}) '({scar} {thing})) (new-knext-eq '({smudge} {thing}) '({blot} {thing})) (new-knext-eq '({spot} {thing}) '({blot} {thing})) (new-knext-eq '({daub} {thing}) '({blot} {thing})) (new-knext-eq '({smear} {thing}) '({blot} {thing})) (new-knext-eq '({smirch} {thing}) '({blot} {thing})) (new-knext-eq '({slur} {thing}) '({blot} {thing})) (new-knext-eq '({discoloration} {thing}) '({stain} {thing})) (add-english-names (list {discoloration} {discolouration}) (list "discoloration" "discolouration")) (new-knext-eq '({discoloration} {thing}) '({stain} {thing})) (new-knext-eq '({coating} {thing}) '({finish} {thing})) (new-knext-eq '({finishing} {thing}) '({finish} {thing})) (new-knext-eq '({easiness} {thing}) '({ease} {thing})) (new-knext-eq '({simplicity} {thing}) '({ease} {thing})) (new-knext-eq '({simpleness} {thing}) '({ease} {thing})) (new-knext-type {ease} {uncountable}) (new-knext-type {difficulty} {uncountable}) (new-is-not-a {ease} {difficulty}) (new-knext-eq '({difficulty} {thing}) '({difficultness} {thing})) (new-knext-type {difficulty} {uncountable}) (new-knext-type {ease} {uncountable}) (new-is-not-a {difficulty} {ease}) (new-knext-eq '({grimness} {thing}) '({asperity} {thing})) (new-knext-eq '({rigor} {thing}) '({asperity} {thing})) (new-knext-eq '({severity} {thing}) '({asperity} {thing})) (new-knext-eq '({severeness} {thing}) '({asperity} {thing})) (new-knext-eq '({rigorousness} {thing}) '({asperity} {thing})) (new-knext-eq '({rigourousness} {thing}) '({asperity} {thing})) (add-english-names (list {rigor} {rigour}) (list "rigor" "rigour")) (new-knext-eq '({rigor} {thing}) '({hardship} {thing})) (new-knext-type {asperity} {uncountable}) (new-knext-type {hardship} {uncountable}) (new-statement {asperity} {consists of} {hardship}) (new-knext-is-a '({hardship} {countable}) '({asperity} {uncountable})) (new-knext-eq '({niceness} {thing}) '({subtlety} {thing})) (new-knext-type {compatibility} {uncountable}) (new-knext-type {incompatibility} {uncountable}) (new-is-not-a {compatibility} {incompatibility}) (new-knext-is-a '({harmony} {countable}) '({harmoniousness} {uncountable})) (new-knext-type {harmoniousness} {uncountable}) (new-knext-type {harmony} {uncountable}) (new-statement {harmoniousness} {consists of} {harmony}) (new-knext-eq '({correspondence} {thing}) '({agreement} {thing})) (new-knext-type {incompatibility} {uncountable}) (new-knext-type {compatibility} {uncountable}) (new-is-not-a {incompatibility} {compatibility}) (new-knext-eq '({making} {thing}) '({qualification} {thing})) (new-knext-eq '({humanity} {thing}) '({humanness} {thing})) (new-knext-eq '({manhood} {thing}) '({humanness} {thing})) (new-knext-eq '({aura} {thing}) '({air} {thing})) (new-knext-eq '({atmosphere} {thing}) '({air} {thing})) (new-knext-eq '({quality} {thing}) '({caliber} {thing})) (add-english-names (list {caliber} {calibre}) (list "caliber" "calibre")) (new-knext-type {sameness} {uncountable}) (new-knext-type {difference} {uncountable}) (new-is-not-a {sameness} {difference}) (new-knext-eq '({indistinguishability} {thing}) '({identicalness} {thing})) (new-knext-is-a '({identity} {countable}) '({identicalness} {uncountable})) (new-knext-type {identicalness} {uncountable}) (new-knext-type {identity} {uncountable}) (new-statement {identicalness} {consists of} {identity}) (new-knext-type {similarity} {uncountable}) (new-knext-type {dissimilarity} {uncountable}) (new-is-not-a {similarity} {dissimilarity}) (add-english-names (list {analog} {analogue} {analogue}) (list "analog" "analogue" "analogue")) (new-knext-eq '({analog} {thing}) '({analog} {thing})) (add-english-names (list {analog} {analogue} {analogue}) (list "analog" "analogue" "analogue")) (new-knext-eq '({parallel} {thing}) '({analog} {thing})) (new-knext-type {difference} {uncountable}) (new-knext-type {sameness} {uncountable}) (new-is-not-a {difference} {sameness}) (new-knext-eq '({unsimilarity} {thing}) '({dissimilarity} {thing})) (new-knext-type {dissimilarity} {uncountable}) (new-knext-type {similarity} {uncountable}) (new-is-not-a {dissimilarity} {similarity}) (new-knext-eq '({multifariousness} {thing}) '({diverseness} {thing})) (new-knext-eq '({variety} {thing}) '({diversity} {thing})) (new-knext-type {diverseness} {uncountable}) (new-knext-type {diversity} {uncountable}) (new-statement {diverseness} {consists of} {diversity}) (new-knext-is-a '({diversity} {countable}) '({diverseness} {uncountable})) (new-knext-eq '({certainty} {thing}) '({sure thing} {thing})) (new-knext-eq '({foregone conclusion} {thing}) '({sure thing} {thing})) (new-knext-type {certainty} {countable}) (new-knext-type {uncertainty} {uncountable}) (new-is-not-a {certainty} {uncertainty}) (new-knext-type {probability} {uncountable}) (new-knext-type {improbability} {uncountable}) (new-is-not-a {probability} {improbability}) (new-knext-eq '({uncertainness} {thing}) '({uncertainty} {thing})) (new-knext-eq '({precariousness} {thing}) '({uncertainty} {thing})) (new-knext-type {uncertainty} {uncountable}) (new-knext-type {certainty} {countable}) (new-is-not-a {uncertainty} {certainty}) (new-knext-eq '({dubiousness} {thing}) '({doubt} {thing})) (new-knext-eq '({doubtfulness} {thing}) '({doubt} {thing})) (new-knext-type {doubt} {uncountable}) (new-knext-type {question} {uncountable}) (new-statement {doubt} {consists of} {question}) (new-knext-is-a '({question} {countable}) '({doubt} {uncountable})) (new-knext-eq '({materiality} {thing}) '({physicalness} {thing})) (new-knext-eq '({corporeality} {thing}) '({physicalness} {thing})) (new-knext-eq '({corporality} {thing}) '({physicalness} {thing})) (new-knext-type {materiality} {uncountable}) (new-knext-type {immateriality} {uncountable}) (new-is-not-a {materiality} {immateriality}) (new-knext-type {corporeality} {uncountable}) (new-knext-type {incorporeality} {uncountable}) (new-is-not-a {corporeality} {incorporeality}) (new-knext-eq '({simpleness} {thing}) '({simplicity} {thing})) (new-knext-type {simplicity} {uncountable}) (new-knext-type {complexity} {uncountable}) (new-is-not-a {simplicity} {complexity}) (new-knext-type {regularity} {uncountable}) (new-knext-type {irregularity} {countable}) (new-is-not-a {regularity} {irregularity}) (add-english-names (list {organization} {organisation} {organization} {organisation}) (list "organization" "organisation" "organization" "organisation")) (new-knext-eq '({organization} {thing}) '({organization} {thing})) (add-english-names (list {organization} {organisation} {organization} {organisation}) (list "organization" "organisation" "organization" "organisation")) (new-knext-eq '({system} {thing}) '({organization} {thing})) (new-knext-type {irregularity} {countable}) (new-knext-type {regularity} {uncountable}) (new-is-not-a {irregularity} {regularity}) (new-knext-is-a '({irregularity} {countable}) '({unregularity} {uncountable})) (new-knext-type {unregularity} {uncountable}) (new-knext-type {irregularity} {uncountable}) (new-statement {unregularity} {consists of} {irregularity}) (new-knext-eq '({fluctuation} {thing}) '({wavering} {thing})) (new-knext-eq '({randomness} {thing}) '({haphazardness} {thing})) (new-knext-eq '({stochasticity} {thing}) '({haphazardness} {thing})) (new-knext-eq '({noise} {thing}) '({haphazardness} {thing})) (new-knext-eq '({motive power} {thing}) '({locomotion} {thing})) (new-knext-eq '({motivity} {thing}) '({locomotion} {thing})) (new-knext-eq '({fixedness} {thing}) '({fastness} {thing})) (new-knext-eq '({fixity} {thing}) '({fastness} {thing})) (new-knext-eq '({fixture} {thing}) '({fastness} {thing})) (new-knext-eq '({secureness} {thing}) '({fastness} {thing})) (new-knext-type {fixedness} {uncountable}) (new-knext-type {looseness} {uncountable}) (new-is-not-a {fixedness} {looseness}) (add-english-names (list {lodgment} {lodgement} {lodgement}) (list "lodgment" "lodgement" "lodgement")) (new-knext-eq '({lodgment} {thing}) '({lodgment} {thing})) (new-knext-eq '({lodging} {thing}) '({lodgment} {thing})) (new-knext-eq '({credibleness} {thing}) '({credibility} {thing})) (new-knext-eq '({believability} {thing}) '({credibility} {thing})) (new-knext-type {credibility} {uncountable}) (new-knext-type {incredibility} {uncountable}) (new-is-not-a {credibility} {incredibility}) (new-knext-type {originality} {uncountable}) (new-knext-type {unoriginality} {uncountable}) (new-is-not-a {originality} {unoriginality}) (new-knext-eq '({unorthodoxy} {thing}) '({heterodoxy} {thing})) (new-knext-type {unorthodoxy} {uncountable}) (new-knext-type {orthodoxy} {uncountable}) (new-is-not-a {unorthodoxy} {orthodoxy}) (new-knext-type {unoriginality} {uncountable}) (new-knext-type {originality} {uncountable}) (new-is-not-a {unoriginality} {originality}) (new-knext-type {orthodoxy} {uncountable}) (new-knext-type {unorthodoxy} {uncountable}) (new-is-not-a {orthodoxy} {unorthodoxy}) (new-knext-eq '({conventionality} {thing}) '({conventionalism} {thing})) (new-knext-eq '({convention} {thing}) '({conventionalism} {thing})) (new-knext-type {conventionality} {countable}) (new-knext-type {unconventionality} {uncountable}) (new-is-not-a {conventionality} {unconventionality}) (new-knext-eq '({error} {thing}) '({erroneousness} {thing})) (new-knext-eq '({preciseness} {thing}) '({precision} {thing})) (new-knext-type {preciseness} {uncountable}) (new-knext-type {impreciseness} {uncountable}) (new-is-not-a {preciseness} {impreciseness}) (new-knext-type {precision} {uncountable}) (new-knext-type {imprecision} {uncountable}) (new-is-not-a {precision} {imprecision}) (new-knext-type {errancy} {uncountable}) (new-knext-type {inerrancy} {uncountable}) (new-is-not-a {errancy} {inerrancy}) (new-knext-eq '({merit} {thing}) '({deservingness} {thing})) (new-knext-eq '({meritoriousness} {thing}) '({deservingness} {thing})) (new-knext-type {popularity} {uncountable}) (new-knext-type {unpopularity} {uncountable}) (new-is-not-a {popularity} {unpopularity}) (new-knext-type {unpopularity} {uncountable}) (new-knext-type {popularity} {uncountable}) (new-is-not-a {unpopularity} {popularity}) (new-knext-type {legality} {uncountable}) (new-knext-type {illegality} {countable}) (new-is-not-a {legality} {illegality}) (new-knext-eq '({validity} {thing}) '({validness} {thing})) (new-knext-type {lawfulness} {uncountable}) (new-knext-type {unlawfulness} {uncountable}) (new-is-not-a {lawfulness} {unlawfulness}) (new-knext-type {illegality} {countable}) (new-knext-type {legality} {uncountable}) (new-is-not-a {illegality} {legality}) (new-knext-eq '({refinement} {thing}) '({civilization} {thing})) (add-english-names (list {civilization} {civilisation} {civilization} {civilisation}) (list "civilization" "civilisation" "civilization" "civilisation")) (new-knext-eq '({civilization} {thing}) '({civilization} {thing})) (new-knext-type {elegance} {uncountable}) (new-knext-type {inelegance} {uncountable}) (new-is-not-a {elegance} {inelegance}) (new-knext-eq '({panache} {thing}) '({dash} {thing})) (new-knext-eq '({flair} {thing}) '({elan} {thing})) (new-knext-eq '({style} {thing}) '({elan} {thing})) (new-knext-type {dash} {uncountable}) (new-knext-type {elan} {uncountable}) (new-statement {dash} {consists of} {elan}) (new-knext-is-a '({elan} {countable}) '({dash} {uncountable})) (new-knext-eq '({magnificence} {thing}) '({grandeur} {thing})) (new-knext-eq '({brilliance} {thing}) '({grandeur} {thing})) (new-knext-eq '({splendor} {thing}) '({grandeur} {thing})) (add-english-names (list {splendor} {splendour}) (list "splendor" "splendour")) (new-knext-eq '({splendor} {thing}) '({grandeur} {thing})) (new-knext-eq '({grandness} {thing}) '({grandeur} {thing})) (new-knext-type {inelegance} {uncountable}) (new-knext-type {elegance} {uncountable}) (new-is-not-a {inelegance} {elegance}) (new-knext-eq '({lucidity} {thing}) '({clarity} {thing})) (new-knext-eq '({lucidness} {thing}) '({clarity} {thing})) (new-knext-eq '({pellucidity} {thing}) '({clarity} {thing})) (new-knext-eq '({clearness} {thing}) '({clarity} {thing})) (new-knext-eq '({limpidity} {thing}) '({clarity} {thing})) (new-knext-type {clarity} {uncountable}) (new-knext-type {obscurity} {uncountable}) (new-is-not-a {clarity} {obscurity}) (new-knext-type {clearness} {uncountable}) (new-knext-type {unclearness} {uncountable}) (new-is-not-a {clearness} {unclearness}) (new-knext-eq '({ambiguity} {thing}) '({equivocalness} {thing})) (new-knext-type {ambiguity} {uncountable}) (new-knext-type {unambiguity} {countable}) (new-is-not-a {ambiguity} {unambiguity}) (new-knext-type {equivocalness} {uncountable}) (new-knext-type {unequivocalness} {countable}) (new-is-not-a {equivocalness} {unequivocalness}) (new-knext-type {righteousness} {uncountable}) (new-knext-type {unrighteousness} {uncountable}) (new-is-not-a {righteousness} {unrighteousness}) (new-knext-type {unrighteousness} {uncountable}) (new-knext-type {righteousness} {uncountable}) (new-is-not-a {unrighteousness} {righteousness}) (new-knext-eq '({pity} {thing}) '({compassion} {thing})) (new-knext-eq '({selflessness} {thing}) '({altruism} {thing})) (new-knext-type {altruism} {uncountable}) (new-knext-type {egoism} {uncountable}) (new-is-not-a {altruism} {egoism}) (new-knext-eq '({egoism} {thing}) '({egocentrism} {thing})) (new-knext-type {egoism} {uncountable}) (new-knext-type {altruism} {uncountable}) (new-is-not-a {egoism} {altruism}) (new-knext-eq '({ambition} {thing}) '({ambitiousness} {thing})) (new-knext-eq '({nerve} {thing}) '({boldness} {thing})) (new-knext-eq '({brass} {thing}) '({boldness} {thing})) (new-knext-eq '({cheek} {thing}) '({boldness} {thing})) (new-knext-eq '({thoughtfulness} {thing}) '({considerateness} {thing})) (new-knext-type {consideration} {countable}) (new-knext-type {inconsideration} {uncountable}) (new-is-not-a {consideration} {inconsideration}) (new-knext-type {thoughtfulness} {uncountable}) (new-knext-type {thoughtlessness} {uncountable}) (new-is-not-a {thoughtfulness} {thoughtlessness}) (new-knext-is-a '({consideration} {countable}) '({considerateness} {uncountable})) (new-knext-type {considerateness} {uncountable}) (new-knext-type {consideration} {uncountable}) (new-statement {considerateness} {consists of} {consideration}) (new-knext-eq '({bitchiness} {thing}) '({cattiness} {thing})) (new-knext-eq '({spite} {thing}) '({cattiness} {thing})) (new-knext-eq '({spitefulness} {thing}) '({cattiness} {thing})) (new-knext-eq '({nastiness} {thing}) '({cattiness} {thing})) (new-knext-type {morality} {uncountable}) (new-knext-type {immorality} {uncountable}) (new-is-not-a {morality} {immorality}) (new-knext-eq '({supernatural virtue} {thing}) '({theological virtue} {thing})) (new-knext-eq '({goodness} {thing}) '({good} {thing})) (new-knext-type {good} {uncountable}) (new-knext-type {evil} {uncountable}) (new-is-not-a {good} {evil}) (new-knext-type {goodness} {uncountable}) (new-knext-type {evilness} {uncountable}) (new-is-not-a {goodness} {evilness}) (new-knext-eq '({justness} {thing}) '({justice} {thing})) (new-knext-type {justice} {uncountable}) (new-knext-type {injustice} {uncountable}) (new-is-not-a {justice} {injustice}) (new-knext-type {right} {countable}) (new-knext-type {wrong} {countable}) (new-is-not-a {right} {wrong}) (new-knext-type {rightfulness} {uncountable}) (new-knext-type {wrongfulness} {uncountable}) (new-is-not-a {rightfulness} {wrongfulness}) (new-knext-is-a '({right} {countable}) '({rightfulness} {uncountable})) (new-knext-type {rightfulness} {uncountable}) (new-knext-type {right} {uncountable}) (new-statement {rightfulness} {consists of} {right}) (new-knext-type {immorality} {uncountable}) (new-knext-type {morality} {uncountable}) (new-is-not-a {immorality} {morality}) (new-knext-eq '({injustice} {thing}) '({unjustness} {thing})) (new-knext-type {injustice} {uncountable}) (new-knext-type {justice} {uncountable}) (new-is-not-a {injustice} {justice}) (new-knext-type {wrong} {countable}) (new-knext-type {right} {countable}) (new-is-not-a {wrong} {right}) (new-knext-type {wrongfulness} {uncountable}) (new-knext-type {rightfulness} {uncountable}) (new-is-not-a {wrongfulness} {rightfulness}) (new-knext-is-a '({wrong} {countable}) '({wrongfulness} {uncountable})) (new-knext-type {wrongfulness} {uncountable}) (new-knext-type {wrong} {uncountable}) (new-statement {wrongfulness} {consists of} {wrong}) (new-knext-eq '({courageousness} {thing}) '({courage} {thing})) (new-knext-eq '({bravery} {thing}) '({courage} {thing})) (new-knext-eq '({braveness} {thing}) '({courage} {thing})) (new-knext-type {courage} {uncountable}) (new-knext-type {cowardice} {uncountable}) (new-is-not-a {courage} {cowardice}) (new-knext-eq '({daring} {thing}) '({boldness} {thing})) (new-knext-eq '({hardiness} {thing}) '({boldness} {thing})) (new-knext-eq '({hardihood} {thing}) '({boldness} {thing})) (new-knext-type {boldness} {uncountable}) (new-knext-type {timidity} {uncountable}) (new-is-not-a {boldness} {timidity}) (new-knext-eq '({firmness} {thing}) '({resoluteness} {thing})) (new-knext-eq '({firmness of purpose} {thing}) '({resoluteness} {thing})) (new-knext-eq '({resolve} {thing}) '({resoluteness} {thing})) (new-knext-eq '({resolution} {thing}) '({resoluteness} {thing})) (new-knext-type {resoluteness} {uncountable}) (new-knext-type {irresoluteness} {uncountable}) (new-is-not-a {resoluteness} {irresoluteness}) (new-knext-eq '({perseverance} {thing}) '({doggedness} {thing})) (new-knext-eq '({persistence} {thing}) '({doggedness} {thing})) (new-knext-eq '({persistency} {thing}) '({doggedness} {thing})) (new-knext-eq '({tenacity} {thing}) '({doggedness} {thing})) (new-knext-eq '({tenaciousness} {thing}) '({doggedness} {thing})) (new-knext-eq '({pertinacity} {thing}) '({doggedness} {thing})) (new-knext-eq '({industry} {thing}) '({diligence} {thing})) (new-knext-is-a '({diligence} {countable}) '({industriousness} {uncountable})) (new-knext-type {industriousness} {uncountable}) (new-knext-type {diligence} {uncountable}) (new-statement {industriousness} {consists of} {diligence}) (new-knext-eq '({assiduousness} {thing}) '({assiduity} {thing})) (new-knext-eq '({concentration} {thing}) '({assiduity} {thing})) (new-knext-type {intentness} {uncountable}) (new-knext-type {engrossment} {uncountable}) (new-statement {intentness} {consists of} {engrossment}) (new-knext-is-a '({engrossment} {countable}) '({intentness} {uncountable})) (new-knext-eq '({irresolution} {thing}) '({irresoluteness} {thing})) (new-knext-type {irresoluteness} {uncountable}) (new-knext-type {resoluteness} {uncountable}) (new-is-not-a {irresoluteness} {resoluteness}) (add-english-names (list {honor} {honour}) (list "honor" "honour")) (new-knext-type {honor} {uncountable}) (new-knext-type {dishonor} {uncountable}) (new-is-not-a {honor} {dishonor}) (new-knext-eq '({trueness} {thing}) '({loyalty} {thing})) (new-knext-type {loyalty} {uncountable}) (new-knext-type {disloyalty} {uncountable}) (new-is-not-a {loyalty} {disloyalty}) (new-knext-eq '({nationalism} {thing}) '({patriotism} {thing})) (new-knext-type {discipline} {uncountable}) (new-knext-type {indiscipline} {uncountable}) (new-is-not-a {discipline} {indiscipline}) (new-knext-eq '({abstention} {thing}) '({abstinence} {thing})) (new-knext-eq '({control} {thing}) '({restraint} {thing})) (new-knext-type {restraint} {countable}) (new-knext-type {unrestraint} {uncountable}) (new-is-not-a {restraint} {unrestraint}) (new-knext-eq '({undiscipline} {thing}) '({indiscipline} {thing})) (new-knext-type {indiscipline} {uncountable}) (new-knext-type {discipline} {uncountable}) (new-is-not-a {indiscipline} {discipline}) (new-knext-eq '({haughtiness} {thing}) '({arrogance} {thing})) (new-knext-eq '({hauteur} {thing}) '({arrogance} {thing})) (new-knext-eq '({lordliness} {thing}) '({arrogance} {thing})) (new-knext-eq '({humbleness} {thing}) '({humility} {thing})) (new-knext-type {humility} {uncountable}) (new-knext-type {conceit} {uncountable}) (new-is-not-a {humility} {conceit}) (new-knext-eq '({wiseness} {thing}) '({wisdom} {thing})) (new-knext-type {wisdom} {uncountable}) (new-knext-type {folly} {uncountable}) (new-is-not-a {wisdom} {folly}) (new-knext-eq '({discernment} {thing}) '({discretion} {thing})) (new-knext-eq '({foolishness} {thing}) '({folly} {thing})) (new-knext-eq '({unwiseness} {thing}) '({folly} {thing})) (new-knext-type {folly} {uncountable}) (new-knext-type {wisdom} {uncountable}) (new-is-not-a {folly} {wisdom}) (new-knext-eq '({absurdity} {thing}) '({fatuousness} {thing})) (new-knext-eq '({silliness} {thing}) '({fatuousness} {thing})) (new-knext-is-a '({fatuity} {countable}) '({fatuousness} {uncountable})) (new-knext-type {fatuousness} {uncountable}) (new-knext-type {fatuity} {uncountable}) (new-statement {fatuousness} {consists of} {fatuity}) (new-knext-eq '({judgement} {thing}) '({sound judgment} {thing})) (new-knext-eq '({sound judgement} {thing}) '({sound judgment} {thing})) (new-knext-is-a '({sound judgment} {countable}) '({perspicacity} {uncountable})) (new-knext-type {perspicacity} {uncountable}) (new-knext-type {sound judgment} {uncountable}) (new-statement {perspicacity} {consists of} {sound judgment}) (new-knext-eq '({economy} {thing}) '({thriftiness} {thing})) (new-knext-eq '({waste} {thing}) '({thriftlessness} {thing})) (new-knext-eq '({wastefulness} {thing}) '({thriftlessness} {thing})) (new-knext-eq '({trust} {thing}) '({trustingness} {thing})) (new-knext-eq '({trustfulness} {thing}) '({trustingness} {thing})) (new-knext-type {trust} {uncountable}) (new-knext-type {distrust} {uncountable}) (new-is-not-a {trust} {distrust}) (new-knext-eq '({disorderliness} {thing}) '({disarray} {thing})) (add-english-names (list {demeanor} {demeanour}) (list "demeanor" "demeanour")) (new-knext-eq '({behavior} {thing}) '({demeanor} {thing})) (add-english-names (list {behavior} {behaviour}) (list "behavior" "behaviour")) (new-knext-eq '({behavior} {thing}) '({demeanor} {thing})) (new-knext-eq '({conduct} {thing}) '({demeanor} {thing})) (new-knext-eq '({deportment} {thing}) '({demeanor} {thing})) (new-knext-eq '({calm} {thing}) '({composure} {thing})) (new-knext-eq '({calmness} {thing}) '({composure} {thing})) (new-knext-eq '({equanimity} {thing}) '({composure} {thing})) (new-knext-type {composure} {uncountable}) (new-knext-type {discomposure} {uncountable}) (new-is-not-a {composure} {discomposure}) (new-knext-type {discomposure} {uncountable}) (new-knext-type {composure} {uncountable}) (new-is-not-a {discomposure} {composure}) (new-knext-eq '({tractableness} {thing}) '({tractability} {thing})) (new-knext-eq '({flexibility} {thing}) '({tractability} {thing})) (new-knext-type {tractability} {uncountable}) (new-knext-type {intractability} {uncountable}) (new-is-not-a {tractability} {intractability}) (new-knext-type {obedience} {uncountable}) (new-knext-type {disobedience} {uncountable}) (new-is-not-a {obedience} {disobedience}) (new-knext-eq '({intractableness} {thing}) '({intractability} {thing})) (new-knext-type {intractability} {uncountable}) (new-knext-type {tractability} {uncountable}) (new-is-not-a {intractability} {tractability}) (new-knext-eq '({rebelliousness} {thing}) '({defiance} {thing})) (new-knext-eq '({bearing} {thing}) '({comportment} {thing})) (new-knext-eq '({presence} {thing}) '({comportment} {thing})) (new-knext-eq '({mien} {thing}) '({comportment} {thing})) (new-knext-eq '({symmetry} {thing}) '({isotropy} {thing})) (new-knext-type {isotropy} {uncountable}) (new-knext-type {anisotropy} {uncountable}) (new-is-not-a {isotropy} {anisotropy}) (new-knext-eq '({education} {thing}) '({training} {thing})) (new-knext-eq '({breeding} {thing}) '({training} {thing})) (new-knext-eq '({descent} {thing}) '({origin} {thing})) (new-knext-eq '({extraction} {thing}) '({origin} {thing})) (new-knext-eq '({mode} {thing}) '({manner} {thing})) (new-knext-eq '({style} {thing}) '({manner} {thing})) (new-knext-eq '({way} {thing}) '({manner} {thing})) (new-knext-eq '({fashion} {thing}) '({manner} {thing})) (new-knext-eq '({lifestyle} {thing}) '({life style} {thing})) (new-knext-eq '({modus vivendi} {thing}) '({life style} {thing})) (new-knext-eq '({constitution} {thing}) '({physical composition} {thing})) (new-knext-is-a '({physical composition} {countable}) '({makeup} {uncountable})) (new-knext-type {makeup} {uncountable}) (new-knext-type {physical composition} {uncountable}) (new-statement {makeup} {consists of} {physical composition}) (new-knext-eq '({adhesion} {thing}) '({adhesiveness} {thing})) (new-knext-eq '({adherence} {thing}) '({adhesiveness} {thing})) (new-knext-eq '({denseness} {thing}) '({density} {thing})) (new-knext-eq '({hungriness} {thing}) '({hunger} {thing})) (new-knext-eq '({thirst} {thing}) '({hunger} {thing})) (new-knext-eq '({thirstiness} {thing}) '({hunger} {thing})) (new-knext-eq '({light} {thing}) '({lightness} {thing})) (new-knext-eq '({radiance} {thing}) '({radiancy} {thing})) (new-knext-eq '({shine} {thing}) '({radiancy} {thing})) (new-knext-eq '({effulgence} {thing}) '({radiancy} {thing})) (new-knext-eq '({refulgence} {thing}) '({radiancy} {thing})) (new-knext-eq '({refulgency} {thing}) '({radiancy} {thing})) (new-knext-eq '({gloss} {thing}) '({polish} {thing})) (new-knext-eq '({glossiness} {thing}) '({polish} {thing})) (new-knext-eq '({burnish} {thing}) '({polish} {thing})) (add-english-names (list {color} {colour}) (list "color" "colour")) (add-english-names (list {coloring} {colouring}) (list "coloring" "colouring")) (new-knext-eq '({color} {thing}) '({coloring} {thing})) (new-knext-eq '({coloring} {thing}) '({color} {thing})) (new-knext-type {color} {countable}) (new-knext-type {colorlessness} {uncountable}) (new-is-not-a {color} {colorlessness}) (add-english-names (list {coloring} {colouring}) (list "coloring" "colouring")) (add-english-names (list {coloring} {colouring}) (list "coloring" "colouring")) (new-knext-type {coloring} {uncountable}) (new-knext-type {color} {uncountable}) (new-statement {coloring} {consists of} {color}) (add-english-names (list {colorlessness} {colourlessness}) (list "colorlessness" "colourlessness")) (new-knext-eq '({achromatism} {thing}) '({colorlessness} {thing})) (new-knext-eq '({achromaticity} {thing}) '({colorlessness} {thing})) (new-knext-type {colorlessness} {uncountable}) (new-knext-type {color} {countable}) (new-is-not-a {colorlessness} {color}) (new-knext-eq '({shade} {thing}) '({tint} {thing})) (new-knext-eq '({tincture} {thing}) '({tint} {thing})) (new-knext-eq '({tone} {thing}) '({tint} {thing})) (new-knext-eq '({ash gray} {thing}) '({ash grey} {thing})) (new-knext-eq '({silver} {thing}) '({ash grey} {thing})) (new-knext-eq '({silver grey} {thing}) '({ash grey} {thing})) (new-knext-eq '({silver gray} {thing}) '({ash grey} {thing})) (new-knext-eq '({redness} {thing}) '({red} {thing})) (new-knext-eq '({ruby} {thing}) '({crimson} {thing})) (new-knext-eq '({deep red} {thing}) '({crimson} {thing})) (new-knext-eq '({orange} {thing}) '({orangeness} {thing})) (new-knext-eq '({greenness} {thing}) '({green} {thing})) (new-knext-eq '({viridity} {thing}) '({green} {thing})) (new-knext-eq '({blueness} {thing}) '({blue} {thing})) (new-knext-eq '({navy} {thing}) '({dark blue} {thing})) (new-knext-eq '({navy blue} {thing}) '({dark blue} {thing})) (new-knext-eq '({lividity} {thing}) '({lividness} {thing})) (new-knext-eq '({luridness} {thing}) '({lividness} {thing})) (new-knext-eq '({pallidness} {thing}) '({lividness} {thing})) (new-knext-eq '({wanness} {thing}) '({lividness} {thing})) (new-knext-eq '({pallor} {thing}) '({paleness} {thing})) (new-knext-eq '({achromasia} {thing}) '({paleness} {thing})) (new-knext-type {lividness} {uncountable}) (new-knext-type {paleness} {uncountable}) (new-statement {lividness} {consists of} {paleness}) (new-knext-is-a '({paleness} {countable}) '({lividness} {uncountable})) (new-knext-eq '({smell} {thing}) '({odor} {thing})) (add-english-names (list {odor} {odour}) (list "odor" "odour")) (new-knext-eq '({scent} {thing}) '({odor} {thing})) (new-knext-eq '({aroma} {thing}) '({olfactory property} {thing})) (new-knext-is-a '({olfactory property} {countable}) '({odor} {uncountable})) (new-knext-is-a '({odor} {uncountable}) '({olfactory property} {countable})) (new-knext-eq '({redolence} {thing}) '({fragrancy} {thing})) (new-knext-eq '({sweetness} {thing}) '({fragrancy} {thing})) (new-knext-eq '({fragrance} {thing}) '({bouquet} {thing})) (new-knext-is-a '({bouquet} {countable}) '({fragrancy} {uncountable})) (new-knext-type {fragrancy} {uncountable}) (new-knext-type {bouquet} {uncountable}) (new-statement {fragrancy} {consists of} {bouquet}) (new-knext-type {sound} {uncountable}) (new-knext-type {silence} {uncountable}) (new-is-not-a {sound} {silence}) (new-knext-eq '({quiet} {thing}) '({silence} {thing})) (new-knext-type {silence} {uncountable}) (new-knext-type {sound} {uncountable}) (new-is-not-a {silence} {sound}) (new-knext-eq '({resonance} {thing}) '({plangency} {thing})) (new-knext-eq '({reverberance} {thing}) '({plangency} {thing})) (new-knext-eq '({ringing} {thing}) '({plangency} {thing})) (new-knext-eq '({sonorousness} {thing}) '({plangency} {thing})) (new-knext-eq '({sonority} {thing}) '({plangency} {thing})) (new-knext-eq '({vibrancy} {thing}) '({plangency} {thing})) (new-knext-eq '({volume} {thing}) '({intensity} {thing})) (new-knext-type {loudness} {uncountable}) (new-knext-type {softness} {uncountable}) (new-is-not-a {loudness} {softness}) (new-knext-type {loudness} {uncountable}) (new-knext-type {intensity} {uncountable}) (new-statement {loudness} {consists of} {intensity}) (new-knext-is-a '({intensity} {countable}) '({loudness} {uncountable})) (new-knext-eq '({fat} {thing}) '({fatness} {thing})) (new-knext-eq '({blubber} {thing}) '({fatness} {thing})) (new-knext-eq '({avoirdupois} {thing}) '({fatness} {thing})) (new-knext-type {fatness} {countable}) (new-knext-type {leanness} {uncountable}) (new-is-not-a {fatness} {leanness}) (new-knext-eq '({carriage} {thing}) '({posture} {thing})) (new-knext-eq '({bearing} {thing}) '({posture} {thing})) (new-knext-eq '({grace} {thing}) '({gracility} {thing})) (new-knext-eq '({sex} {thing}) '({gender} {thing})) (new-knext-is-a '({gender} {countable}) '({sexuality} {uncountable})) (new-knext-type {sexuality} {uncountable}) (new-knext-type {gender} {uncountable}) (new-statement {sexuality} {consists of} {gender}) (new-knext-eq '({reverberation} {thing}) '({echo} {thing})) (new-knext-eq '({sound reflection} {thing}) '({echo} {thing})) (new-knext-eq '({replication} {thing}) '({echo} {thing})) (new-knext-eq '({coldness} {thing}) '({frigidity} {thing})) (new-knext-eq '({frigidness} {thing}) '({frigidity} {thing})) (new-knext-eq '({cold} {thing}) '({low temperature} {thing})) (new-knext-type {coldness} {uncountable}) (new-knext-type {hotness} {uncountable}) (new-is-not-a {coldness} {hotness}) (new-knext-is-a '({low temperature} {countable}) '({frigidity} {uncountable})) (new-knext-is-a '({frigidity} {uncountable}) '({low temperature} {countable})) (new-knext-eq '({gelidity} {thing}) '({iciness} {thing})) (new-knext-is-a '({chill} {countable}) '({iciness} {uncountable})) (new-knext-is-a '({iciness} {uncountable}) '({chill} {countable})) (new-knext-eq '({heat} {thing}) '({hotness} {thing})) (new-knext-type {hotness} {uncountable}) (new-knext-type {coldness} {uncountable}) (new-is-not-a {hotness} {coldness}) (new-knext-is-a '({hotness} {uncountable}) '({high temperature} {countable})) (new-knext-is-a '({high temperature} {countable}) '({hotness} {uncountable})) (new-knext-eq '({brightness} {thing}) '({luminosity} {thing})) (new-knext-eq '({luminance} {thing}) '({brightness level} {thing})) (new-knext-eq '({luminousness} {thing}) '({brightness level} {thing})) (new-knext-eq '({light} {thing}) '({brightness level} {thing})) (new-knext-is-a '({luminosity} {uncountable}) '({brightness level} {countable})) (new-knext-is-a '({brightness level} {countable}) '({luminosity} {uncountable})) (new-knext-eq '({illumination} {thing}) '({illuminance} {thing})) (new-knext-type {strength} {uncountable}) (new-knext-type {weakness} {uncountable}) (new-is-not-a {strength} {weakness}) (new-knext-eq '({power} {thing}) '({might} {thing})) (new-knext-eq '({vigor} {thing}) '({heartiness} {thing})) (add-english-names (list {vigor} {vigour}) (list "vigor" "vigour")) (new-knext-eq '({vigor} {thing}) '({heartiness} {thing})) (new-knext-eq '({dynamism} {thing}) '({heartiness} {thing})) (new-knext-eq '({effectiveness} {thing}) '({potency} {thing})) (new-knext-eq '({strength} {thing}) '({potency} {thing})) (new-knext-eq '({valency} {thing}) '({valence} {thing})) (new-knext-eq '({force} {thing}) '({forcefulness} {thing})) (new-knext-eq '({strength} {thing}) '({forcefulness} {thing})) (new-knext-eq '({impulse} {thing}) '({momentum} {thing})) (add-english-names (list {vigor} {vigour}) (list "vigor" "vigour")) (new-knext-eq '({energy} {thing}) '({vigor} {thing})) (new-knext-eq '({zip} {thing}) '({vigor} {thing})) (add-english-names (list {vigor} {vigour}) (list "vigor" "vigour")) (add-english-names (list {vigor} {vigour}) (list "vigor" "vigour")) (new-knext-type {vigor} {uncountable}) (new-knext-type {vigor} {uncountable}) (new-statement {vigor} {consists of} {vigor}) (new-knext-eq '({intensity} {thing}) '({intensiveness} {thing})) (new-knext-type {weakness} {uncountable}) (new-knext-type {strength} {uncountable}) (new-is-not-a {weakness} {strength}) (new-knext-eq '({inanition} {thing}) '({slackness} {thing})) (new-knext-eq '({lassitude} {thing}) '({slackness} {thing})) (new-knext-eq '({lethargy} {thing}) '({slackness} {thing})) (new-knext-eq '({duration} {thing}) '({length} {thing})) (new-knext-eq '({lengthiness} {thing}) '({protraction} {thing})) (new-knext-eq '({continuation} {thing}) '({prolongation} {thing})) (new-knext-is-a '({prolongation} {countable}) '({protraction} {uncountable})) (new-knext-type {protraction} {uncountable}) (new-knext-type {prolongation} {uncountable}) (new-statement {protraction} {consists of} {prolongation}) (new-knext-eq '({speed} {thing}) '({swiftness} {thing})) (new-knext-eq '({fastness} {thing}) '({swiftness} {thing})) (new-knext-eq '({rate} {thing}) '({pace} {thing})) (new-knext-eq '({hastiness} {thing}) '({haste} {thing})) (new-knext-eq '({hurry} {thing}) '({haste} {thing})) (new-knext-eq '({hurriedness} {thing}) '({haste} {thing})) (new-knext-eq '({precipitation} {thing}) '({haste} {thing})) (new-knext-is-a '({spatial property} {countable}) '({spatiality} {uncountable})) (new-knext-is-a '({spatiality} {uncountable}) '({spatial property} {countable})) (new-knext-eq '({form} {thing}) '({shape} {thing})) (new-knext-eq '({configuration} {thing}) '({shape} {thing})) (new-knext-eq '({contour} {thing}) '({shape} {thing})) (new-knext-eq '({conformation} {thing}) '({shape} {thing})) (new-knext-eq '({symmetricalness} {thing}) '({symmetry} {thing})) (new-knext-eq '({balance} {thing}) '({correspondence} {thing})) (new-knext-type {symmetry} {uncountable}) (new-knext-type {asymmetry} {uncountable}) (new-is-not-a {symmetry} {asymmetry}) (new-knext-type {symmetry} {uncountable}) (new-knext-type {correspondence} {uncountable}) (new-statement {symmetry} {consists of} {correspondence}) (new-knext-is-a '({correspondence} {countable}) '({symmetry} {uncountable})) (new-knext-eq '({dissymmetry} {thing}) '({asymmetry} {thing})) (new-knext-eq '({imbalance} {thing}) '({asymmetry} {thing})) (new-knext-type {asymmetry} {uncountable}) (new-knext-type {symmetry} {uncountable}) (new-is-not-a {asymmetry} {symmetry}) (new-knext-eq '({tilt} {thing}) '({lean} {thing})) (new-knext-eq '({list} {thing}) '({lean} {thing})) (new-knext-eq '({inclination} {thing}) '({lean} {thing})) (new-knext-eq '({leaning} {thing}) '({lean} {thing})) (new-knext-eq '({slope} {thing}) '({gradient} {thing})) (new-knext-eq '({upgrade} {thing}) '({rising slope} {thing})) (new-knext-eq '({rise} {thing}) '({rising slope} {thing})) (new-knext-eq '({pitch} {thing}) '({rake} {thing})) (new-knext-eq '({slant} {thing}) '({rake} {thing})) (new-knext-eq '({curve} {thing}) '({curvature} {thing})) (new-knext-eq '({position} {thing}) '({spatial relation} {thing})) (new-knext-eq '({arrangement} {thing}) '({placement} {thing})) (new-knext-is-a '({composition} {countable}) '({composing} {uncountable})) (new-knext-type {composing} {uncountable}) (new-knext-type {composition} {uncountable}) (new-statement {composing} {consists of} {composition}) (new-knext-eq '({proportion} {thing}) '({proportionality} {thing})) (new-knext-eq '({balance} {thing}) '({proportionality} {thing})) (new-knext-eq '({position} {thing}) '({posture} {thing})) (new-knext-eq '({attitude} {thing}) '({posture} {thing})) (new-knext-type {spacing} {uncountable}) (new-knext-type {spatial arrangement} {uncountable}) (new-statement {spacing} {consists of} {spatial arrangement}) (new-knext-is-a '({spatial arrangement} {countable}) '({spacing} {uncountable})) (new-knext-eq '({spread} {thing}) '({scatter} {thing})) (new-knext-eq '({dimension} {thing}) '({proportion} {thing})) (new-knext-eq '({chance} {thing}) '({probability} {thing})) (new-knext-eq '({grade} {thing}) '({degree} {thing})) (new-knext-eq '({level} {thing}) '({degree} {thing})) (new-knext-eq '({bore} {thing}) '({caliber} {thing})) (new-knext-eq '({gauge} {thing}) '({caliber} {thing})) (add-english-names (list {caliber} {calibre}) (list "caliber" "calibre")) (new-knext-eq '({increase} {thing}) '({increment} {thing})) (new-knext-type {increase} {countable}) (new-knext-type {decrease} {countable}) (new-is-not-a {increase} {decrease}) (new-knext-eq '({decrease} {thing}) '({decrement} {thing})) (new-knext-type {decrease} {countable}) (new-knext-type {increase} {countable}) (new-is-not-a {decrease} {increase}) (new-knext-eq '({rise} {thing}) '({raise} {thing})) (new-knext-eq '({wage hike} {thing}) '({raise} {thing})) (new-knext-eq '({hike} {thing}) '({raise} {thing})) (new-knext-eq '({wage increase} {thing}) '({raise} {thing})) (new-knext-eq '({salary increase} {thing}) '({raise} {thing})) (new-knext-eq '({sufficiency} {thing}) '({adequacy} {thing})) (new-knext-type {sufficiency} {uncountable}) (new-knext-type {insufficiency} {uncountable}) (new-is-not-a {sufficiency} {insufficiency}) (new-knext-type {adequacy} {uncountable}) (new-knext-type {inadequacy} {uncountable}) (new-is-not-a {adequacy} {inadequacy}) (new-knext-eq '({insufficiency} {thing}) '({inadequacy} {thing})) (new-knext-eq '({deficiency} {thing}) '({inadequacy} {thing})) (new-knext-type {insufficiency} {uncountable}) (new-knext-type {sufficiency} {uncountable}) (new-is-not-a {insufficiency} {sufficiency}) (new-knext-type {inadequacy} {uncountable}) (new-knext-type {adequacy} {uncountable}) (new-is-not-a {inadequacy} {adequacy}) (new-knext-eq '({shortage} {thing}) '({deficit} {thing})) (new-knext-eq '({shortfall} {thing}) '({deficit} {thing})) (new-knext-eq '({moderateness} {thing}) '({moderation} {thing})) (new-knext-type {moderation} {uncountable}) (new-knext-type {immoderation} {countable}) (new-is-not-a {moderation} {immoderation}) (new-knext-eq '({surplus} {thing}) '({excess} {thing})) (new-knext-eq '({surplusage} {thing}) '({excess} {thing})) (new-knext-eq '({nimiety} {thing}) '({excess} {thing})) (new-knext-type {redundancy} {uncountable}) (new-knext-type {redundance} {uncountable}) (new-statement {redundancy} {consists of} {redundance}) (new-knext-is-a '({redundance} {countable}) '({redundancy} {uncountable})) (new-knext-eq '({figure} {thing}) '({number} {thing})) (new-knext-is-a '({preponderance} {countable}) '({prevalence} {uncountable})) (new-knext-type {prevalence} {uncountable}) (new-knext-type {preponderance} {uncountable}) (new-statement {prevalence} {consists of} {preponderance}) (new-knext-eq '({bulk} {thing}) '({majority} {thing})) (new-knext-type {majority} {countable}) (new-knext-type {minority} {countable}) (new-is-not-a {majority} {minority}) (new-knext-type {minority} {countable}) (new-knext-type {majority} {countable}) (new-is-not-a {minority} {majority}) (new-knext-eq '({bound} {thing}) '({limit} {thing})) (new-knext-eq '({boundary} {thing}) '({limit} {thing})) (new-knext-eq '({range} {thing}) '({scope} {thing})) (new-knext-eq '({reach} {thing}) '({scope} {thing})) (new-knext-eq '({orbit} {thing}) '({scope} {thing})) (new-knext-eq '({compass} {thing}) '({scope} {thing})) (new-knext-eq '({ambit} {thing}) '({scope} {thing})) (new-knext-eq '({expanse} {thing}) '({surface area} {thing})) (new-knext-is-a '({altitude} {countable}) '({height} {uncountable})) (new-knext-type {height} {uncountable}) (new-knext-type {altitude} {uncountable}) (new-statement {height} {consists of} {altitude}) (new-knext-eq '({extension} {thing}) '({prolongation} {thing})) (new-knext-is-a '({lengthiness} {uncountable}) '({prolongation} {countable})) (new-knext-is-a '({prolongation} {countable}) '({lengthiness} {uncountable})) (new-knext-eq '({breadth} {thing}) '({width} {thing})) (new-knext-eq '({tallness} {thing}) '({height} {thing})) (new-knext-type {worth} {uncountable}) (new-knext-type {worthlessness} {uncountable}) (new-is-not-a {worth} {worthlessness}) (new-knext-eq '({virtue} {thing}) '({merit} {thing})) (new-knext-type {merit} {countable}) (new-knext-type {demerit} {countable}) (new-is-not-a {merit} {demerit}) (new-knext-type {demerit} {countable}) (new-knext-type {merit} {countable}) (new-is-not-a {demerit} {merit}) (new-knext-is-a '({demerit} {countable}) '({fault} {uncountable})) (new-knext-type {fault} {uncountable}) (new-knext-type {demerit} {uncountable}) (new-statement {fault} {consists of} {demerit}) (new-knext-eq '({ineptitude} {thing}) '({worthlessness} {thing})) (new-knext-type {worthlessness} {uncountable}) (new-knext-type {worth} {uncountable}) (new-is-not-a {worthlessness} {worth}) (new-knext-eq '({welfare} {thing}) '({benefit} {thing})) (new-knext-eq '({reward} {thing}) '({advantage} {thing})) (new-knext-type {reward} {countable}) (new-knext-type {penalty} {countable}) (new-is-not-a {reward} {penalty}) (new-knext-eq '({badness} {thing}) '({bad} {thing})) (new-knext-type {bad} {uncountable}) (new-knext-type {good} {countable}) (new-is-not-a {bad} {good}) (new-knext-type {badness} {uncountable}) (new-knext-type {goodness} {uncountable}) (new-is-not-a {badness} {goodness}) (new-knext-eq '({price} {thing}) '({monetary value} {thing})) (new-knext-eq '({cost} {thing}) '({monetary value} {thing})) (new-knext-eq '({utility} {thing}) '({usefulness} {thing})) (new-knext-type {utility} {uncountable}) (new-knext-type {inutility} {uncountable}) (new-is-not-a {utility} {inutility}) (new-knext-type {usefulness} {uncountable}) (new-knext-type {uselessness} {uncountable}) (new-is-not-a {usefulness} {uselessness}) (new-knext-eq '({purpose} {thing}) '({function} {thing})) (new-knext-eq '({role} {thing}) '({function} {thing})) (new-knext-eq '({use} {thing}) '({function} {thing})) (new-knext-eq '({pragmatism} {thing}) '({realism} {thing})) (new-knext-eq '({competency} {thing}) '({competence} {thing})) (new-knext-type {competence} {uncountable}) (new-knext-type {incompetence} {uncountable}) (new-is-not-a {competence} {incompetence}) (new-knext-eq '({plus} {thing}) '({asset} {thing})) (new-knext-type {asset} {countable}) (new-knext-type {liability} {uncountable}) (new-is-not-a {asset} {liability}) (new-knext-eq '({help} {thing}) '({assistance} {thing})) (new-knext-is-a '({aid} {countable}) '({assistance} {uncountable})) (new-knext-type {assistance} {uncountable}) (new-knext-type {aid} {uncountable}) (new-statement {assistance} {consists of} {aid}) (new-knext-type {advantage} {countable}) (new-knext-type {disadvantage} {uncountable}) (new-is-not-a {advantage} {disadvantage}) (new-knext-eq '({gain} {thing}) '({profit} {thing})) (new-knext-eq '({strong suit} {thing}) '({forte} {thing})) (new-knext-eq '({long suit} {thing}) '({forte} {thing})) (new-knext-eq '({metier} {thing}) '({forte} {thing})) (new-knext-eq '({specialty} {thing}) '({forte} {thing})) (new-knext-eq '({speciality} {thing}) '({forte} {thing})) (new-knext-eq '({strong point} {thing}) '({forte} {thing})) (new-knext-eq '({strength} {thing}) '({forte} {thing})) (new-knext-type {strong point} {countable}) (new-knext-type {weak point} {countable}) (new-is-not-a {strong point} {weak point}) (new-knext-type {liability} {uncountable}) (new-knext-type {asset} {countable}) (new-is-not-a {liability} {asset}) (new-knext-type {disadvantage} {uncountable}) (new-knext-type {advantage} {countable}) (new-is-not-a {disadvantage} {advantage}) (new-knext-eq '({price} {thing}) '({toll} {thing})) (new-knext-eq '({cost} {thing}) '({toll} {thing})) (new-knext-eq '({gimmick} {thing}) '({catch} {thing})) (new-knext-type {importance} {uncountable}) (new-knext-type {unimportance} {uncountable}) (new-is-not-a {importance} {unimportance}) (new-knext-type {significance} {uncountable}) (new-knext-type {insignificance} {uncountable}) (new-is-not-a {significance} {insignificance}) (new-knext-type {unimportance} {uncountable}) (new-knext-type {importance} {uncountable}) (new-is-not-a {unimportance} {importance}) (new-knext-type {insignificance} {uncountable}) (new-knext-type {significance} {uncountable}) (new-is-not-a {insignificance} {significance}) (new-knext-eq '({admittance} {thing}) '({access} {thing})) (new-knext-eq '({accession} {thing}) '({entree} {thing})) (new-knext-eq '({admission} {thing}) '({entree} {thing})) (new-knext-is-a '({entree} {countable}) '({access} {uncountable})) (new-knext-type {access} {uncountable}) (new-knext-type {entree} {uncountable}) (new-statement {access} {consists of} {entree}) (add-english-names (list {authorization} {authorisation} {authorization} {authorisation}) (list "authorization" "authorisation" "authorization" "authorisation")) (new-knext-eq '({authorization} {thing}) '({authorization} {thing})) (new-knext-eq '({authority} {thing}) '({sanction} {thing})) (new-knext-type {authorization} {uncountable}) (new-knext-type {sanction} {uncountable}) (new-statement {authorization} {consists of} {sanction}) (new-knext-is-a '({sanction} {countable}) '({authorization} {uncountable})) (new-knext-eq '({title} {thing}) '({claim} {thing})) (new-knext-eq '({use} {thing}) '({enjoyment} {thing})) (new-knext-eq '({powerfulness} {thing}) '({power} {thing})) (new-knext-type {power} {uncountable}) (new-knext-type {powerlessness} {uncountable}) (new-is-not-a {power} {powerlessness}) (new-knext-type {powerfulness} {uncountable}) (new-knext-type {powerlessness} {uncountable}) (new-is-not-a {powerfulness} {powerlessness}) (new-knext-eq '({interest} {thing}) '({interestingness} {thing})) (new-knext-type {interestingness} {uncountable}) (new-knext-type {uninterestingness} {uncountable}) (new-is-not-a {interestingness} {uninterestingness}) (new-knext-eq '({grip} {thing}) '({grasp} {thing})) (new-knext-type {legal power} {uncountable}) (new-knext-type {jurisdiction} {uncountable}) (new-statement {legal power} {consists of} {jurisdiction}) (new-knext-is-a '({jurisdiction} {countable}) '({legal power} {uncountable})) (new-knext-eq '({effectivity} {thing}) '({effectiveness} {thing})) (new-knext-eq '({effectualness} {thing}) '({effectiveness} {thing})) (new-knext-type {effectiveness} {uncountable}) (new-knext-type {ineffectiveness} {uncountable}) (new-is-not-a {effectiveness} {ineffectiveness}) (new-knext-type {effectiveness} {uncountable}) (new-knext-type {effectuality} {uncountable}) (new-statement {effectiveness} {consists of} {effectuality}) (new-knext-is-a '({effectuality} {countable}) '({effectiveness} {uncountable})) (new-knext-type {ability} {countable}) (new-knext-type {inability} {uncountable}) (new-is-not-a {ability} {inability}) (new-knext-eq '({impotence} {thing}) '({powerlessness} {thing})) (new-knext-eq '({impotency} {thing}) '({powerlessness} {thing})) (new-knext-type {powerlessness} {uncountable}) (new-knext-type {powerfulness} {uncountable}) (new-is-not-a {powerlessness} {powerfulness}) (new-knext-type {powerlessness} {uncountable}) (new-knext-type {power} {uncountable}) (new-is-not-a {powerlessness} {power}) (new-knext-eq '({weakness} {thing}) '({helplessness} {thing})) (new-knext-eq '({impuissance} {thing}) '({helplessness} {thing})) (new-knext-type {uninterestingness} {uncountable}) (new-knext-type {interestingness} {uncountable}) (new-is-not-a {uninterestingness} {interestingness}) (new-knext-eq '({unfitness} {thing}) '({inability} {thing})) (new-knext-type {inability} {uncountable}) (new-knext-type {ability} {countable}) (new-is-not-a {inability} {ability}) (new-knext-eq '({ineffectualness} {thing}) '({ineffectiveness} {thing})) (new-knext-eq '({ineffectuality} {thing}) '({ineffectiveness} {thing})) (new-knext-type {ineffectiveness} {uncountable}) (new-knext-type {effectiveness} {uncountable}) (new-is-not-a {ineffectiveness} {effectiveness}) (new-knext-type {optimism} {uncountable}) (new-knext-type {pessimism} {uncountable}) (new-is-not-a {optimism} {pessimism}) (new-knext-eq '({organic structure} {thing}) '({body} {thing})) (new-knext-eq '({physical body} {thing}) '({human body} {thing})) (new-knext-eq '({material body} {thing}) '({human body} {thing})) (new-knext-eq '({soma} {thing}) '({human body} {thing})) (new-knext-eq '({build} {thing}) '({human body} {thing})) (new-knext-eq '({figure} {thing}) '({human body} {thing})) (new-knext-eq '({physique} {thing}) '({human body} {thing})) (new-knext-eq '({anatomy} {thing}) '({human body} {thing})) (new-knext-eq '({shape} {thing}) '({human body} {thing})) (new-knext-eq '({chassis} {thing}) '({human body} {thing})) (new-knext-eq '({frame} {thing}) '({human body} {thing})) (new-knext-eq '({form} {thing}) '({human body} {thing})) (new-knext-eq '({corpse} {thing}) '({cadaver} {thing})) (new-knext-eq '({stiff} {thing}) '({cadaver} {thing})) (new-knext-eq '({clay} {thing}) '({cadaver} {thing})) (new-knext-type {cadaver} {countable}) (new-knext-type {remains} {countable}) (new-statement {remains} {consists of} {cadaver}) (new-knext-type {remains} {uncountable}) (new-knext-type {cadaver} {uncountable}) (new-statement {remains} {consists of} {cadaver}) (new-knext-eq '({area} {thing}) '({region} {thing})) (new-knext-eq '({complex body part} {thing}) '({anatomical structure} {thing})) (new-knext-eq '({bodily structure} {thing}) '({anatomical structure} {thing})) (new-knext-eq '({body structure} {thing}) '({anatomical structure} {thing})) (new-knext-eq '({tegument} {thing}) '({skin} {thing})) (new-knext-eq '({cutis} {thing}) '({skin} {thing})) (new-knext-eq '({lentigo} {thing}) '({freckle} {thing})) (new-knext-eq '({opening} {thing}) '({orifice} {thing})) (new-knext-eq '({porta} {thing}) '({orifice} {thing})) (new-knext-eq '({canal} {thing}) '({duct} {thing})) (new-knext-eq '({channel} {thing}) '({duct} {thing})) (new-knext-eq '({curl} {thing}) '({lock} {thing})) (new-knext-eq '({ringlet} {thing}) '({lock} {thing})) (new-knext-eq '({whorl} {thing}) '({lock} {thing})) (new-knext-eq '({plait} {thing}) '({braid} {thing})) (new-knext-eq '({tress} {thing}) '({braid} {thing})) (new-knext-eq '({face fungus} {thing}) '({beard} {thing})) (new-knext-type {beard} {countable}) (new-knext-type {whiskers} {countable}) (new-statement {whiskers} {consists of} {beard}) (new-knext-type {whiskers} {uncountable}) (new-knext-type {beard} {uncountable}) (new-statement {whiskers} {consists of} {beard}) (new-knext-eq '({fat} {thing}) '({adipose tissue} {thing})) (new-knext-eq '({fatty tissue} {thing}) '({adipose tissue} {thing})) (new-knext-eq '({os} {thing}) '({bone} {thing})) (new-knext-eq '({costa} {thing}) '({rib} {thing})) (new-knext-eq '({dentition} {thing}) '({teeth} {thing})) (new-knext-eq '({contractor} {thing}) '({contractile organ} {thing})) (new-knext-type {extensor} {countable}) (new-knext-type {flexor} {countable}) (new-is-not-a {extensor} {flexor}) (new-knext-eq '({vitals} {thing}) '({vital organ} {thing})) (new-knext-eq '({viscus} {thing}) '({internal organ} {thing})) (new-knext-eq '({lingua} {thing}) '({tongue} {thing})) (new-knext-eq '({glossa} {thing}) '({tongue} {thing})) (new-knext-eq '({clapper} {thing}) '({tongue} {thing})) (new-knext-eq '({oral cavity} {thing}) '({mouth} {thing})) (new-knext-eq '({oral fissure} {thing}) '({mouth} {thing})) (new-knext-eq '({rima oris} {thing}) '({mouth} {thing})) (new-knext-eq '({cavum} {thing}) '({bodily cavity} {thing})) (new-knext-eq '({grinder} {thing}) '({molar} {thing})) (new-knext-eq '({oculus} {thing}) '({eye} {thing})) (new-knext-eq '({optic} {thing}) '({eye} {thing})) (new-knext-eq '({supercilium} {thing}) '({eyebrow} {thing})) (new-knext-eq '({palpebra} {thing}) '({eyelid} {thing})) (new-knext-eq '({lens of the eye} {thing}) '({crystalline lens} {thing})) (new-knext-eq '({arteria} {thing}) '({artery} {thing})) (new-knext-eq '({arterial blood vessel} {thing}) '({artery} {thing})) (new-knext-eq '({heart} {thing}) '({ticker} {thing})) (new-knext-eq '({pump} {thing}) '({ticker} {thing})) (new-knext-eq '({tummy} {thing}) '({stomach} {thing})) (new-knext-eq '({tum} {thing}) '({stomach} {thing})) (new-knext-eq '({breadbasket} {thing}) '({stomach} {thing})) (new-knext-eq '({vas} {thing}) '({vessel} {thing})) (new-knext-eq '({bodily fluid} {thing}) '({liquid body substance} {thing})) (new-knext-eq '({body fluid} {thing}) '({liquid body substance} {thing})) (new-knext-eq '({humor} {thing}) '({liquid body substance} {thing})) (add-english-names (list {humor} {humour}) (list "humor" "humour")) (new-knext-eq '({humor} {thing}) '({liquid body substance} {thing})) (new-knext-eq '({blood type} {thing}) '({blood group} {thing})) (new-knext-eq '({seed} {thing}) '({semen} {thing})) (new-knext-eq '({seminal fluid} {thing}) '({semen} {thing})) (new-knext-eq '({ejaculate} {thing}) '({semen} {thing})) (new-knext-eq '({cum} {thing}) '({semen} {thing})) (new-knext-eq '({come} {thing}) '({semen} {thing})) (new-knext-eq '({lachrymal secretion} {thing}) '({lacrimal secretion} {thing})) (new-knext-eq '({sweat} {thing}) '({perspiration} {thing})) (new-knext-eq '({sudor} {thing}) '({perspiration} {thing})) (new-knext-eq '({endocrine} {thing}) '({hormone} {thing})) (new-knext-eq '({internal secretion} {thing}) '({hormone} {thing})) (new-knext-eq '({vena} {thing}) '({vein} {thing})) (new-knext-eq '({venous blood vessel} {thing}) '({vein} {thing})) (new-knext-eq '({membrane} {thing}) '({tissue layer} {thing})) (new-knext-eq '({living substance} {thing}) '({protoplasm} {thing})) (new-knext-eq '({cistron} {thing}) '({gene} {thing})) (new-knext-eq '({factor} {thing}) '({gene} {thing})) (new-knext-eq '({adipose cell} {thing}) '({fat cell} {thing})) (new-knext-eq '({germ cell} {thing}) '({reproductive cell} {thing})) (new-knext-eq '({sex cell} {thing}) '({reproductive cell} {thing})) (new-knext-eq '({egg cell} {thing}) '({ovum} {thing})) (new-knext-eq '({systema nervosum} {thing}) '({nervous system} {thing})) (new-knext-eq '({process} {thing}) '({appendage} {thing})) (new-knext-eq '({outgrowth} {thing}) '({appendage} {thing})) (new-knext-is-a '({nerve} {countable}) '({nervus} {uncountable})) (new-knext-type {nervus} {uncountable}) (new-knext-type {nerve} {uncountable}) (new-statement {nervus} {consists of} {nerve}) (new-knext-eq '({encephalon} {thing}) '({brain} {thing})) (new-knext-eq '({genital system} {thing}) '({reproductive system} {thing})) (new-knext-eq '({cardiovascular system} {thing}) '({circulatory system} {thing})) (new-knext-eq '({sex organ} {thing}) '({reproductive organ} {thing})) (new-knext-eq '({alimentary tract} {thing}) '({alimentary canal} {thing})) (new-knext-eq '({digestive tube} {thing}) '({alimentary canal} {thing})) (new-knext-eq '({digestive tract} {thing}) '({alimentary canal} {thing})) (new-knext-eq '({gastrointestinal tract} {thing}) '({alimentary canal} {thing})) (new-knext-eq '({gi tract} {thing}) '({alimentary canal} {thing})) (new-knext-eq '({bowel} {thing}) '({intestine} {thing})) (new-knext-eq '({gut} {thing}) '({intestine} {thing})) (new-knext-eq '({vermiform process} {thing}) '({vermiform appendix} {thing})) (new-knext-eq '({cecal appendage} {thing}) '({vermiform appendix} {thing})) (new-knext-eq '({caput} {thing}) '({head} {thing})) (new-knext-eq '({cervix} {thing}) '({neck} {thing})) (new-knext-eq '({pharynx} {thing}) '({throat} {thing})) (new-knext-eq '({trunk} {thing}) '({torso} {thing})) (new-knext-eq '({body} {thing}) '({torso} {thing})) (new-knext-eq '({thorax} {thing}) '({chest} {thing})) (new-knext-eq '({pectus} {thing}) '({chest} {thing})) (new-knext-eq '({chest} {thing}) '({breast} {thing})) (new-knext-eq '({breast} {thing}) '({tit} {thing})) (new-knext-eq '({bosom} {thing}) '({tit} {thing})) (new-knext-eq '({knocker} {thing}) '({tit} {thing})) (new-knext-eq '({boob} {thing}) '({tit} {thing})) (new-knext-eq '({umbilicus} {thing}) '({navel} {thing})) (new-knext-eq '({bellybutton} {thing}) '({navel} {thing})) (new-knext-eq '({belly button} {thing}) '({navel} {thing})) (new-knext-eq '({omphalos} {thing}) '({navel} {thing})) (new-knext-eq '({omphalus} {thing}) '({navel} {thing})) (new-knext-eq '({venter} {thing}) '({abdomen} {thing})) (new-knext-eq '({stomach} {thing}) '({abdomen} {thing})) (new-knext-eq '({belly} {thing}) '({abdomen} {thing})) (new-knext-eq '({dorsum} {thing}) '({back} {thing})) (new-knext-eq '({hindquarters} {thing}) '({buns} {thing})) (new-knext-eq '({nates} {thing}) '({buttocks} {thing})) (add-english-names (list {ass} {arse} {ass} {arse}) (list "ass" "arse" "ass" "arse")) (new-knext-eq '({ass} {thing}) '({buttocks} {thing})) (new-knext-eq '({backside} {thing}) '({buttocks} {thing})) (new-knext-eq '({bum} {thing}) '({buttocks} {thing})) (new-knext-eq '({can} {thing}) '({buttocks} {thing})) (new-knext-eq '({fundament} {thing}) '({buttocks} {thing})) (new-knext-eq '({hind end} {thing}) '({buttocks} {thing})) (new-knext-eq '({keister} {thing}) '({buttocks} {thing})) (new-knext-eq '({posterior} {thing}) '({buttocks} {thing})) (new-knext-eq '({prat} {thing}) '({buttocks} {thing})) (new-knext-eq '({rear} {thing}) '({buttocks} {thing})) (new-knext-eq '({rear end} {thing}) '({buttocks} {thing})) (new-knext-eq '({rump} {thing}) '({buttocks} {thing})) (new-knext-eq '({stern} {thing}) '({buttocks} {thing})) (new-knext-eq '({seat} {thing}) '({buttocks} {thing})) (new-knext-eq '({tail} {thing}) '({buttocks} {thing})) (new-knext-eq '({tail end} {thing}) '({buttocks} {thing})) (new-knext-eq '({tooshie} {thing}) '({buttocks} {thing})) (new-knext-eq '({tush} {thing}) '({buttocks} {thing})) (new-knext-eq '({bottom} {thing}) '({buttocks} {thing})) (new-knext-eq '({behind} {thing}) '({buttocks} {thing})) (new-knext-eq '({derriere} {thing}) '({buttocks} {thing})) (new-knext-eq '({fanny} {thing}) '({buttocks} {thing})) (new-knext-eq '({ass} {thing}) '({buttocks} {thing})) (new-knext-type {buttocks} {countable}) (new-knext-type {buns} {countable}) (new-statement {buns} {consists of} {buttocks}) (new-knext-type {buns} {uncountable}) (new-knext-type {buttocks} {uncountable}) (new-statement {buns} {consists of} {buttocks}) (new-knext-eq '({cheek} {thing}) '({buttock} {thing})) (new-knext-eq '({appendage} {thing}) '({extremity} {thing})) (new-knext-eq '({member} {thing}) '({extremity} {thing})) (new-knext-eq '({pes} {thing}) '({foot} {thing})) (new-knext-eq '({manus} {thing}) '({hand} {thing})) (new-knext-eq '({mitt} {thing}) '({hand} {thing})) (new-knext-eq '({paw} {thing}) '({hand} {thing})) (new-knext-eq '({thenar} {thing}) '({palm} {thing})) (new-knext-eq '({digit} {thing}) '({dactyl} {thing})) (new-knext-eq '({pollex} {thing}) '({thumb} {thing})) (new-knext-eq '({forefinger} {thing}) '({index finger} {thing})) (new-knext-eq '({articulatio genus} {thing}) '({knee} {thing})) (new-knext-eq '({genu} {thing}) '({knee} {thing})) (new-knext-eq '({articulatio plana} {thing}) '({gliding joint} {thing})) (new-knext-eq '({mortise joint} {thing}) '({ankle} {thing})) (new-knext-eq '({articulatio talocruralis} {thing}) '({ankle} {thing})) (new-knext-eq '({cubitus} {thing}) '({elbow} {thing})) (new-knext-eq '({cubital joint} {thing}) '({elbow} {thing})) (new-knext-eq '({articulatio cubiti} {thing}) '({elbow} {thing})) (new-knext-eq '({ginglymus} {thing}) '({hinge joint} {thing})) (new-knext-eq '({ginglymoid joint} {thing}) '({hinge joint} {thing})) (new-knext-eq '({carpus} {thing}) '({wrist} {thing})) (new-knext-eq '({radiocarpal joint} {thing}) '({wrist} {thing})) (new-knext-eq '({articulatio radiocarpea} {thing}) '({wrist} {thing})) (new-knext-eq '({skeleton} {thing}) '({skeletal system} {thing})) (new-knext-eq '({frame} {thing}) '({skeletal system} {thing})) (new-knext-eq '({systema skeletale} {thing}) '({skeletal system} {thing})) (new-knext-eq '({vertebral column} {thing}) '({spinal column} {thing})) (new-knext-eq '({spine} {thing}) '({spinal column} {thing})) (new-knext-eq '({backbone} {thing}) '({spinal column} {thing})) (new-knext-eq '({back} {thing}) '({spinal column} {thing})) (new-knext-eq '({rachis} {thing}) '({spinal column} {thing})) (new-knext-eq '({articulation} {thing}) '({joint} {thing})) (new-knext-eq '({articulatio} {thing}) '({joint} {thing})) (new-knext-eq '({olfactory organ} {thing}) '({nose} {thing})) (new-knext-eq '({mentum} {thing}) '({chin} {thing})) (new-knext-eq '({lineament} {thing}) '({feature} {thing})) (new-knext-eq '({forehead} {thing}) '({brow} {thing})) (new-knext-eq '({head} {thing}) '({mind} {thing})) (new-knext-eq '({brain} {thing}) '({mind} {thing})) (new-knext-eq '({psyche} {thing}) '({mind} {thing})) (new-knext-eq '({nous} {thing}) '({mind} {thing})) (new-knext-type {open} {uncountable}) (new-knext-type {surface} {uncountable}) (new-statement {open} {consists of} {surface}) (new-knext-is-a '({surface} {countable}) '({open} {uncountable})) (new-knext-eq '({good sense} {thing}) '({common sense} {thing})) (new-knext-eq '({mother wit} {thing}) '({common sense} {thing})) (new-knext-eq '({horse sense} {thing}) '({gumption} {thing})) (new-knext-type {common sense} {uncountable}) (new-knext-type {gumption} {uncountable}) (new-statement {common sense} {consists of} {gumption}) (new-knext-is-a '({gumption} {countable}) '({common sense} {uncountable})) (new-knext-eq '({caution} {thing}) '({forethought} {thing})) (new-knext-eq '({precaution} {thing}) '({forethought} {thing})) (new-knext-type {care} {uncountable}) (new-knext-type {forethought} {uncountable}) (new-statement {care} {consists of} {forethought}) (new-knext-is-a '({forethought} {countable}) '({care} {uncountable})) (new-knext-type {ability} {uncountable}) (new-knext-type {inability} {countable}) (new-is-not-a {ability} {inability}) (new-knext-is-a '({ability} {uncountable}) '({power} {countable})) (new-knext-is-a '({power} {countable}) '({ability} {uncountable})) (new-knext-type {intelligence} {uncountable}) (new-knext-type {stupidity} {uncountable}) (new-is-not-a {intelligence} {stupidity}) (new-knext-eq '({learning ability} {thing}) '({brainpower} {thing})) (new-knext-eq '({brain} {thing}) '({mental capacity} {thing})) (new-knext-eq '({mentality} {thing}) '({mental capacity} {thing})) (new-knext-eq '({wit} {thing}) '({mental capacity} {thing})) (new-knext-type {brainpower} {uncountable}) (new-knext-type {mental capacity} {uncountable}) (new-statement {brainpower} {consists of} {mental capacity}) (new-knext-is-a '({mental capacity} {countable}) '({brainpower} {uncountable})) (new-knext-eq '({mind} {thing}) '({intellect} {thing})) (new-knext-type {brilliance} {uncountable}) (new-knext-type {genius} {uncountable}) (new-statement {brilliance} {consists of} {genius}) (new-knext-is-a '({genius} {countable}) '({brilliance} {uncountable})) (new-knext-eq '({cunning} {thing}) '({craftiness} {thing})) (new-knext-eq '({foxiness} {thing}) '({craftiness} {thing})) (new-knext-eq '({guile} {thing}) '({craftiness} {thing})) (new-knext-eq '({craft} {thing}) '({slyness} {thing})) (new-knext-eq '({wiliness} {thing}) '({slyness} {thing})) (new-knext-type {craftiness} {uncountable}) (new-knext-type {slyness} {uncountable}) (new-statement {craftiness} {consists of} {slyness}) (new-knext-is-a '({slyness} {countable}) '({craftiness} {uncountable})) (new-knext-eq '({astuteness} {thing}) '({shrewdness} {thing})) (new-knext-eq '({perspicacity} {thing}) '({shrewdness} {thing})) (new-knext-eq '({perspicaciousness} {thing}) '({shrewdness} {thing})) (new-knext-type {aptitude} {countable}) (new-knext-type {inaptitude} {countable}) (new-is-not-a {aptitude} {inaptitude}) (new-knext-eq '({inherent aptitude} {thing}) '({instinct} {thing})) (new-knext-eq '({sight} {thing}) '({ken} {thing})) (new-knext-eq '({creativeness} {thing}) '({creativity} {thing})) (new-knext-eq '({creative thinking} {thing}) '({creativity} {thing})) (new-knext-type {creativeness} {uncountable}) (new-knext-type {uncreativeness} {uncountable}) (new-is-not-a {creativeness} {uncreativeness}) (new-knext-eq '({imaginativeness} {thing}) '({imagination} {thing})) (new-knext-type {imagination} {uncountable}) (new-knext-type {vision} {uncountable}) (new-statement {imagination} {consists of} {vision}) (new-knext-is-a '({vision} {countable}) '({imagination} {uncountable})) (new-knext-eq '({mythical place} {thing}) '({imaginary place} {thing})) (new-knext-eq '({fictitious place} {thing}) '({imaginary place} {thing})) (new-knext-type {heaven} {countable}) (new-knext-type {hell} {countable}) (new-is-not-a {heaven} {hell}) (new-knext-type {hell} {countable}) (new-knext-type {heaven} {countable}) (new-is-not-a {hell} {heaven}) (new-knext-eq '({innovation} {thing}) '({invention} {thing})) (new-knext-eq '({excogitation} {thing}) '({invention} {thing})) (new-knext-eq '({conception} {thing}) '({invention} {thing})) (new-knext-eq '({design} {thing}) '({invention} {thing})) (new-knext-eq '({aviation} {thing}) '({airmanship} {thing})) (new-knext-eq '({accomplishment} {thing}) '({skill} {thing})) (new-knext-eq '({acquirement} {thing}) '({skill} {thing})) (new-knext-eq '({acquisition} {thing}) '({skill} {thing})) (new-knext-eq '({attainment} {thing}) '({skill} {thing})) (new-knext-eq '({workmanship} {thing}) '({craftsmanship} {thing})) (new-knext-type {literacy} {uncountable}) (new-knext-type {illiteracy} {uncountable}) (new-is-not-a {literacy} {illiteracy}) (new-knext-type {skillfulness} {uncountable}) (new-knext-type {unskillfulness} {uncountable}) (new-is-not-a {skillfulness} {unskillfulness}) (add-english-names (list {expertize} {expertise} {expertize} {expertise}) (list "expertize" "expertise" "expertize" "expertise")) (new-knext-eq '({expertize} {thing}) '({expertness} {thing})) (new-knext-eq '({control} {thing}) '({command} {thing})) (new-knext-is-a '({command} {countable}) '({mastery} {uncountable})) (new-knext-type {mastery} {uncountable}) (new-knext-type {command} {uncountable}) (new-statement {mastery} {consists of} {command}) (new-knext-eq '({adroitness} {thing}) '({adeptness} {thing})) (new-knext-eq '({deftness} {thing}) '({adeptness} {thing})) (new-knext-eq '({quickness} {thing}) '({adeptness} {thing})) (new-knext-type {adeptness} {uncountable}) (new-knext-type {facility} {uncountable}) (new-statement {adeptness} {consists of} {facility}) (new-knext-is-a '({facility} {countable}) '({adeptness} {uncountable})) (new-knext-eq '({technique} {thing}) '({proficiency} {thing})) (new-knext-type {inability} {countable}) (new-knext-type {ability} {countable}) (new-is-not-a {inability} {ability}) (new-knext-type {stupidity} {uncountable}) (new-knext-type {intelligence} {uncountable}) (new-is-not-a {stupidity} {intelligence}) (new-knext-type {inaptitude} {countable}) (new-knext-type {aptitude} {countable}) (new-is-not-a {inaptitude} {aptitude}) (new-knext-type {unskillfulness} {uncountable}) (new-knext-type {skillfulness} {uncountable}) (new-is-not-a {unskillfulness} {skillfulness}) (new-knext-type {uncreativeness} {uncountable}) (new-knext-type {creativeness} {uncountable}) (new-is-not-a {uncreativeness} {creativeness}) (new-knext-eq '({module} {thing}) '({faculty} {thing})) (new-knext-eq '({speech} {thing}) '({language} {thing})) (new-knext-eq '({memory} {thing}) '({retentiveness} {thing})) (new-knext-eq '({retention} {thing}) '({retentiveness} {thing})) (new-knext-eq '({retentivity} {thing}) '({retentiveness} {thing})) (new-knext-eq '({reason} {thing}) '({intellect} {thing})) (new-knext-eq '({understanding} {thing}) '({intellect} {thing})) (new-knext-eq '({sentience} {thing}) '({sentiency} {thing})) (new-knext-eq '({sense} {thing}) '({sensory faculty} {thing})) (new-knext-eq '({sensation} {thing}) '({sensory faculty} {thing})) (new-knext-type {sentiency} {uncountable}) (new-knext-type {sensory faculty} {uncountable}) (new-statement {sentiency} {consists of} {sensory faculty}) (new-knext-is-a '({sensory faculty} {countable}) '({sentiency} {uncountable})) (new-knext-eq '({will} {thing}) '({volition} {thing})) (new-knext-eq '({sight} {thing}) '({visual sense} {thing})) (new-knext-eq '({vision} {thing}) '({visual sense} {thing})) (new-knext-eq '({visual modality} {thing}) '({visual sense} {thing})) (new-knext-eq '({cutaneous senses} {thing}) '({skin senses} {thing})) (new-knext-is-a '({sense of touch} {uncountable}) '({skin senses} {uncountable})) (new-knext-type {sense of touch} {uncountable}) (new-knext-type {touch modality} {uncountable}) (new-statement {sense of touch} {consists of} {touch modality}) (new-knext-is-a '({skin senses} {uncountable}) '({sense of touch} {uncountable})) (new-knext-type {skin senses} {uncountable}) (new-knext-type {touch modality} {uncountable}) (new-statement {skin senses} {consists of} {touch modality}) (new-knext-is-a '({touch modality} {countable}) '({sense of touch} {uncountable})) (new-knext-type {touch modality} {countable}) (new-knext-type {skin senses} {countable}) (new-statement {skin senses} {consists of} {touch modality}) (new-knext-eq '({seeing} {thing}) '({eyesight} {thing})) (new-knext-eq '({sightedness} {thing}) '({eyesight} {thing})) (new-knext-eq '({hearing} {thing}) '({auditory sense} {thing})) (new-knext-eq '({sense of hearing} {thing}) '({auditory sense} {thing})) (new-knext-eq '({auditory modality} {thing}) '({auditory sense} {thing})) (new-knext-type {audition} {uncountable}) (new-knext-type {auditory sense} {uncountable}) (new-statement {audition} {consists of} {auditory sense}) (new-knext-is-a '({auditory sense} {countable}) '({audition} {uncountable})) (new-knext-eq '({gustatory modality} {thing}) '({sense of taste} {thing})) (new-knext-type {gustation} {uncountable}) (new-knext-type {sense of taste} {uncountable}) (new-statement {gustation} {consists of} {sense of taste}) (new-knext-is-a '({sense of taste} {countable}) '({gustation} {uncountable})) (new-knext-eq '({olfaction} {thing}) '({sense of smell} {thing})) (new-knext-eq '({olfactory modality} {thing}) '({sense of smell} {thing})) (new-knext-eq '({equilibrium} {thing}) '({labyrinthine sense} {thing})) (new-knext-eq '({vestibular sense} {thing}) '({labyrinthine sense} {thing})) (new-knext-eq '({sense of balance} {thing}) '({labyrinthine sense} {thing})) (new-knext-eq '({sense of equilibrium} {thing}) '({labyrinthine sense} {thing})) (new-knext-eq '({tradition} {thing}) '({custom} {thing})) (new-knext-eq '({convention} {thing}) '({normal} {thing})) (new-knext-eq '({pattern} {thing}) '({normal} {thing})) (new-knext-eq '({rule} {thing}) '({normal} {thing})) (new-knext-eq '({formula} {thing}) '({normal} {thing})) (new-knext-eq '({wont} {thing}) '({habit} {thing})) (new-knext-eq '({state of mind} {thing}) '({cognitive state} {thing})) (new-knext-eq '({earthly concern} {thing}) '({worldly concern} {thing})) (new-knext-eq '({earth} {thing}) '({worldly concern} {thing})) (new-knext-eq '({affair} {thing}) '({matter} {thing})) (new-knext-eq '({thing} {thing}) '({matter} {thing})) (new-knext-type {consciousness} {uncountable}) (new-knext-type {unconsciousness} {uncountable}) (new-is-not-a {consciousness} {unconsciousness}) (new-knext-eq '({ego} {thing}) '({self} {thing})) (new-knext-eq '({consciousness} {thing}) '({awareness} {thing})) (new-knext-eq '({cognizance} {thing}) '({awareness} {thing})) (add-english-names (list {cognizance} {cognisance} {cognizance} {cognisance}) (list "cognizance" "cognisance" "cognizance" "cognisance")) (new-knext-eq '({cognizance} {thing}) '({awareness} {thing})) (new-knext-eq '({knowingness} {thing}) '({awareness} {thing})) (new-knext-type {cognizance} {uncountable}) (new-knext-type {incognizance} {uncountable}) (new-is-not-a {cognizance} {incognizance}) (new-knext-type {unconsciousness} {uncountable}) (new-knext-type {consciousness} {uncountable}) (new-is-not-a {unconsciousness} {consciousness}) (new-knext-type {sleeping} {uncountable}) (new-knext-type {waking} {uncountable}) (new-is-not-a {sleeping} {waking}) (new-knext-eq '({wonder} {thing}) '({curiosity} {thing})) (new-knext-is-a '({interest} {countable}) '({involvement} {uncountable})) (new-knext-type {involvement} {uncountable}) (new-knext-type {interest} {uncountable}) (new-statement {involvement} {consists of} {interest}) (new-knext-eq '({fog} {thing}) '({daze} {thing})) (new-knext-eq '({haze} {thing}) '({daze} {thing})) (new-knext-eq '({enigma} {thing}) '({mystery} {thing})) (new-knext-eq '({secret} {thing}) '({mystery} {thing})) (new-knext-eq '({closed book} {thing}) '({mystery} {thing})) (new-knext-eq '({quandary} {thing}) '({dilemma} {thing})) (new-knext-type {trouble} {uncountable}) (new-knext-type {problem} {uncountable}) (new-statement {trouble} {consists of} {problem}) (new-knext-is-a '({problem} {countable}) '({trouble} {uncountable})) (new-knext-eq '({hinderance} {thing}) '({hindrance} {thing})) (new-knext-eq '({deterrent} {thing}) '({hindrance} {thing})) (new-knext-eq '({impediment} {thing}) '({hindrance} {thing})) (new-knext-eq '({balk} {thing}) '({hindrance} {thing})) (new-knext-eq '({baulk} {thing}) '({hindrance} {thing})) (new-knext-eq '({check} {thing}) '({hindrance} {thing})) (new-knext-eq '({handicap} {thing}) '({hindrance} {thing})) (new-knext-eq '({enticement} {thing}) '({temptation} {thing})) (new-knext-eq '({hook} {thing}) '({bait} {thing})) (new-knext-eq '({lure} {thing}) '({bait} {thing})) (new-knext-eq '({sweetener} {thing}) '({bait} {thing})) (new-knext-eq '({replacement} {thing}) '({substitute} {thing})) (new-knext-type {certainty} {uncountable}) (new-knext-type {uncertainty} {uncountable}) (new-is-not-a {certainty} {uncertainty}) (new-knext-eq '({confidence} {thing}) '({assurance} {thing})) (new-knext-eq '({authority} {thing}) '({assurance} {thing})) (new-knext-eq '({sureness} {thing}) '({assurance} {thing})) (new-knext-eq '({trust} {thing}) '({reliance} {thing})) (new-knext-eq '({uncertainty} {thing}) '({doubt} {thing})) (new-knext-eq '({incertitude} {thing}) '({doubt} {thing})) (new-knext-eq '({dubiety} {thing}) '({doubt} {thing})) (new-knext-eq '({doubtfulness} {thing}) '({doubt} {thing})) (new-knext-eq '({dubiousness} {thing}) '({doubt} {thing})) (new-knext-type {uncertainty} {uncountable}) (new-knext-type {certainty} {uncountable}) (new-is-not-a {uncertainty} {certainty}) (new-knext-eq '({distrust} {thing}) '({mistrust} {thing})) (new-knext-eq '({misgiving} {thing}) '({suspicion} {thing})) (new-knext-type {mistrust} {uncountable}) (new-knext-type {suspicion} {uncountable}) (new-statement {mistrust} {consists of} {suspicion}) (new-knext-is-a '({suspicion} {countable}) '({mistrust} {uncountable})) (new-knext-eq '({disbelief} {thing}) '({incredulity} {thing})) (new-knext-eq '({skepticism} {thing}) '({incredulity} {thing})) (new-knext-eq '({mental rejection} {thing}) '({incredulity} {thing})) (new-knext-eq '({absorption} {thing}) '({preoccupation} {thing})) (new-knext-eq '({engrossment} {thing}) '({preoccupation} {thing})) (new-knext-is-a '({preoccupation} {countable}) '({preoccupancy} {uncountable})) (new-knext-type {preoccupancy} {uncountable}) (new-knext-type {preoccupation} {uncountable}) (new-statement {preoccupancy} {consists of} {preoccupation}) (new-knext-eq '({abstraction} {thing}) '({abstractedness} {thing})) (new-knext-eq '({reverie} {thing}) '({revery} {thing})) (new-knext-eq '({mental process} {thing}) '({cognitive process} {thing})) (new-knext-eq '({operation} {thing}) '({cognitive process} {thing})) (new-knext-eq '({cognitive operation} {thing}) '({cognitive process} {thing})) (new-knext-eq '({attending} {thing}) '({attention} {thing})) (new-knext-type {attention} {uncountable}) (new-knext-type {inattention} {uncountable}) (new-is-not-a {attention} {inattention}) (new-knext-eq '({heed} {thing}) '({attentiveness} {thing})) (new-knext-eq '({regard} {thing}) '({attentiveness} {thing})) (new-knext-eq '({paying attention} {thing}) '({attentiveness} {thing})) (new-knext-type {attentiveness} {uncountable}) (new-knext-type {inattentiveness} {uncountable}) (new-is-not-a {attentiveness} {inattentiveness}) (new-knext-eq '({observation} {thing}) '({notice} {thing})) (new-knext-eq '({observance} {thing}) '({notice} {thing})) (new-knext-eq '({concentration} {thing}) '({immersion} {thing})) (new-knext-eq '({absorption} {thing}) '({engrossment} {thing})) (new-knext-is-a '({engrossment} {countable}) '({immersion} {uncountable})) (new-knext-type {immersion} {uncountable}) (new-knext-type {engrossment} {uncountable}) (new-statement {immersion} {consists of} {engrossment}) (new-knext-eq '({focal point} {thing}) '({focus} {thing})) (new-knext-eq '({direction} {thing}) '({focus} {thing})) (new-knext-eq '({centering} {thing}) '({focus} {thing})) (new-knext-type {inattention} {uncountable}) (new-knext-type {attention} {uncountable}) (new-is-not-a {inattention} {attention}) (new-knext-eq '({heedlessness} {thing}) '({inattentiveness} {thing})) (new-knext-type {inattentiveness} {uncountable}) (new-knext-type {attentiveness} {uncountable}) (new-is-not-a {inattentiveness} {attentiveness}) (new-knext-eq '({neglect} {thing}) '({disregard} {thing})) (new-knext-eq '({seeing} {thing}) '({beholding} {thing})) (new-knext-is-a '({visual perception} {countable}) '({beholding} {uncountable})) (new-knext-type {beholding} {uncountable}) (new-knext-type {visual perception} {uncountable}) (new-statement {beholding} {consists of} {visual perception}) (new-knext-eq '({esthesis} {thing}) '({sensation} {thing})) (new-knext-eq '({aesthesis} {thing}) '({sensation} {thing})) (new-knext-eq '({sense experience} {thing}) '({sensation} {thing})) (new-knext-eq '({sense impression} {thing}) '({sensation} {thing})) (new-knext-eq '({sense datum} {thing}) '({sensation} {thing})) (new-knext-eq '({olfactory sensation} {thing}) '({smell} {thing})) (new-knext-eq '({olfactory perception} {thing}) '({smell} {thing})) (add-english-names (list {odor} {odour}) (list "odor" "odour")) (add-english-names (list {odor} {odour}) (list "odor" "odour")) (new-knext-type {smell} {uncountable}) (new-knext-type {odor} {uncountable}) (new-statement {smell} {consists of} {odor}) (add-english-names (list {odor} {odour}) (list "odor" "odour")) (add-english-names (list {malodor} {malodour}) (list "malodor" "malodour")) (new-knext-eq '({stench} {thing}) '({malodor} {thing})) (new-knext-eq '({stink} {thing}) '({malodor} {thing})) (new-knext-eq '({reek} {thing}) '({malodor} {thing})) (new-knext-eq '({fetor} {thing}) '({malodor} {thing})) (add-english-names (list {fetor} {foetor} {foetor}) (list "fetor" "foetor" "foetor")) (new-knext-eq '({fetor} {thing}) '({malodor} {thing})) (new-knext-eq '({mephitis} {thing}) '({malodor} {thing})) (new-knext-eq '({gustatory sensation} {thing}) '({taste} {thing})) (new-knext-eq '({gustatory perception} {thing}) '({taste} {thing})) (new-knext-type {taste} {uncountable}) (new-knext-type {taste sensation} {uncountable}) (new-statement {taste} {consists of} {taste sensation}) (new-knext-is-a '({taste sensation} {countable}) '({taste} {uncountable})) (new-knext-eq '({relish} {thing}) '({sapidity} {thing})) (new-knext-eq '({savor} {thing}) '({sapidity} {thing})) (add-english-names (list {savor} {savour}) (list "savor" "savour")) (new-knext-eq '({savor} {thing}) '({sapidity} {thing})) (new-knext-eq '({smack} {thing}) '({sapidity} {thing})) (new-knext-eq '({tang} {thing}) '({sapidity} {thing})) (add-english-names (list {flavor} {flavour}) (list "flavor" "flavour")) (new-knext-eq '({nip} {thing}) '({flavor} {thing})) (new-knext-is-a '({flavor} {countable}) '({sapidity} {uncountable})) (new-knext-type {sapidity} {uncountable}) (new-knext-type {flavor} {uncountable}) (new-statement {sapidity} {consists of} {flavor}) (new-knext-is-a '({sound} {countable}) '({auditory sensation} {uncountable})) (new-knext-type {auditory sensation} {uncountable}) (new-knext-type {sound} {uncountable}) (new-statement {auditory sensation} {consists of} {sound}) (new-knext-eq '({dissonance} {thing}) '({noise} {thing})) (new-knext-eq '({racket} {thing}) '({noise} {thing})) (new-knext-eq '({tactual sensation} {thing}) '({touch sensation} {thing})) (new-knext-eq '({tactile sensation} {thing}) '({touch sensation} {thing})) (new-knext-eq '({feeling} {thing}) '({touch sensation} {thing})) (new-knext-eq '({itching} {thing}) '({itchiness} {thing})) (new-knext-is-a '({itch} {countable}) '({itchiness} {uncountable})) (new-knext-type {itchiness} {uncountable}) (new-knext-type {itch} {uncountable}) (new-statement {itchiness} {consists of} {itch}) (new-knext-eq '({painful sensation} {thing}) '({pain sensation} {thing})) (new-knext-type {pain} {uncountable}) (new-knext-type {pain sensation} {uncountable}) (new-statement {pain} {consists of} {pain sensation}) (new-knext-is-a '({pain sensation} {countable}) '({pain} {uncountable})) (new-knext-eq '({heat} {thing}) '({warmth} {thing})) (new-knext-eq '({arrangement} {thing}) '({organization} {thing})) (add-english-names (list {organization} {organisation} {organization} {organisation}) (list "organization" "organisation" "organization" "organisation")) (new-knext-eq '({organization} {thing}) '({organization} {thing})) (new-knext-eq '({system} {thing}) '({organization} {thing})) (new-knext-eq '({frame of reference} {thing}) '({coordinate system} {thing})) (new-knext-eq '({reference system} {thing}) '({coordinate system} {thing})) (new-knext-eq '({reference frame} {thing}) '({coordinate system} {thing})) (new-knext-eq '({plan} {thing}) '({design} {thing})) (new-knext-eq '({constellation} {thing}) '({configuration} {thing})) (new-knext-eq '({classification} {thing}) '({categorization} {thing})) (add-english-names (list {categorization} {categorisation} {categorization} {categorisation}) (list "categorization" "categorisation" "categorization" "categorisation")) (new-knext-eq '({categorization} {thing}) '({categorization} {thing})) (new-knext-eq '({sorting} {thing}) '({categorization} {thing})) (new-knext-eq '({assessment} {thing}) '({appraisal} {thing})) (new-knext-eq '({roast} {thing}) '({knock} {thing})) (new-knext-eq '({ascription} {thing}) '({attribution} {thing})) (new-knext-eq '({rating} {thing}) '({valuation} {thing})) (new-knext-eq '({grade} {thing}) '({mark} {thing})) (new-knext-eq '({score} {thing}) '({mark} {thing})) (new-knext-eq '({check} {thing}) '({assay} {thing})) (new-knext-type {differentiation} {uncountable}) (new-knext-type {distinction} {uncountable}) (new-statement {differentiation} {consists of} {distinction}) (new-knext-is-a '({distinction} {countable}) '({differentiation} {uncountable})) (new-knext-eq '({demarcation} {thing}) '({dividing line} {thing})) (new-knext-eq '({contrast} {thing}) '({dividing line} {thing})) (new-knext-eq '({taste} {thing}) '({appreciation} {thing})) (new-knext-eq '({discernment} {thing}) '({appreciation} {thing})) (new-knext-eq '({perceptiveness} {thing}) '({appreciation} {thing})) (new-knext-eq '({trend} {thing}) '({vogue} {thing})) (new-knext-eq '({style} {thing}) '({vogue} {thing})) (new-knext-eq '({acquisition} {thing}) '({learning} {thing})) (new-knext-type {experience} {uncountable}) (new-knext-type {inexperience} {uncountable}) (new-is-not-a {experience} {inexperience}) (new-knext-eq '({memory} {thing}) '({remembering} {thing})) (new-knext-eq '({recall} {thing}) '({recollection} {thing})) (new-knext-eq '({reminiscence} {thing}) '({recollection} {thing})) (new-knext-eq '({anamnesis} {thing}) '({recollection} {thing})) (new-knext-is-a '({remembrance} {countable}) '({recollection} {uncountable})) (new-knext-type {recollection} {uncountable}) (new-knext-type {remembrance} {uncountable}) (new-statement {recollection} {consists of} {remembrance}) (new-knext-eq '({identification} {thing}) '({recognition} {thing})) (new-knext-eq '({connection} {thing}) '({association} {thing})) (add-english-names (list {connection} {connexion} {connection} {connexion}) (list "connection" "connexion" "connection" "connexion")) (new-knext-eq '({connection} {thing}) '({association} {thing})) (new-knext-eq '({symbolization} {thing}) '({symbolic representation} {thing})) (add-english-names (list {symbolization} {symbolisation} {symbolization} {symbolisation}) (list "symbolization" "symbolisation" "symbolization" "symbolisation")) (new-knext-eq '({symbolization} {thing}) '({symbolic representation} {thing})) (new-knext-eq '({interpretation} {thing}) '({rendition} {thing})) (new-knext-eq '({rendering} {thing}) '({rendition} {thing})) (new-knext-type {interpreting} {uncountable}) (new-knext-type {rendition} {uncountable}) (new-statement {interpreting} {consists of} {rendition}) (new-knext-is-a '({rendition} {countable}) '({interpreting} {uncountable})) (new-knext-eq '({depiction} {thing}) '({depicting} {thing})) (new-knext-eq '({portraying} {thing}) '({depicting} {thing})) (new-knext-eq '({portrayal} {thing}) '({depicting} {thing})) (new-knext-eq '({imagination} {thing}) '({imaging} {thing})) (new-knext-eq '({imagery} {thing}) '({imaging} {thing})) (new-knext-eq '({mental imagery} {thing}) '({imaging} {thing})) (new-knext-type {picturing} {uncountable}) (new-knext-type {envisioning} {uncountable}) (new-statement {picturing} {consists of} {envisioning}) (new-knext-is-a '({envisioning} {countable}) '({picturing} {uncountable})) (new-knext-eq '({dreaming} {thing}) '({dream} {thing})) (new-knext-eq '({pursuit} {thing}) '({quest} {thing})) (new-knext-is-a '({pursuance} {countable}) '({quest} {countable})) (new-knext-is-a '({quest} {countable}) '({pursuance} {countable})) (new-knext-eq '({thought} {thing}) '({thinking} {thing})) (new-knext-eq '({intellection} {thing}) '({thinking} {thing})) (new-knext-eq '({mentation} {thing}) '({thinking} {thing})) (new-knext-eq '({cerebration} {thing}) '({thought process} {thing})) (new-knext-is-a '({thinking} {uncountable}) '({thought process} {countable})) (new-knext-is-a '({thought process} {countable}) '({thinking} {uncountable})) (new-knext-eq '({logical thinking} {thing}) '({reasoning} {thing})) (new-knext-eq '({abstract thought} {thing}) '({reasoning} {thing})) (new-knext-type {analysis} {countable}) (new-knext-type {synthesis} {uncountable}) (new-is-not-a {analysis} {synthesis}) (new-knext-is-a '({analysis} {countable}) '({analytic thinking} {uncountable})) (new-knext-type {analytic thinking} {uncountable}) (new-knext-type {analysis} {uncountable}) (new-statement {analytic thinking} {consists of} {analysis}) (new-knext-eq '({line of reasoning} {thing}) '({logical argument} {thing})) (new-knext-eq '({line} {thing}) '({logical argument} {thing})) (new-knext-type {argumentation} {uncountable}) (new-knext-type {logical argument} {uncountable}) (new-statement {argumentation} {consists of} {logical argument}) (new-knext-is-a '({logical argument} {countable}) '({argumentation} {uncountable})) (add-english-names (list {theorization} {theorisation} {theorization} {theorisation}) (list "theorization" "theorisation" "theorization" "theorisation")) (new-knext-eq '({theorization} {thing}) '({theorization} {thing})) (new-knext-eq '({supposition} {thing}) '({supposal} {thing})) (new-knext-type {cogitation} {uncountable}) (new-knext-type {study} {uncountable}) (new-statement {cogitation} {consists of} {study}) (new-knext-is-a '({study} {countable}) '({cogitation} {uncountable})) (new-knext-eq '({contemplation} {thing}) '({reflection} {thing})) (new-knext-eq '({reflexion} {thing}) '({reflection} {thing})) (new-knext-eq '({rumination} {thing}) '({reflection} {thing})) (new-knext-eq '({musing} {thing}) '({reflection} {thing})) (new-knext-is-a '({reflection} {countable}) '({thoughtfulness} {uncountable})) (new-knext-type {thoughtfulness} {uncountable}) (new-knext-type {reflection} {uncountable}) (new-statement {thoughtfulness} {consists of} {reflection}) (new-knext-type {meditation} {uncountable}) (new-knext-type {speculation} {uncountable}) (new-statement {meditation} {consists of} {speculation}) (new-knext-is-a '({speculation} {countable}) '({meditation} {uncountable})) (new-knext-eq '({examination} {thing}) '({examen} {thing})) (new-knext-eq '({deciding} {thing}) '({decision making} {thing})) (new-knext-eq '({settlement} {thing}) '({closure} {thing})) (new-knext-eq '({resolution} {thing}) '({closure} {thing})) (new-knext-eq '({judgment} {thing}) '({judging} {thing})) (new-knext-eq '({judgement} {thing}) '({judging} {thing})) (new-knext-eq '({option} {thing}) '({alternative} {thing})) (new-knext-eq '({choice} {thing}) '({alternative} {thing})) (new-knext-eq '({possibility} {thing}) '({possible action} {thing})) (new-knext-eq '({opening} {thing}) '({possible action} {thing})) (new-knext-eq '({groundwork} {thing}) '({fundament} {thing})) (new-knext-eq '({basis} {thing}) '({cornerstone} {thing})) (new-knext-eq '({base} {thing}) '({cornerstone} {thing})) (new-knext-eq '({foundation} {thing}) '({cornerstone} {thing})) (new-knext-type {fundament} {uncountable}) (new-knext-type {cornerstone} {uncountable}) (new-statement {fundament} {consists of} {cornerstone}) (new-knext-is-a '({cornerstone} {countable}) '({fundament} {uncountable})) (new-knext-eq '({provision} {thing}) '({planning} {thing})) (new-knext-type {planning} {uncountable}) (new-knext-type {preparation} {uncountable}) (new-statement {planning} {consists of} {preparation}) (new-knext-is-a '({preparation} {countable}) '({planning} {uncountable})) (new-knext-eq '({agreement} {thing}) '({arrangement} {thing})) (new-knext-eq '({deliberation} {thing}) '({calculation} {thing})) (new-knext-eq '({test} {thing}) '({trial run} {thing})) (new-knext-eq '({tryout} {thing}) '({trial run} {thing})) (new-knext-eq '({investigation} {thing}) '({probe} {thing})) (new-knext-eq '({canvass} {thing}) '({poll} {thing})) (new-knext-eq '({calculation} {thing}) '({reckoning} {thing})) (new-knext-eq '({computation} {thing}) '({reckoning} {thing})) (new-knext-type {figuring} {uncountable}) (new-knext-type {reckoning} {uncountable}) (new-statement {figuring} {consists of} {reckoning}) (new-knext-is-a '({reckoning} {countable}) '({figuring} {uncountable})) (new-knext-eq '({estimation} {thing}) '({estimate} {thing})) (new-knext-eq '({approximation} {thing}) '({estimate} {thing})) (new-knext-eq '({idea} {thing}) '({estimate} {thing})) (new-knext-eq '({dead reckoning} {thing}) '({guesswork} {thing})) (new-knext-eq '({guess} {thing}) '({guessing} {thing})) (new-knext-type {guesswork} {uncountable}) (new-knext-type {guessing} {uncountable}) (new-statement {guesswork} {consists of} {guessing}) (new-knext-is-a '({guessing} {countable}) '({guesswork} {uncountable})) (new-knext-eq '({savvy} {thing}) '({understanding} {thing})) (new-knext-eq '({apprehension} {thing}) '({discernment} {thing})) (new-knext-type {understanding} {uncountable}) (new-knext-type {discernment} {uncountable}) (new-statement {understanding} {consists of} {discernment}) (new-knext-is-a '({discernment} {countable}) '({understanding} {uncountable})) (new-knext-type {comprehension} {uncountable}) (new-knext-type {incomprehension} {uncountable}) (new-is-not-a {comprehension} {incomprehension}) (new-knext-eq '({grasp} {thing}) '({appreciation} {thing})) (new-knext-eq '({hold} {thing}) '({appreciation} {thing})) (new-knext-eq '({insight} {thing}) '({brainstorm} {thing})) (new-knext-eq '({brainwave} {thing}) '({brainstorm} {thing})) (add-english-names (list {realization} {realisation} {realization} {realisation}) (list "realization" "realisation" "realization" "realisation")) (new-knext-eq '({realization} {thing}) '({realization} {thing})) (new-knext-is-a '({realization} {countable}) '({recognition} {uncountable})) (new-knext-type {recognition} {uncountable}) (new-knext-type {realization} {uncountable}) (new-statement {recognition} {consists of} {realization}) (new-knext-eq '({discovery} {thing}) '({breakthrough} {thing})) (new-knext-eq '({find} {thing}) '({breakthrough} {thing})) (new-knext-is-a '({world} {countable}) '({reality} {uncountable})) (new-knext-type {reality} {uncountable}) (new-knext-type {world} {uncountable}) (new-statement {reality} {consists of} {world}) (new-knext-eq '({life} {thing}) '({living} {thing})) (add-english-names (list {center} {centre}) (list "center" "centre")) (new-knext-eq '({center} {thing}) '({center of attention} {thing})) (new-knext-eq '({centre of attention} {thing}) '({center of attention} {thing})) (new-knext-type {love} {uncountable}) (new-knext-type {passion} {uncountable}) (new-statement {love} {consists of} {passion}) (new-knext-is-a '({passion} {countable}) '({love} {uncountable})) (new-knext-eq '({subject} {thing}) '({topic} {thing})) (new-knext-eq '({issue} {thing}) '({topic} {thing})) (new-knext-eq '({matter} {thing}) '({topic} {thing})) (new-knext-eq '({data point} {thing}) '({datum} {thing})) (new-knext-eq '({indication} {thing}) '({meter reading} {thing})) (new-knext-eq '({conversance} {thing}) '({acquaintance} {thing})) (new-knext-eq '({conversancy} {thing}) '({acquaintance} {thing})) (new-knext-is-a '({acquaintance} {countable}) '({familiarity} {uncountable})) (new-knext-type {familiarity} {uncountable}) (new-knext-type {acquaintance} {uncountable}) (new-statement {familiarity} {consists of} {acquaintance}) (new-knext-eq '({item} {thing}) '({detail} {thing})) (new-knext-eq '({point} {thing}) '({detail} {thing})) (new-knext-eq '({illustration} {thing}) '({example} {thing})) (new-knext-eq '({instance} {thing}) '({example} {thing})) (new-knext-eq '({representative} {thing}) '({example} {thing})) (new-knext-eq '({case in point} {thing}) '({precedent} {thing})) (new-knext-eq '({circumstance} {thing}) '({consideration} {thing})) (new-knext-eq '({condition} {thing}) '({consideration} {thing})) (new-knext-eq '({grounds} {thing}) '({evidence} {thing})) (new-knext-eq '({cogent evidence} {thing}) '({proof} {thing})) (new-knext-eq '({verification} {thing}) '({confirmation} {thing})) (new-knext-eq '({check} {thing}) '({confirmation} {thing})) (new-knext-eq '({substantiation} {thing}) '({confirmation} {thing})) (new-knext-is-a '({establishment} {countable}) '({validation} {uncountable})) (new-knext-type {validation} {uncountable}) (new-knext-type {establishment} {uncountable}) (new-statement {validation} {consists of} {establishment}) (new-knext-eq '({falsification} {thing}) '({disproof} {thing})) (new-knext-eq '({refutation} {thing}) '({disproof} {thing})) (new-knext-eq '({track} {thing}) '({lead} {thing})) (new-knext-eq '({trail} {thing}) '({lead} {thing})) (new-knext-eq '({stimulation} {thing}) '({stimulus} {thing})) (new-knext-eq '({stimulant} {thing}) '({stimulus} {thing})) (new-knext-eq '({input} {thing}) '({stimulus} {thing})) (new-knext-eq '({botheration} {thing}) '({bother} {thing})) (new-knext-eq '({pain} {thing}) '({bother} {thing})) (new-knext-eq '({infliction} {thing}) '({bother} {thing})) (new-knext-eq '({annoyance} {thing}) '({pain in the ass} {thing})) (new-knext-eq '({pain in the neck} {thing}) '({pain in the ass} {thing})) (new-knext-type {bother} {uncountable}) (new-knext-type {pain in the ass} {uncountable}) (new-statement {bother} {consists of} {pain in the ass}) (new-knext-is-a '({pain in the ass} {countable}) '({bother} {uncountable})) (new-knext-eq '({concern} {thing}) '({worry} {thing})) (new-knext-eq '({headache} {thing}) '({worry} {thing})) (new-knext-eq '({vexation} {thing}) '({worry} {thing})) (new-knext-eq '({sorrow} {thing}) '({grief} {thing})) (new-knext-eq '({thought} {thing}) '({idea} {thing})) (new-knext-eq '({conception} {thing}) '({concept} {thing})) (new-knext-eq '({construct} {thing}) '({concept} {thing})) (new-knext-type {conception} {countable}) (new-knext-type {misconception} {countable}) (new-is-not-a {conception} {misconception}) (add-english-names (list {conceptualization} {conceptualisation} {conceptualization} {conceptualisation}) (list "conceptualization" "conceptualisation" "conceptualization" "conceptualisation")) (new-knext-eq '({conceptualization} {thing}) '({conceptualization} {thing})) (add-english-names (list {conceptualization} {conceptualisation} {conceptualization} {conceptualisation}) (list "conceptualization" "conceptualisation" "conceptualization" "conceptualisation")) (new-knext-eq '({conceptuality} {thing}) '({conceptualization} {thing})) (new-knext-eq '({judgement} {thing}) '({judgment} {thing})) (new-knext-eq '({mind} {thing}) '({judgment} {thing})) (new-knext-eq '({decision} {thing}) '({conclusion} {thing})) (new-knext-eq '({determination} {thing}) '({conclusion} {thing})) (new-knext-eq '({sort} {thing}) '({kind} {thing})) (new-knext-eq '({form} {thing}) '({kind} {thing})) (new-knext-eq '({variety} {thing}) '({kind} {thing})) (new-knext-type {type} {countable}) (new-knext-type {antitype} {countable}) (new-is-not-a {type} {antitype}) (new-knext-eq '({variant} {thing}) '({version} {thing})) (new-knext-eq '({variation} {thing}) '({version} {thing})) (new-knext-eq '({edition} {thing}) '({version} {thing})) (new-knext-type {antitype} {countable}) (new-knext-type {type} {countable}) (new-is-not-a {antitype} {type}) (new-knext-eq '({brand} {thing}) '({make} {thing})) (new-knext-eq '({limitation} {thing}) '({restriction} {thing})) (new-knext-eq '({guideline} {thing}) '({guidepost} {thing})) (new-knext-eq '({rule of thumb} {thing}) '({guidepost} {thing})) (new-knext-eq '({property} {thing}) '({attribute} {thing})) (new-knext-eq '({dimension} {thing}) '({attribute} {thing})) (new-knext-eq '({quality} {thing}) '({lineament} {thing})) (new-knext-eq '({character} {thing}) '({lineament} {thing})) (new-knext-eq '({characteristic} {thing}) '({feature} {thing})) (new-knext-eq '({facet} {thing}) '({aspect} {thing})) (new-knext-eq '({sphere} {thing}) '({sector} {thing})) (new-knext-eq '({amount} {thing}) '({sum} {thing})) (new-knext-eq '({total} {thing}) '({sum} {thing})) (new-knext-eq '({part} {thing}) '({division} {thing})) (new-knext-eq '({section} {thing}) '({division} {thing})) (new-knext-type {beginning} {countable}) (new-knext-type {middle} {countable}) (new-is-not-a {beginning} {middle}) (new-knext-type {beginning} {countable}) (new-knext-type {end} {countable}) (new-is-not-a {beginning} {end}) (new-knext-type {middle} {countable}) (new-knext-type {end} {countable}) (new-is-not-a {middle} {end}) (new-knext-type {middle} {countable}) (new-knext-type {beginning} {countable}) (new-is-not-a {middle} {beginning}) (new-knext-type {end} {countable}) (new-knext-type {middle} {countable}) (new-is-not-a {end} {middle}) (new-knext-type {end} {countable}) (new-knext-type {beginning} {countable}) (new-is-not-a {end} {beginning}) (new-knext-eq '({constituent} {thing}) '({component} {thing})) (new-knext-eq '({element} {thing}) '({component} {thing})) (new-knext-eq '({factor} {thing}) '({component} {thing})) (new-knext-eq '({ingredient} {thing}) '({component} {thing})) (new-knext-eq '({composite} {thing}) '({complex} {thing})) (new-knext-eq '({possibility} {thing}) '({hypothesis} {thing})) (new-knext-eq '({theory} {thing}) '({hypothesis} {thing})) (new-knext-eq '({theoretical account} {thing}) '({model} {thing})) (new-knext-eq '({framework} {thing}) '({model} {thing})) (new-knext-eq '({speculation} {thing}) '({conjecture} {thing})) (new-knext-eq '({supposition} {thing}) '({assumption} {thing})) (new-knext-is-a '({assumption} {countable}) '({supposal} {uncountable})) (new-knext-type {supposal} {uncountable}) (new-knext-type {assumption} {uncountable}) (new-statement {supposal} {consists of} {assumption}) (new-knext-is-a '({requirement} {countable}) '({demand} {countable})) (new-knext-is-a '({demand} {countable}) '({requirement} {countable})) (new-knext-eq '({presumption} {thing}) '({given} {thing})) (new-knext-eq '({precondition} {thing}) '({given} {thing})) (new-knext-type {misconception} {countable}) (new-knext-type {conception} {countable}) (new-is-not-a {misconception} {conception}) (new-knext-eq '({error} {thing}) '({erroneous belief} {thing})) (new-knext-eq '({mistake} {thing}) '({misapprehension} {thing})) (new-knext-eq '({misunderstanding} {thing}) '({misapprehension} {thing})) (new-knext-eq '({illusion} {thing}) '({phantasy} {thing})) (new-knext-eq '({fantasy} {thing}) '({phantasy} {thing})) (new-knext-eq '({fancy} {thing}) '({phantasy} {thing})) (new-knext-eq '({hallucination} {thing}) '({delusion} {thing})) (new-knext-eq '({program} {thing}) '({plan} {thing})) (add-english-names (list {program} {programme} {program} {programme}) (list "program" "programme" "program" "programme")) (new-knext-eq '({program} {thing}) '({plan} {thing})) (new-knext-eq '({maneuver} {thing}) '({tactic} {thing})) (add-english-names (list {maneuver} {manoeuvre}) (list "maneuver" "manoeuvre")) (new-knext-eq '({maneuver} {thing}) '({tactic} {thing})) (new-knext-type {tactic} {countable}) (new-knext-type {tactics} {countable}) (new-statement {tactics} {consists of} {tactic}) (new-knext-type {tactics} {uncountable}) (new-knext-type {tactic} {uncountable}) (new-statement {tactics} {consists of} {tactic}) (new-knext-eq '({strategy} {thing}) '({scheme} {thing})) (new-knext-eq '({contrivance} {thing}) '({dodge} {thing})) (new-knext-eq '({stratagem} {thing}) '({dodge} {thing})) (new-knext-eq '({secret plan} {thing}) '({plot} {thing})) (new-knext-eq '({game} {thing}) '({plot} {thing})) (new-knext-eq '({cabal} {thing}) '({conspiracy} {thing})) (new-knext-eq '({intuition} {thing}) '({hunch} {thing})) (new-knext-eq '({suspicion} {thing}) '({hunch} {thing})) (new-knext-eq '({bosom} {thing}) '({heart} {thing})) (new-knext-eq '({substance} {thing}) '({meaning} {thing})) (new-knext-eq '({motif} {thing}) '({theme} {thing})) (new-knext-eq '({import} {thing}) '({significance} {thing})) (new-knext-eq '({implication} {thing}) '({significance} {thing})) (new-knext-eq '({meat} {thing}) '({inwardness} {thing})) (new-knext-eq '({pith} {thing}) '({inwardness} {thing})) (new-knext-eq '({kernel} {thing}) '({essence} {thing})) (new-knext-eq '({substance} {thing}) '({essence} {thing})) (new-knext-eq '({core} {thing}) '({essence} {thing})) (new-knext-eq '({center} {thing}) '({essence} {thing})) (add-english-names (list {center} {centre}) (list "center" "centre")) (new-knext-eq '({center} {thing}) '({essence} {thing})) (new-knext-eq '({gist} {thing}) '({essence} {thing})) (new-knext-eq '({heart} {thing}) '({essence} {thing})) (new-knext-eq '({heart and soul} {thing}) '({essence} {thing})) (new-knext-eq '({marrow} {thing}) '({essence} {thing})) (new-knext-eq '({nub} {thing}) '({essence} {thing})) (new-knext-eq '({sum} {thing}) '({essence} {thing})) (new-knext-is-a '({essence} {countable}) '({inwardness} {uncountable})) (new-knext-type {inwardness} {uncountable}) (new-knext-type {essence} {uncountable}) (new-statement {inwardness} {consists of} {essence}) (new-knext-eq '({reference} {thing}) '({denotation} {thing})) (new-knext-eq '({extension} {thing}) '({denotation} {thing})) (new-knext-eq '({example} {thing}) '({exemplar} {thing})) (new-knext-eq '({model} {thing}) '({exemplar} {thing})) (new-knext-eq '({good example} {thing}) '({exemplar} {thing})) (new-knext-eq '({scheme} {thing}) '({schema} {thing})) (new-knext-eq '({reading} {thing}) '({interpretation} {thing})) (new-knext-eq '({version} {thing}) '({interpretation} {thing})) (new-knext-eq '({part} {thing}) '({theatrical role} {thing})) (new-knext-eq '({persona} {thing}) '({theatrical role} {thing})) (new-knext-is-a '({character} {countable}) '({theatrical role} {countable})) (new-knext-is-a '({theatrical role} {countable}) '({character} {countable})) (new-knext-eq '({perception} {thing}) '({percept} {thing})) (new-knext-eq '({form} {thing}) '({pattern} {thing})) (new-knext-eq '({shape} {thing}) '({pattern} {thing})) (new-knext-eq '({view} {thing}) '({vista} {thing})) (new-knext-eq '({aspect} {thing}) '({vista} {thing})) (new-knext-eq '({prospect} {thing}) '({vista} {thing})) (new-knext-eq '({scene} {thing}) '({vista} {thing})) (new-knext-eq '({panorama} {thing}) '({vista} {thing})) (new-knext-eq '({visualization} {thing}) '({visual image} {thing})) (add-english-names (list {visualization} {visualisation} {visualization} {visualisation}) (list "visualization" "visualisation" "visualization" "visualisation")) (new-knext-eq '({visualization} {thing}) '({visual image} {thing})) (new-knext-eq '({impression} {thing}) '({mental picture} {thing})) (new-knext-eq '({semblance} {thing}) '({illusion} {thing})) (new-knext-type {belief} {countable}) (new-knext-type {unbelief} {uncountable}) (new-is-not-a {belief} {unbelief}) (new-knext-eq '({strong belief} {thing}) '({conviction} {thing})) (new-knext-eq '({article of faith} {thing}) '({conviction} {thing})) (new-knext-eq '({trust} {thing}) '({faith} {thing})) (new-knext-eq '({philosophical system} {thing}) '({doctrine} {thing})) (new-knext-eq '({school of thought} {thing}) '({doctrine} {thing})) (new-knext-eq '({ism} {thing}) '({doctrine} {thing})) (new-knext-is-a '({doctrine} {countable}) '({philosophy} {uncountable})) (new-knext-is-a '({philosophy} {uncountable}) '({doctrine} {countable})) (new-knext-eq '({outlook} {thing}) '({expectation} {thing})) (new-knext-eq '({prospect} {thing}) '({expectation} {thing})) (new-knext-eq '({sentiment} {thing}) '({opinion} {thing})) (new-knext-eq '({persuasion} {thing}) '({opinion} {thing})) (new-knext-eq '({view} {thing}) '({opinion} {thing})) (new-knext-eq '({thought} {thing}) '({opinion} {thing})) (new-knext-eq '({faith} {thing}) '({religion} {thing})) (new-knext-eq '({religious belief} {thing}) '({religion} {thing})) (new-knext-eq '({popular opinion} {thing}) '({public opinion} {thing})) (new-knext-eq '({vox populi} {thing}) '({public opinion} {thing})) (new-knext-eq '({hope} {thing}) '({promise} {thing})) (new-knext-eq '({expectancy} {thing}) '({anticipation} {thing})) (new-knext-eq '({credo} {thing}) '({creed} {thing})) (new-knext-eq '({disbelief} {thing}) '({unbelief} {thing})) (new-knext-type {unbelief} {uncountable}) (new-knext-type {belief} {countable}) (new-is-not-a {unbelief} {belief}) (new-knext-is-a '({goal} {countable}) '({end} {uncountable})) (new-knext-type {end} {uncountable}) (new-knext-type {goal} {uncountable}) (new-statement {end} {consists of} {goal}) (new-knext-eq '({aim} {thing}) '({objective} {thing})) (new-knext-eq '({object} {thing}) '({objective} {thing})) (new-knext-eq '({target} {thing}) '({objective} {thing})) (new-knext-eq '({terminus} {thing}) '({destination} {thing})) (new-knext-eq '({intent} {thing}) '({purpose} {thing})) (new-knext-eq '({intention} {thing}) '({purpose} {thing})) (new-knext-eq '({aim} {thing}) '({purpose} {thing})) (new-knext-eq '({design} {thing}) '({purpose} {thing})) (new-knext-type {acculturation} {uncountable}) (new-knext-type {culture} {uncountable}) (new-statement {acculturation} {consists of} {culture}) (new-knext-is-a '({culture} {countable}) '({acculturation} {uncountable})) (new-knext-eq '({rawness} {thing}) '({inexperience} {thing})) (new-knext-type {inexperience} {uncountable}) (new-knext-type {experience} {uncountable}) (new-is-not-a {inexperience} {experience}) (new-knext-eq '({subject} {thing}) '({discipline} {thing})) (new-knext-eq '({subject area} {thing}) '({discipline} {thing})) (new-knext-eq '({subject field} {thing}) '({discipline} {thing})) (new-knext-eq '({field} {thing}) '({discipline} {thing})) (new-knext-eq '({field of study} {thing}) '({discipline} {thing})) (new-knext-eq '({study} {thing}) '({discipline} {thing})) (new-knext-eq '({bailiwick} {thing}) '({discipline} {thing})) (new-knext-eq '({knowledge base} {thing}) '({knowledge domain} {thing})) (new-knext-eq '({scientific discipline} {thing}) '({science} {thing})) (add-english-names (list {math} {maths}) (list "math" "maths")) (new-knext-eq '({math} {thing}) '({mathematics} {thing})) (new-knext-eq '({norm} {thing}) '({average} {thing})) (new-knext-eq '({population} {thing}) '({universe} {thing})) (new-knext-is-a '({medicine} {uncountable}) '({medical specialty} {countable})) (new-knext-is-a '({medical specialty} {countable}) '({medicine} {uncountable})) (new-knext-eq '({dental medicine} {thing}) '({dentistry} {thing})) (new-knext-eq '({odontology} {thing}) '({dentistry} {thing})) (new-knext-eq '({botany} {thing}) '({phytology} {thing})) (new-knext-eq '({ecology} {thing}) '({bionomics} {thing})) (new-knext-eq '({chemical science} {thing}) '({chemistry} {thing})) (new-knext-eq '({natural philosophy} {thing}) '({physics} {thing})) (new-knext-eq '({uranology} {thing}) '({astronomy} {thing})) (new-knext-eq '({geographics} {thing}) '({geography} {thing})) (new-knext-eq '({technology} {thing}) '({engineering science} {thing})) (new-knext-eq '({computing} {thing}) '({computer science} {thing})) (new-knext-eq '({psychological science} {thing}) '({psychology} {thing})) (new-knext-eq '({government} {thing}) '({politics} {thing})) (new-knext-eq '({economic science} {thing}) '({economics} {thing})) (new-knext-eq '({political economy} {thing}) '({economics} {thing})) (new-knext-eq '({ethics} {thing}) '({moral philosophy} {thing})) (new-knext-eq '({divinity} {thing}) '({theology} {thing})) (new-knext-type {credence} {uncountable}) (new-knext-type {acceptance} {uncountable}) (new-statement {credence} {consists of} {acceptance}) (new-knext-is-a '({acceptance} {countable}) '({credence} {uncountable})) (new-knext-eq '({outlook} {thing}) '({mentality} {thing})) (new-knext-eq '({mindset} {thing}) '({mentality} {thing})) (new-knext-eq '({posture} {thing}) '({stance} {thing})) (new-knext-eq '({disposition} {thing}) '({inclination} {thing})) (new-knext-eq '({tendency} {thing}) '({inclination} {thing})) (new-knext-eq '({understanding} {thing}) '({sympathy} {thing})) (new-knext-eq '({set} {thing}) '({bent} {thing})) (new-knext-eq '({preference} {thing}) '({predilection} {thing})) (new-knext-eq '({orientation} {thing}) '({predilection} {thing})) (new-knext-type {partiality} {countable}) (new-knext-type {impartiality} {uncountable}) (new-is-not-a {partiality} {impartiality}) (add-english-names (list {partizanship} {partisanship} {partizanship} {partisanship}) (list "partizanship" "partisanship" "partizanship" "partisanship")) (add-english-names (list {partizanship} {partisanship} {partizanship} {partisanship}) (list "partizanship" "partisanship" "partizanship" "partisanship")) (new-knext-type {partizanship} {uncountable}) (new-knext-type {partiality} {uncountable}) (new-statement {partizanship} {consists of} {partiality}) (new-knext-eq '({prejudice} {thing}) '({bias} {thing})) (new-knext-eq '({preconception} {thing}) '({bias} {thing})) (new-knext-eq '({nonpartisanship} {thing}) '({impartiality} {thing})) (new-knext-type {impartiality} {countable}) (new-knext-type {partiality} {countable}) (new-is-not-a {impartiality} {partiality}) (new-knext-type {tolerance} {uncountable}) (new-knext-type {intolerance} {uncountable}) (new-is-not-a {tolerance} {intolerance}) (new-knext-type {intolerance} {uncountable}) (new-knext-type {tolerance} {uncountable}) (new-is-not-a {intolerance} {tolerance}) (new-knext-eq '({fanatism} {thing}) '({fanaticism} {thing})) (new-knext-eq '({zealotry} {thing}) '({fanaticism} {thing})) (new-knext-eq '({esteem} {thing}) '({respect} {thing})) (new-knext-eq '({regard} {thing}) '({respect} {thing})) (new-knext-type {respect} {uncountable}) (new-knext-type {disrespect} {uncountable}) (new-is-not-a {respect} {disrespect}) (new-knext-eq '({estimate} {thing}) '({estimation} {thing})) (new-knext-eq '({report} {thing}) '({reputation} {thing})) (new-knext-type {disrespect} {uncountable}) (new-knext-type {respect} {uncountable}) (new-is-not-a {disrespect} {respect}) (new-knext-eq '({position} {thing}) '({view} {thing})) (new-knext-eq '({perspective} {thing}) '({view} {thing})) (new-knext-eq '({viewpoint} {thing}) '({point of view} {thing})) (new-knext-eq '({stand} {thing}) '({point of view} {thing})) (new-knext-eq '({standpoint} {thing}) '({point of view} {thing})) (new-knext-eq '({angle} {thing}) '({slant} {thing})) (new-knext-eq '({ideology} {thing}) '({political orientation} {thing})) (new-knext-eq '({political theory} {thing}) '({political orientation} {thing})) (new-knext-eq '({christian religion} {thing}) '({christianity} {thing})) (new-knext-eq '({level} {thing}) '({layer} {thing})) (new-knext-eq '({stratum} {thing}) '({layer} {thing})) (new-knext-is-a '({communication} {uncountable}) '({communicating} {uncountable})) (new-knext-is-a '({communicating} {uncountable}) '({communication} {uncountable})) (new-knext-eq '({impartation} {thing}) '({imparting} {thing})) (new-knext-is-a '({conveyance} {countable}) '({imparting} {countable})) (new-knext-is-a '({imparting} {countable}) '({conveyance} {countable})) (new-knext-eq '({cypher} {thing}) '({cipher} {thing})) (new-knext-eq '({sheet} {thing}) '({piece of paper} {thing})) (new-knext-eq '({sheet of paper} {thing}) '({piece of paper} {thing})) (new-knext-eq '({folio} {thing}) '({leaf} {thing})) (new-knext-eq '({waveband} {thing}) '({frequency band} {thing})) (new-knext-eq '({contact} {thing}) '({liaison} {thing})) (new-knext-eq '({film} {thing}) '({cinema} {thing})) (new-knext-is-a '({cinema} {countable}) '({celluloid} {uncountable})) (new-knext-type {celluloid} {uncountable}) (new-knext-type {cinema} {uncountable}) (new-statement {celluloid} {consists of} {cinema}) (new-knext-eq '({postal service} {thing}) '({mail service} {thing})) (new-knext-is-a '({mail} {countable}) '({mail service} {countable})) (new-knext-is-a '({mail service} {countable}) '({mail} {countable})) (new-knext-eq '({news story} {thing}) '({news article} {thing})) (new-knext-eq '({newspaper article} {thing}) '({news article} {thing})) (new-knext-eq '({telephone} {thing}) '({telephony} {thing})) (new-knext-eq '({tv} {thing}) '({telecasting} {thing})) (new-knext-eq '({video} {thing}) '({telecasting} {thing})) (new-knext-type {television} {uncountable}) (new-knext-type {telecasting} {uncountable}) (new-statement {television} {consists of} {telecasting}) (new-knext-is-a '({telecasting} {countable}) '({television} {uncountable})) (new-knext-eq '({sound} {thing}) '({audio} {thing})) (new-knext-eq '({linguistic communication} {thing}) '({language} {thing})) (new-knext-eq '({linguistic unit} {thing}) '({language unit} {thing})) (new-knext-eq '({signifier} {thing}) '({form} {thing})) (new-knext-eq '({descriptor} {thing}) '({form} {thing})) (new-knext-type {plural} {countable}) (new-knext-type {singular} {countable}) (new-is-not-a {plural} {singular}) (new-knext-eq '({language} {thing}) '({nomenclature} {thing})) (new-knext-is-a '({terminology} {uncountable}) '({nomenclature} {uncountable})) (new-knext-is-a '({nomenclature} {uncountable}) '({terminology} {uncountable})) (new-knext-eq '({syntactic category} {thing}) '({grammatical category} {thing})) (new-knext-eq '({form class} {thing}) '({part of speech} {thing})) (new-knext-eq '({word class} {thing}) '({part of speech} {thing})) (new-knext-eq '({family name} {thing}) '({surname} {thing})) (new-knext-eq '({cognomen} {thing}) '({surname} {thing})) (new-knext-eq '({last name} {thing}) '({surname} {thing})) (new-knext-eq '({denomination} {thing}) '({appellation} {thing})) (new-knext-eq '({designation} {thing}) '({appellation} {thing})) (new-knext-eq '({appellative} {thing}) '({appellation} {thing})) (new-knext-eq '({header} {thing}) '({heading} {thing})) (new-knext-eq '({caption} {thing}) '({legend} {thing})) (new-knext-eq '({written language} {thing}) '({written communication} {thing})) (new-knext-eq '({black and white} {thing}) '({written communication} {thing})) (new-knext-eq '({cipher} {thing}) '({cryptograph} {thing})) (new-knext-eq '({cypher} {thing}) '({cryptograph} {thing})) (new-knext-eq '({secret code} {thing}) '({cryptograph} {thing})) (new-knext-eq '({website} {thing}) '({web site} {thing})) (new-knext-eq '({internet site} {thing}) '({web site} {thing})) (new-knext-eq '({writing} {thing}) '({written material} {thing})) (new-knext-type {written material} {uncountable}) (new-knext-type {piece of writing} {uncountable}) (new-statement {written material} {consists of} {piece of writing}) (new-knext-is-a '({piece of writing} {countable}) '({written material} {uncountable})) (new-knext-eq '({literary work} {thing}) '({literary composition} {thing})) (new-knext-eq '({fable} {thing}) '({legend} {thing})) (new-knext-eq '({verse form} {thing}) '({poem} {thing})) (new-knext-eq '({copy} {thing}) '({written matter} {thing})) (new-knext-eq '({subdivision} {thing}) '({section} {thing})) (new-knext-eq '({preface} {thing}) '({foreword} {thing})) (new-knext-eq '({prolusion} {thing}) '({foreword} {thing})) (new-knext-eq '({conclusion} {thing}) '({close} {thing})) (new-knext-eq '({closing} {thing}) '({close} {thing})) (new-knext-eq '({ending} {thing}) '({close} {thing})) (new-knext-eq '({supplement} {thing}) '({addendum} {thing})) (new-knext-eq '({postscript} {thing}) '({addendum} {thing})) (new-knext-eq '({excerption} {thing}) '({excerpt} {thing})) (new-knext-eq '({extract} {thing}) '({excerpt} {thing})) (new-knext-eq '({selection} {thing}) '({excerpt} {thing})) (new-knext-eq '({journal} {thing}) '({diary} {thing})) (new-knext-eq '({lettering} {thing}) '({inscription} {thing})) (new-knext-eq '({ms} {thing}) '({manuscript} {thing})) (new-knext-eq '({version} {thing}) '({adaptation} {thing})) (new-knext-eq '({thesis} {thing}) '({dissertation} {thing})) (new-knext-eq '({tract} {thing}) '({pamphlet} {thing})) (new-knext-eq '({composition} {thing}) '({paper} {thing})) (new-knext-eq '({report} {thing}) '({paper} {thing})) (new-knext-eq '({theme} {thing}) '({paper} {thing})) (new-knext-eq '({review} {thing}) '({critique} {thing})) (new-knext-eq '({critical review} {thing}) '({critique} {thing})) (new-knext-eq '({review article} {thing}) '({critique} {thing})) (new-knext-eq '({brochure} {thing}) '({booklet} {thing})) (new-knext-eq '({folder} {thing}) '({booklet} {thing})) (new-knext-eq '({leaflet} {thing}) '({booklet} {thing})) (new-knext-eq '({pamphlet} {thing}) '({booklet} {thing})) (new-knext-eq '({text edition} {thing}) '({textbook} {thing})) (new-knext-eq '({schoolbook} {thing}) '({textbook} {thing})) (new-knext-eq '({school text} {thing}) '({textbook} {thing})) (new-knext-type {text edition} {countable}) (new-knext-type {trade edition} {countable}) (new-is-not-a {text edition} {trade edition}) (add-english-names (list {catalog} {catalogue} {catalogue}) (list "catalog" "catalogue" "catalogue")) (new-knext-eq '({catalog} {thing}) '({catalog} {thing})) (new-knext-eq '({reference work} {thing}) '({reference book} {thing})) (new-knext-eq '({book of facts} {thing}) '({reference book} {thing})) (new-knext-eq '({lexicon} {thing}) '({dictionary} {thing})) (new-knext-eq '({condensation} {thing}) '({abridgement} {thing})) (new-knext-eq '({abridgment} {thing}) '({abridgement} {thing})) (new-knext-eq '({capsule} {thing}) '({abridgement} {thing})) (new-knext-eq '({outline} {thing}) '({synopsis} {thing})) (new-knext-eq '({abstract} {thing}) '({synopsis} {thing})) (new-knext-eq '({precis} {thing}) '({synopsis} {thing})) (new-knext-eq '({review} {thing}) '({recap} {thing})) (new-knext-eq '({sketch} {thing}) '({resume} {thing})) (new-knext-eq '({survey} {thing}) '({resume} {thing})) (new-knext-type {document} {countable}) (new-knext-type {papers} {countable}) (new-statement {papers} {consists of} {document}) (new-knext-type {papers} {uncountable}) (new-knext-type {document} {uncountable}) (new-statement {papers} {consists of} {document}) (new-knext-eq '({certification} {thing}) '({certificate} {thing})) (new-knext-eq '({credential} {thing}) '({certificate} {thing})) (new-knext-type {certificate} {countable}) (new-knext-type {credentials} {countable}) (new-statement {credentials} {consists of} {certificate}) (new-knext-type {credentials} {uncountable}) (new-knext-type {certificate} {uncountable}) (new-statement {credentials} {consists of} {certificate}) (new-knext-eq '({right of first publication} {thing}) '({copyright} {thing})) (new-knext-eq '({legal instrument} {thing}) '({legal document} {thing})) (new-knext-eq '({official document} {thing}) '({legal document} {thing})) (new-knext-eq '({instrument} {thing}) '({legal document} {thing})) (new-knext-eq '({listing} {thing}) '({list} {thing})) (new-knext-eq '({agenda} {thing}) '({agendum} {thing})) (new-knext-eq '({order of business} {thing}) '({agendum} {thing})) (new-knext-eq '({bill of fare} {thing}) '({menu} {thing})) (new-knext-eq '({card} {thing}) '({menu} {thing})) (new-knext-eq '({carte du jour} {thing}) '({menu} {thing})) (new-knext-eq '({carte} {thing}) '({menu} {thing})) (new-knext-eq '({roll} {thing}) '({roster} {thing})) (new-knext-eq '({transcript} {thing}) '({copy} {thing})) (new-knext-eq '({registry} {thing}) '({register} {thing})) (new-knext-eq '({declaration} {thing}) '({resolution} {thing})) (new-knext-eq '({resolve} {thing}) '({resolution} {thing})) (new-knext-eq '({petition} {thing}) '({request} {thing})) (new-knext-eq '({postulation} {thing}) '({request} {thing})) (new-knext-eq '({solicitation} {thing}) '({ingathering} {thing})) (new-knext-eq '({appeal} {thing}) '({ingathering} {thing})) (new-knext-eq '({collection} {thing}) '({ingathering} {thing})) (new-knext-eq '({history} {thing}) '({account} {thing})) (new-knext-eq '({chronicle} {thing}) '({account} {thing})) (new-knext-eq '({story} {thing}) '({account} {thing})) (new-knext-eq '({life story} {thing}) '({biography} {thing})) (new-knext-eq '({life history} {thing}) '({biography} {thing})) (new-knext-eq '({bill} {thing}) '({invoice} {thing})) (new-knext-eq '({account} {thing}) '({invoice} {thing})) (new-knext-eq '({check} {thing}) '({tab} {thing})) (new-knext-eq '({chit} {thing}) '({tab} {thing})) (new-knext-eq '({voucher} {thing}) '({coupon} {thing})) (new-knext-type {policy} {uncountable}) (new-knext-type {insurance policy} {uncountable}) (new-statement {policy} {consists of} {insurance policy}) (new-knext-is-a '({insurance policy} {countable}) '({policy} {uncountable})) (new-knext-eq '({appraisal} {thing}) '({estimation} {thing})) (new-knext-eq '({estimate} {thing}) '({estimation} {thing})) (new-knext-eq '({organic law} {thing}) '({fundamental law} {thing})) (new-knext-eq '({constitution} {thing}) '({fundamental law} {thing})) (new-knext-is-a '({legislation} {countable}) '({statute law} {uncountable})) (new-knext-eq '({edict} {thing}) '({decree} {thing})) (new-knext-eq '({fiat} {thing}) '({decree} {thing})) (new-knext-eq '({order} {thing}) '({decree} {thing})) (new-knext-eq '({rescript} {thing}) '({decree} {thing})) (new-knext-eq '({prohibition} {thing}) '({ban} {thing})) (new-knext-eq '({proscription} {thing}) '({ban} {thing})) (new-knext-eq '({will} {thing}) '({testament} {thing})) (new-knext-eq '({title} {thing}) '({deed} {thing})) (add-english-names (list {license} {licence}) (list "license" "licence")) (new-knext-eq '({permit} {thing}) '({license} {thing})) (new-knext-eq '({judgment} {thing}) '({legal opinion} {thing})) (new-knext-eq '({judgement} {thing}) '({legal opinion} {thing})) (new-knext-eq '({amnesty} {thing}) '({pardon} {thing})) (new-knext-eq '({release} {thing}) '({acquittance} {thing})) (new-knext-eq '({rebuttal} {thing}) '({rebutter} {thing})) (new-knext-eq '({software system} {thing}) '({software program} {thing})) (new-knext-eq '({software package} {thing}) '({software program} {thing})) (new-knext-eq '({package} {thing}) '({software program} {thing})) (new-knext-type {software} {uncountable}) (new-knext-type {hardware} {uncountable}) (new-is-not-a {software} {hardware}) (new-knext-type {software} {uncountable}) (new-knext-type {software program} {uncountable}) (new-statement {software} {consists of} {software program}) (new-knext-type {software program} {countable}) (new-knext-type {software} {countable}) (new-statement {software} {consists of} {software program}) (add-english-names (list {program} {programme} {program} {programme}) (list "program" "programme" "program" "programme")) (new-knext-eq '({program} {thing}) '({computer program} {thing})) (new-knext-eq '({subprogram} {thing}) '({subroutine} {thing})) (new-knext-eq '({procedure} {thing}) '({subroutine} {thing})) (new-knext-eq '({function} {thing}) '({subroutine} {thing})) (new-knext-eq '({collection} {thing}) '({compendium} {thing})) (new-knext-eq '({series} {thing}) '({serial publication} {thing})) (new-knext-eq '({number} {thing}) '({issue} {thing})) (new-knext-eq '({content} {thing}) '({message} {thing})) (new-knext-eq '({subject matter} {thing}) '({message} {thing})) (new-knext-eq '({substance} {thing}) '({message} {thing})) (new-knext-eq '({topic} {thing}) '({subject} {thing})) (new-knext-eq '({theme} {thing}) '({subject} {thing})) (new-knext-eq '({significance} {thing}) '({signification} {thing})) (new-knext-eq '({import} {thing}) '({signification} {thing})) (new-knext-is-a '({meaning} {countable}) '({signification} {uncountable})) (new-knext-type {signification} {uncountable}) (new-knext-type {meaning} {uncountable}) (new-statement {signification} {consists of} {meaning}) (new-knext-eq '({sense} {thing}) '({signified} {thing})) (new-knext-eq '({word sense} {thing}) '({word meaning} {thing})) (new-knext-eq '({acceptation} {thing}) '({word meaning} {thing})) (new-knext-type {dysphemism} {countable}) (new-knext-type {euphemism} {countable}) (new-is-not-a {dysphemism} {euphemism}) (new-knext-eq '({spirit} {thing}) '({purport} {thing})) (new-knext-type {intent} {uncountable}) (new-knext-type {purport} {uncountable}) (new-statement {intent} {consists of} {purport}) (new-knext-is-a '({purport} {countable}) '({intent} {uncountable})) (new-knext-eq '({nicety} {thing}) '({nuance} {thing})) (new-knext-eq '({shade} {thing}) '({nuance} {thing})) (new-knext-eq '({subtlety} {thing}) '({nuance} {thing})) (new-knext-eq '({refinement} {thing}) '({nuance} {thing})) (new-knext-eq '({bunk} {thing}) '({nonsense} {thing})) (new-knext-eq '({nonsensicality} {thing}) '({nonsense} {thing})) (new-knext-eq '({meaninglessness} {thing}) '({nonsense} {thing})) (new-knext-eq '({hokum} {thing}) '({nonsense} {thing})) (new-knext-eq '({piffle} {thing}) '({balderdash} {thing})) (new-knext-eq '({palaver} {thing}) '({empty talk} {thing})) (new-knext-eq '({hot air} {thing}) '({empty talk} {thing})) (new-knext-eq '({rhetoric} {thing}) '({empty talk} {thing})) (new-knext-is-a '({empty words} {uncountable}) '({empty talk} {uncountable})) (new-knext-is-a '({empty talk} {uncountable}) '({empty words} {uncountable})) (new-knext-eq '({jabbering} {thing}) '({jabber} {thing})) (new-knext-eq '({gabble} {thing}) '({jabber} {thing})) (new-knext-eq '({boloney} {thing}) '({baloney} {thing})) (new-knext-eq '({bilgewater} {thing}) '({baloney} {thing})) (new-knext-eq '({drool} {thing}) '({baloney} {thing})) (new-knext-eq '({twaddle} {thing}) '({baloney} {thing})) (new-knext-eq '({humbug} {thing}) '({bosh} {thing})) (new-knext-eq '({taradiddle} {thing}) '({bosh} {thing})) (new-knext-eq '({tarradiddle} {thing}) '({bosh} {thing})) (new-knext-eq '({tommyrot} {thing}) '({bosh} {thing})) (new-knext-eq '({tosh} {thing}) '({bosh} {thing})) (new-knext-type {baloney} {uncountable}) (new-knext-type {bosh} {uncountable}) (new-statement {baloney} {consists of} {bosh}) (new-knext-is-a '({bosh} {countable}) '({baloney} {uncountable})) (new-knext-eq '({cutting} {thing}) '({clipping} {thing})) (new-knext-eq '({press cutting} {thing}) '({clipping} {thing})) (new-knext-eq '({quote} {thing}) '({quotation} {thing})) (new-knext-eq '({citation} {thing}) '({quotation} {thing})) (new-knext-eq '({film} {thing}) '({movie} {thing})) (new-knext-eq '({picture} {thing}) '({movie} {thing})) (new-knext-eq '({moving picture} {thing}) '({movie} {thing})) (new-knext-eq '({motion picture} {thing}) '({movie} {thing})) (new-knext-eq '({picture show} {thing}) '({movie} {thing})) (new-knext-eq '({pic} {thing}) '({movie} {thing})) (new-knext-eq '({flick} {thing}) '({movie} {thing})) (new-knext-eq '({shot} {thing}) '({scene} {thing})) (new-knext-eq '({program} {thing}) '({broadcast} {thing})) (add-english-names (list {program} {programme} {program} {programme}) (list "program" "programme" "program" "programme")) (new-knext-eq '({program} {thing}) '({broadcast} {thing})) (new-knext-eq '({news show} {thing}) '({news program} {thing})) (new-knext-is-a '({news program} {countable}) '({news} {uncountable})) (new-knext-type {news} {uncountable}) (new-knext-type {news program} {uncountable}) (new-statement {news} {consists of} {news program}) (new-knext-eq '({series} {thing}) '({serial} {thing})) (add-english-names (list {installment} {instalment} {instalment}) (list "installment" "instalment" "instalment")) (new-knext-eq '({episode} {thing}) '({installment} {thing})) (add-english-names (list {installment} {instalment} {instalment}) (list "installment" "instalment" "instalment")) (new-knext-eq '({installment} {thing}) '({installment} {thing})) (new-knext-eq '({wire} {thing}) '({telegram} {thing})) (new-knext-eq '({missive} {thing}) '({letter} {thing})) (new-knext-eq '({note} {thing}) '({short letter} {thing})) (new-knext-eq '({billet} {thing}) '({short letter} {thing})) (new-knext-eq '({post card} {thing}) '({postcard} {thing})) (new-knext-eq '({postal card} {thing}) '({postcard} {thing})) (new-knext-eq '({acknowledgment} {thing}) '({acknowledgement} {thing})) (new-knext-eq '({salutation} {thing}) '({greeting} {thing})) (new-knext-eq '({response} {thing}) '({reception} {thing})) (new-knext-type {hospitality} {uncountable}) (new-knext-type {inhospitality} {countable}) (new-is-not-a {hospitality} {inhospitality}) (new-knext-is-a '({cordial reception} {countable}) '({hospitality} {uncountable})) (new-knext-type {hospitality} {uncountable}) (new-knext-type {cordial reception} {uncountable}) (new-statement {hospitality} {consists of} {cordial reception}) (new-knext-eq '({calling card} {thing}) '({visiting card} {thing})) (new-knext-eq '({intelligence} {thing}) '({news} {thing})) (new-knext-eq '({word} {thing}) '({news} {thing})) (new-knext-is-a '({news} {uncountable}) '({tidings} {uncountable})) (new-knext-is-a '({tidings} {uncountable}) '({news} {uncountable})) (new-knext-eq '({clew} {thing}) '({clue} {thing})) (new-knext-eq '({cue} {thing}) '({clue} {thing})) (new-knext-eq '({footmark} {thing}) '({footprint} {thing})) (new-knext-eq '({step} {thing}) '({footprint} {thing})) (new-knext-eq '({testimony} {thing}) '({testimonial} {thing})) (new-knext-eq '({counsel} {thing}) '({guidance} {thing})) (new-knext-eq '({counseling} {thing}) '({guidance} {thing})) (add-english-names (list {counseling} {counselling} {counselling}) (list "counseling" "counselling" "counselling")) (new-knext-eq '({counseling} {thing}) '({guidance} {thing})) (new-knext-eq '({direction} {thing}) '({guidance} {thing})) (new-knext-eq '({tip} {thing}) '({steer} {thing})) (new-knext-eq '({wind} {thing}) '({steer} {thing})) (new-knext-eq '({hint} {thing}) '({steer} {thing})) (new-knext-is-a '({steer} {countable}) '({confidential information} {uncountable})) (new-knext-type {confidential information} {uncountable}) (new-knext-type {steer} {uncountable}) (new-statement {confidential information} {consists of} {steer}) (new-knext-eq '({rule} {thing}) '({prescript} {thing})) (new-knext-eq '({roof} {thing}) '({ceiling} {thing})) (new-knext-eq '({cap} {thing}) '({ceiling} {thing})) (new-knext-eq '({intervention} {thing}) '({interference} {thing})) (new-knext-type {intervention} {uncountable}) (new-knext-type {nonintervention} {uncountable}) (new-is-not-a {intervention} {nonintervention}) (new-knext-type {interference} {uncountable}) (new-knext-type {noninterference} {uncountable}) (new-is-not-a {interference} {noninterference}) (new-knext-eq '({ordinance} {thing}) '({regulation} {thing})) (new-knext-eq '({warning} {thing}) '({admonition} {thing})) (new-knext-eq '({word of advice} {thing}) '({admonition} {thing})) (new-knext-eq '({secret} {thing}) '({arcanum} {thing})) (new-knext-eq '({watchword} {thing}) '({password} {thing})) (new-knext-eq '({parole} {thing}) '({password} {thing})) (new-knext-eq '({countersign} {thing}) '({password} {thing})) (new-knext-eq '({program} {thing}) '({course of study} {thing})) (add-english-names (list {program} {programme} {program} {programme}) (list "program" "programme" "program" "programme")) (new-knext-eq '({program} {thing}) '({course of study} {thing})) (new-knext-eq '({curriculum} {thing}) '({course of study} {thing})) (new-knext-eq '({syllabus} {thing}) '({course of study} {thing})) (new-knext-eq '({story} {thing}) '({news report} {thing})) (new-knext-eq '({account} {thing}) '({news report} {thing})) (new-knext-eq '({write up} {thing}) '({news report} {thing})) (new-knext-eq '({despatch} {thing}) '({dispatch} {thing})) (new-knext-eq '({communique} {thing}) '({dispatch} {thing})) (new-knext-eq '({coverage} {thing}) '({reporting} {thing})) (new-knext-eq '({reportage} {thing}) '({reporting} {thing})) (new-knext-eq '({commitment} {thing}) '({dedication} {thing})) (new-knext-is-a '({oath} {countable}) '({swearing} {uncountable})) (new-knext-type {swearing} {uncountable}) (new-knext-type {oath} {uncountable}) (new-statement {swearing} {consists of} {oath}) (new-knext-eq '({warrant} {thing}) '({guarantee} {thing})) (new-knext-eq '({warrantee} {thing}) '({guarantee} {thing})) (new-knext-eq '({warranty} {thing}) '({guarantee} {thing})) (new-knext-type {approval} {countable}) (new-knext-type {disapproval} {uncountable}) (new-is-not-a {approval} {disapproval}) (new-knext-is-a '({approval} {countable}) '({commendation} {uncountable})) (new-knext-type {commendation} {uncountable}) (new-knext-type {approval} {uncountable}) (new-statement {commendation} {consists of} {approval}) (new-knext-type {approbation} {countable}) (new-knext-type {disapprobation} {countable}) (new-is-not-a {approbation} {disapprobation}) (new-knext-eq '({countenance} {thing}) '({sanction} {thing})) (new-knext-eq '({endorsement} {thing}) '({sanction} {thing})) (new-knext-eq '({indorsement} {thing}) '({sanction} {thing})) (new-knext-eq '({warrant} {thing}) '({sanction} {thing})) (new-knext-eq '({imprimatur} {thing}) '({sanction} {thing})) (new-knext-eq '({recognition} {thing}) '({credit} {thing})) (new-knext-eq '({commemoration} {thing}) '({memorial} {thing})) (new-knext-eq '({remembrance} {thing}) '({memorial} {thing})) (new-knext-eq '({kudos} {thing}) '({congratulations} {thing})) (new-knext-eq '({extolment} {thing}) '({praise} {thing})) (new-knext-type {praise} {countable}) (new-knext-type {congratulations} {countable}) (new-statement {congratulations} {consists of} {praise}) (new-knext-type {congratulations} {uncountable}) (new-knext-type {praise} {uncountable}) (new-statement {congratulations} {consists of} {praise}) (new-knext-eq '({recommendation} {thing}) '({good word} {thing})) (new-knext-eq '({testimonial} {thing}) '({good word} {thing})) (new-knext-eq '({palaver} {thing}) '({blandishment} {thing})) (new-knext-is-a '({blandishment} {countable}) '({cajolery} {uncountable})) (new-knext-type {cajolery} {uncountable}) (new-knext-type {blandishment} {uncountable}) (new-statement {cajolery} {consists of} {blandishment}) (new-knext-eq '({award} {thing}) '({accolade} {thing})) (new-knext-eq '({honor} {thing}) '({accolade} {thing})) (add-english-names (list {honor} {honour}) (list "honor" "honour")) (new-knext-eq '({honor} {thing}) '({accolade} {thing})) (new-knext-type {accolade} {countable}) (new-knext-type {laurels} {countable}) (new-statement {laurels} {consists of} {accolade}) (new-knext-type {laurels} {uncountable}) (new-knext-type {accolade} {uncountable}) (new-statement {laurels} {consists of} {accolade}) (new-knext-eq '({testimonial} {thing}) '({tribute} {thing})) (new-knext-eq '({decoration} {thing}) '({laurel wreath} {thing})) (new-knext-eq '({medal} {thing}) '({laurel wreath} {thing})) (new-knext-eq '({medallion} {thing}) '({laurel wreath} {thing})) (new-knext-eq '({palm} {thing}) '({laurel wreath} {thing})) (new-knext-eq '({ribbon} {thing}) '({laurel wreath} {thing})) (new-knext-type {disapproval} {uncountable}) (new-knext-type {approval} {countable}) (new-is-not-a {disapproval} {approval}) (new-knext-eq '({unfavorable judgment} {thing}) '({criticism} {thing})) (new-knext-eq '({fire} {thing}) '({flak} {thing})) (new-knext-eq '({attack} {thing}) '({flack} {thing})) (new-knext-eq '({blast} {thing}) '({flack} {thing})) (new-knext-type {flak} {uncountable}) (new-knext-type {flack} {uncountable}) (new-statement {flak} {consists of} {flack}) (new-knext-is-a '({flack} {countable}) '({flak} {uncountable})) (new-knext-eq '({abuse} {thing}) '({insult} {thing})) (new-knext-eq '({revilement} {thing}) '({insult} {thing})) (new-knext-eq '({contumely} {thing}) '({insult} {thing})) (new-knext-eq '({vilification} {thing}) '({insult} {thing})) (new-knext-eq '({jeering} {thing}) '({jeer} {thing})) (new-knext-eq '({mockery} {thing}) '({jeer} {thing})) (new-knext-eq '({scoff} {thing}) '({jeer} {thing})) (new-knext-eq '({scoffing} {thing}) '({jeer} {thing})) (new-knext-eq '({impertinence} {thing}) '({impudence} {thing})) (new-knext-type {impudence} {uncountable}) (new-knext-type {cheek} {uncountable}) (new-statement {impudence} {consists of} {cheek}) (new-knext-is-a '({cheek} {countable}) '({impudence} {uncountable})) (new-knext-eq '({backtalk} {thing}) '({sass} {thing})) (new-knext-eq '({back talk} {thing}) '({sassing} {thing})) (new-knext-eq '({mouth} {thing}) '({lip} {thing})) (new-knext-type {sass} {uncountable}) (new-knext-type {sassing} {uncountable}) (new-statement {sass} {consists of} {sassing}) (new-knext-is-a '({sass} {uncountable}) '({lip} {uncountable})) (new-knext-is-a '({sassing} {countable}) '({sass} {uncountable})) (new-knext-is-a '({sassing} {countable}) '({lip} {countable})) (new-knext-is-a '({lip} {uncountable}) '({sass} {uncountable})) (new-knext-is-a '({lip} {countable}) '({sassing} {countable})) (new-knext-type {truth} {uncountable}) (new-knext-type {falsehood} {countable}) (new-is-not-a {truth} {falsehood}) (new-knext-type {truth} {uncountable}) (new-knext-type {true statement} {uncountable}) (new-statement {truth} {consists of} {true statement}) (new-knext-is-a '({true statement} {countable}) '({truth} {uncountable})) (new-knext-eq '({proclamation} {thing}) '({announcement} {thing})) (new-knext-eq '({annunciation} {thing}) '({announcement} {thing})) (new-knext-eq '({declaration} {thing}) '({announcement} {thing})) (new-knext-eq '({dictum} {thing}) '({pronouncement} {thing})) (new-knext-eq '({averment} {thing}) '({assertion} {thing})) (new-knext-eq '({asseveration} {thing}) '({assertion} {thing})) (new-knext-eq '({avouchment} {thing}) '({avowal} {thing})) (new-knext-eq '({affirmation} {thing}) '({avowal} {thing})) (new-knext-eq '({profession} {thing}) '({professing} {thing})) (new-knext-is-a '({bid} {countable}) '({bidding} {uncountable})) (new-knext-type {bidding} {uncountable}) (new-knext-type {bid} {uncountable}) (new-statement {bidding} {consists of} {bid}) (new-knext-eq '({account} {thing}) '({explanation} {thing})) (new-knext-eq '({reason} {thing}) '({cause} {thing})) (new-knext-eq '({grounds} {thing}) '({cause} {thing})) (new-knext-eq '({alibi} {thing}) '({excuse} {thing})) (new-knext-eq '({exculpation} {thing}) '({excuse} {thing})) (new-knext-is-a '({exposition} {countable}) '({expounding} {uncountable})) (new-knext-type {expounding} {uncountable}) (new-knext-type {exposition} {uncountable}) (new-statement {expounding} {consists of} {exposition}) (new-knext-eq '({answer} {thing}) '({solution} {thing})) (new-knext-eq '({result} {thing}) '({solution} {thing})) (new-knext-eq '({solvent} {thing}) '({solution} {thing})) (new-knext-eq '({reply} {thing}) '({answer} {thing})) (new-knext-eq '({response} {thing}) '({answer} {thing})) (new-knext-eq '({announcement} {thing}) '({promulgation} {thing})) (add-english-names (list {program} {programme} {program} {programme}) (list "program" "programme" "program" "programme")) (new-knext-eq '({program} {thing}) '({program} {thing})) (new-knext-eq '({forecast} {thing}) '({prognosis} {thing})) (new-knext-eq '({premiss} {thing}) '({premise} {thing})) (new-knext-eq '({assumption} {thing}) '({premise} {thing})) (new-knext-eq '({stipulation} {thing}) '({precondition} {thing})) (new-knext-eq '({prevarication} {thing}) '({lie} {thing})) (new-knext-eq '({story} {thing}) '({fib} {thing})) (new-knext-eq '({tale} {thing}) '({fib} {thing})) (new-knext-eq '({tarradiddle} {thing}) '({fib} {thing})) (new-knext-eq '({taradiddle} {thing}) '({fib} {thing})) (new-knext-eq '({fiction} {thing}) '({fabrication} {thing})) (new-knext-eq '({fable} {thing}) '({fabrication} {thing})) (new-knext-eq '({deceit} {thing}) '({misrepresentation} {thing})) (new-knext-eq '({deception} {thing}) '({misrepresentation} {thing})) (new-knext-eq '({qualification} {thing}) '({reservation} {thing})) (new-knext-eq '({note} {thing}) '({annotation} {thing})) (new-knext-eq '({citation} {thing}) '({cite} {thing})) (new-knext-eq '({acknowledgment} {thing}) '({cite} {thing})) (new-knext-eq '({credit} {thing}) '({cite} {thing})) (new-knext-eq '({reference} {thing}) '({cite} {thing})) (new-knext-eq '({mention} {thing}) '({cite} {thing})) (new-knext-eq '({quotation} {thing}) '({cite} {thing})) (new-knext-eq '({comment} {thing}) '({remark} {thing})) (new-knext-eq '({input} {thing}) '({remark} {thing})) (new-knext-eq '({reflection} {thing}) '({observation} {thing})) (new-knext-eq '({reflexion} {thing}) '({observation} {thing})) (new-knext-eq '({sally} {thing}) '({wisecrack} {thing})) (new-knext-eq '({quip} {thing}) '({wisecrack} {thing})) (new-knext-eq '({error} {thing}) '({mistake} {thing})) (new-knext-eq '({condition} {thing}) '({term} {thing})) (new-knext-type {strings} {uncountable}) (new-knext-type {term} {uncountable}) (new-statement {strings} {consists of} {term}) (new-knext-is-a '({term} {countable}) '({strings} {uncountable})) (new-knext-eq '({deal} {thing}) '({bargain} {thing})) (new-knext-eq '({pact} {thing}) '({treaty} {thing})) (new-knext-eq '({accord} {thing}) '({treaty} {thing})) (new-knext-eq '({irony} {thing}) '({sarcasm} {thing})) (new-knext-eq '({satire} {thing}) '({sarcasm} {thing})) (new-knext-type {sarcasm} {uncountable}) (new-knext-type {caustic remark} {uncountable}) (new-statement {sarcasm} {consists of} {caustic remark}) (new-knext-is-a '({caustic remark} {countable}) '({sarcasm} {uncountable})) (new-knext-eq '({gag} {thing}) '({joke} {thing})) (new-knext-eq '({laugh} {thing}) '({joke} {thing})) (new-knext-eq '({jest} {thing}) '({joke} {thing})) (new-knext-eq '({jape} {thing}) '({joke} {thing})) (new-knext-eq '({sketch} {thing}) '({cartoon} {thing})) (new-knext-eq '({view} {thing}) '({opinion} {thing})) (new-knext-eq '({conjecture} {thing}) '({guess} {thing})) (new-knext-eq '({supposition} {thing}) '({guess} {thing})) (new-knext-eq '({surmise} {thing}) '({guess} {thing})) (new-knext-eq '({surmisal} {thing}) '({guess} {thing})) (new-knext-eq '({speculation} {thing}) '({guess} {thing})) (new-knext-eq '({hypothesis} {thing}) '({guess} {thing})) (new-knext-eq '({direction} {thing}) '({instruction} {thing})) (new-knext-eq '({signaling} {thing}) '({signal} {thing})) (new-knext-eq '({sign} {thing}) '({signal} {thing})) (new-knext-eq '({posting} {thing}) '({poster} {thing})) (new-knext-eq '({placard} {thing}) '({poster} {thing})) (new-knext-eq '({notice} {thing}) '({poster} {thing})) (new-knext-eq '({bill} {thing}) '({poster} {thing})) (new-knext-eq '({card} {thing}) '({poster} {thing})) (new-knext-eq '({mark} {thing}) '({stigma} {thing})) (new-knext-eq '({brand} {thing}) '({stigma} {thing})) (new-knext-eq '({stain} {thing}) '({stigma} {thing})) (new-knext-eq '({item} {thing}) '({token} {thing})) (new-knext-eq '({birdsong} {thing}) '({birdcall} {thing})) (new-knext-eq '({song} {thing}) '({birdcall} {thing})) (new-knext-eq '({indicant} {thing}) '({indication} {thing})) (new-knext-type {indication} {countable}) (new-knext-type {contraindication} {countable}) (new-is-not-a {indication} {contraindication}) (new-knext-eq '({mark} {thing}) '({print} {thing})) (new-knext-eq '({forerunner} {thing}) '({harbinger} {thing})) (new-knext-eq '({predecessor} {thing}) '({harbinger} {thing})) (new-knext-eq '({herald} {thing}) '({harbinger} {thing})) (new-knext-eq '({precursor} {thing}) '({harbinger} {thing})) (new-knext-eq '({alarm} {thing}) '({warning signal} {thing})) (new-knext-eq '({alert} {thing}) '({warning signal} {thing})) (new-knext-eq '({alarum} {thing}) '({warning signal} {thing})) (new-knext-eq '({number} {thing}) '({numeral} {thing})) (new-knext-eq '({number system} {thing}) '({numeration system} {thing})) (new-knext-eq '({number representation system} {thing}) '({numeration system} {thing})) (new-knext-eq '({system of numeration} {thing}) '({numeration system} {thing})) (new-knext-eq '({printed symbol} {thing}) '({written symbol} {thing})) (new-knext-eq '({pointer} {thing}) '({arrow} {thing})) (new-knext-eq '({tick} {thing}) '({check mark} {thing})) (new-knext-eq '({character} {thing}) '({grapheme} {thing})) (new-knext-eq '({graphic symbol} {thing}) '({grapheme} {thing})) (new-knext-eq '({uppercase} {thing}) '({capital letter} {thing})) (new-knext-eq '({majuscule} {thing}) '({capital letter} {thing})) (new-knext-type {uppercase} {countable}) (new-knext-type {lowercase} {uncountable}) (new-is-not-a {uppercase} {lowercase}) (new-knext-eq '({star} {thing}) '({asterisk} {thing})) (new-knext-eq '({alphabetic character} {thing}) '({letter of the alphabet} {thing})) (new-knext-type {space} {uncountable}) (new-knext-type {blank} {uncountable}) (new-statement {space} {consists of} {blank}) (new-knext-is-a '({blank} {countable}) '({space} {uncountable})) (new-knext-type {punctuation} {uncountable}) (new-knext-type {punctuation mark} {uncountable}) (new-statement {punctuation} {consists of} {punctuation mark}) (new-knext-type {punctuation mark} {countable}) (new-knext-type {punctuation} {countable}) (new-statement {punctuation} {consists of} {punctuation mark}) (new-knext-eq '({period} {thing}) '({full stop} {thing})) (new-knext-eq '({full point} {thing}) '({full stop} {thing})) (new-knext-eq '({brand name} {thing}) '({trade name} {thing})) (new-knext-eq '({brand} {thing}) '({trade name} {thing})) (new-knext-eq '({marque} {thing}) '({trade name} {thing})) (new-knext-eq '({slide} {thing}) '({swoop} {thing})) (new-knext-eq '({shake} {thing}) '({trill} {thing})) (new-knext-eq '({key} {thing}) '({tonality} {thing})) (new-knext-type {tonality} {countable}) (new-knext-type {atonality} {uncountable}) (new-is-not-a {tonality} {atonality}) (new-knext-eq '({tone} {thing}) '({musical note} {thing})) (new-knext-eq '({quaver} {thing}) '({eighth note} {thing})) (new-knext-eq '({flash} {thing}) '({flare} {thing})) (new-knext-eq '({signing} {thing}) '({sign language} {thing})) (new-knext-eq '({gesture} {thing}) '({motion} {thing})) (new-knext-eq '({face} {thing}) '({grimace} {thing})) (new-knext-eq '({smiling} {thing}) '({smile} {thing})) (new-knext-eq '({grin} {thing}) '({smile} {thing})) (new-knext-eq '({grinning} {thing}) '({smile} {thing})) (new-knext-eq '({manifestation} {thing}) '({expression} {thing})) (new-knext-eq '({reflection} {thing}) '({expression} {thing})) (new-knext-eq '({reflexion} {thing}) '({expression} {thing})) (new-knext-eq '({allegory} {thing}) '({emblem} {thing})) (new-knext-eq '({pin} {thing}) '({personal identification number} {thing})) (new-knext-eq '({pin number} {thing}) '({personal identification number} {thing})) (new-knext-eq '({showing} {thing}) '({screening} {thing})) (new-knext-eq '({viewing} {thing}) '({screening} {thing})) (new-knext-eq '({flourish} {thing}) '({brandish} {thing})) (new-knext-eq '({public presentation} {thing}) '({performance} {thing})) (new-knext-eq '({act} {thing}) '({routine} {thing})) (new-knext-eq '({number} {thing}) '({routine} {thing})) (new-knext-eq '({bit} {thing}) '({routine} {thing})) (new-knext-eq '({representation} {thing}) '({theatrical performance} {thing})) (new-knext-eq '({histrionics} {thing}) '({theatrical performance} {thing})) (new-knext-type {artificial language} {countable}) (new-knext-type {natural language} {countable}) (new-is-not-a {artificial language} {natural language}) (new-knext-eq '({tongue} {thing}) '({natural language} {thing})) (new-knext-type {natural language} {countable}) (new-knext-type {artificial language} {countable}) (new-is-not-a {natural language} {artificial language}) (new-knext-eq '({nontextual matter} {thing}) '({graphics} {thing})) (new-knext-is-a '({artwork} {uncountable}) '({graphics} {uncountable})) (new-knext-is-a '({graphics} {uncountable}) '({artwork} {uncountable})) (new-knext-eq '({graph} {thing}) '({chart} {thing})) (new-knext-eq '({cartoon strip} {thing}) '({comic strip} {thing})) (new-knext-type {comic strip} {countable}) (new-knext-type {funnies} {countable}) (new-statement {funnies} {consists of} {comic strip}) (new-knext-type {funnies} {uncountable}) (new-knext-type {comic strip} {uncountable}) (new-statement {funnies} {consists of} {comic strip}) (new-knext-eq '({theater} {thing}) '({dramaturgy} {thing})) (add-english-names (list {theater} {theatre} {theatre}) (list "theater" "theatre" "theatre")) (new-knext-eq '({theater} {thing}) '({dramatics} {thing})) (new-knext-type {dramaturgy} {uncountable}) (new-knext-type {dramatic art} {uncountable}) (new-statement {dramaturgy} {consists of} {dramatic art}) (new-knext-is-a '({dramaturgy} {uncountable}) '({dramatics} {uncountable})) (new-knext-is-a '({dramatic art} {countable}) '({dramaturgy} {uncountable})) (new-knext-is-a '({dramatic art} {countable}) '({dramatics} {countable})) (new-knext-is-a '({dramatics} {uncountable}) '({dramaturgy} {uncountable})) (new-knext-is-a '({dramatics} {countable}) '({dramatic art} {countable})) (new-knext-is-a '({play} {countable}) '({drama} {uncountable})) (new-knext-type {drama} {uncountable}) (new-knext-type {play} {uncountable}) (new-statement {drama} {consists of} {play}) (add-english-names (list {dialog} {dialogue} {dialogue}) (list "dialog" "dialogue" "dialogue")) (new-knext-eq '({dialog} {thing}) '({dialog} {thing})) (new-knext-eq '({linguistic string} {thing}) '({word string} {thing})) (new-knext-is-a '({string of words} {countable}) '({word string} {uncountable})) (new-knext-type {comedy} {uncountable}) (new-knext-type {tragedy} {countable}) (new-is-not-a {comedy} {tragedy}) (new-knext-type {tragedy} {countable}) (new-knext-type {comedy} {uncountable}) (new-is-not-a {tragedy} {comedy}) (new-knext-eq '({melody} {thing}) '({tune} {thing})) (new-knext-eq '({air} {thing}) '({tune} {thing})) (new-knext-eq '({strain} {thing}) '({tune} {thing})) (new-knext-eq '({melodic line} {thing}) '({tune} {thing})) (new-knext-eq '({melodic phrase} {thing}) '({tune} {thing})) (new-knext-eq '({musical theme} {thing}) '({melodic theme} {thing})) (new-knext-eq '({idea} {thing}) '({melodic theme} {thing})) (new-knext-eq '({opus} {thing}) '({musical composition} {thing})) (new-knext-eq '({piece} {thing}) '({musical composition} {thing})) (new-knext-eq '({piece of music} {thing}) '({musical composition} {thing})) (new-knext-eq '({vocal} {thing}) '({song} {thing})) (new-knext-type {marching music} {uncountable}) (new-knext-type {march} {uncountable}) (new-statement {marching music} {consists of} {march}) (new-knext-is-a '({march} {countable}) '({marching music} {uncountable})) (new-knext-eq '({ethnic music} {thing}) '({folk music} {thing})) (new-knext-eq '({speech} {thing}) '({manner of speaking} {thing})) (new-knext-eq '({delivery} {thing}) '({manner of speaking} {thing})) (new-knext-eq '({musical genre} {thing}) '({music genre} {thing})) (new-knext-eq '({musical style} {thing}) '({music genre} {thing})) (new-knext-eq '({voice} {thing}) '({articulation} {thing})) (new-knext-eq '({archaicism} {thing}) '({archaism} {thing})) (add-english-names (list {verbalization} {verbalisation} {verbalization} {verbalisation}) (list "verbalization" "verbalisation" "verbalization" "verbalisation")) (new-knext-eq '({verbalization} {thing}) '({verbalization} {thing})) (new-knext-eq '({phrasing} {thing}) '({wording} {thing})) (new-knext-eq '({phraseology} {thing}) '({wording} {thing})) (new-knext-eq '({choice of words} {thing}) '({wording} {thing})) (new-knext-eq '({verbiage} {thing}) '({wording} {thing})) (new-knext-is-a '({wording} {countable}) '({diction} {uncountable})) (new-knext-type {diction} {uncountable}) (new-knext-type {wording} {uncountable}) (new-statement {diction} {consists of} {wording}) (new-knext-eq '({beat} {thing}) '({rhythm} {thing})) (new-knext-eq '({fustian} {thing}) '({bombast} {thing})) (new-knext-eq '({claptrap} {thing}) '({bombast} {thing})) (new-knext-eq '({blah} {thing}) '({bombast} {thing})) (new-knext-type {bombast} {uncountable}) (new-knext-type {rant} {uncountable}) (new-statement {bombast} {consists of} {rant}) (new-knext-is-a '({rant} {countable}) '({bombast} {uncountable})) (new-knext-eq '({literary genre} {thing}) '({writing style} {thing})) (new-knext-eq '({genre} {thing}) '({writing style} {thing})) (new-knext-eq '({verse} {thing}) '({poetry} {thing})) (new-knext-type {poetry} {uncountable}) (new-knext-type {poesy} {uncountable}) (new-statement {poetry} {consists of} {poesy}) (new-knext-is-a '({poesy} {countable}) '({poetry} {uncountable})) (new-knext-eq '({spoken communication} {thing}) '({speech communication} {thing})) (new-knext-eq '({spoken language} {thing}) '({speech communication} {thing})) (new-knext-eq '({language} {thing}) '({speech communication} {thing})) (new-knext-eq '({voice communication} {thing}) '({speech communication} {thing})) (new-knext-eq '({oral communication} {thing}) '({speech communication} {thing})) (new-knext-eq '({vocalization} {thing}) '({utterance} {thing})) (new-knext-eq '({voice} {thing}) '({vocalization} {thing})) (add-english-names (list {vocalization} {vocalisation} {vocalization} {vocalisation}) (list "vocalization" "vocalisation" "vocalization" "vocalisation")) (new-knext-eq '({vocalization} {thing}) '({vocalization} {thing})) (new-knext-eq '({vocalism} {thing}) '({vocalization} {thing})) (new-knext-eq '({phonation} {thing}) '({vocalization} {thing})) (new-knext-eq '({vox} {thing}) '({vocalization} {thing})) (new-knext-eq '({phone} {thing}) '({speech sound} {thing})) (new-knext-is-a '({speech sound} {countable}) '({sound} {uncountable})) (new-knext-type {sound} {uncountable}) (new-knext-type {speech sound} {uncountable}) (new-statement {sound} {consists of} {speech sound}) (new-knext-eq '({call} {thing}) '({cry} {thing})) (new-knext-eq '({yell} {thing}) '({cry} {thing})) (new-knext-eq '({shout} {thing}) '({cry} {thing})) (new-knext-eq '({vociferation} {thing}) '({cry} {thing})) (new-knext-eq '({screaming} {thing}) '({shrieking} {thing})) (new-knext-eq '({screeching} {thing}) '({shrieking} {thing})) (new-knext-eq '({shriek} {thing}) '({scream} {thing})) (new-knext-eq '({screech} {thing}) '({scream} {thing})) (new-knext-is-a '({scream} {countable}) '({shrieking} {uncountable})) (new-knext-type {shrieking} {uncountable}) (new-knext-type {scream} {uncountable}) (new-statement {shrieking} {consists of} {scream}) (new-knext-is-a '({laugh} {countable}) '({laughter} {uncountable})) (new-knext-type {laughter} {uncountable}) (new-knext-type {laugh} {uncountable}) (new-statement {laughter} {consists of} {laugh}) (new-knext-eq '({orthoepy} {thing}) '({pronunciation} {thing})) (new-knext-eq '({rejoicing} {thing}) '({exultation} {thing})) (new-knext-eq '({jubilation} {thing}) '({exultation} {thing})) (new-knext-eq '({speech production} {thing}) '({speaking} {thing})) (new-knext-eq '({whispering} {thing}) '({whisper} {thing})) (new-knext-eq '({susurration} {thing}) '({whisper} {thing})) (new-knext-is-a '({whisper} {countable}) '({voicelessness} {uncountable})) (new-knext-type {voicelessness} {uncountable}) (new-knext-type {whisper} {uncountable}) (new-statement {voicelessness} {consists of} {whisper}) (new-knext-is-a '({enunciation} {countable}) '({diction} {uncountable})) (new-knext-type {diction} {uncountable}) (new-knext-type {enunciation} {uncountable}) (new-statement {diction} {consists of} {enunciation}) (new-knext-is-a '({communion} {uncountable}) '({sharing} {uncountable})) (new-knext-is-a '({sharing} {uncountable}) '({communion} {uncountable})) (new-knext-eq '({confab} {thing}) '({chat} {thing})) (new-knext-eq '({confabulation} {thing}) '({chat} {thing})) (new-knext-eq '({schmooze} {thing}) '({chat} {thing})) (new-knext-eq '({schmoose} {thing}) '({chat} {thing})) (new-knext-eq '({chit chat} {thing}) '({chitchat} {thing})) (new-knext-eq '({small talk} {thing}) '({chitchat} {thing})) (new-knext-eq '({gossip} {thing}) '({gab} {thing})) (new-knext-eq '({chin wag} {thing}) '({gab} {thing})) (new-knext-eq '({chin wagging} {thing}) '({gab} {thing})) (new-knext-eq '({causerie} {thing}) '({gab} {thing})) (new-knext-type {chitchat} {uncountable}) (new-knext-type {gab} {uncountable}) (new-statement {chitchat} {consists of} {gab}) (new-knext-is-a '({gab} {countable}) '({chitchat} {uncountable})) (add-english-names (list {dialog} {dialogue} {dialogue}) (list "dialog" "dialogue" "dialogue")) (new-knext-eq '({dialog} {thing}) '({dialog} {thing})) (add-english-names (list {duolog} {duologue} {duologue}) (list "duolog" "duologue" "duologue")) (add-english-names (list {dialog} {dialogue} {dialogue}) (list "dialog" "dialogue" "dialogue")) (new-knext-eq '({duolog} {thing}) '({dialog} {thing})) (new-knext-eq '({idle talk} {thing}) '({prate} {thing})) (new-knext-eq '({blether} {thing}) '({prate} {thing})) (new-knext-eq '({chin music} {thing}) '({prate} {thing})) (new-knext-is-a '({prate} {countable}) '({prattle} {uncountable})) (new-knext-type {prattle} {uncountable}) (new-knext-type {prate} {uncountable}) (new-statement {prattle} {consists of} {prate}) (new-knext-eq '({treatment} {thing}) '({discussion} {thing})) (new-knext-eq '({discourse} {thing}) '({discussion} {thing})) (new-knext-eq '({expression} {thing}) '({verbalism} {thing})) (new-knext-is-a '({verbal expression} {countable}) '({verbalism} {countable})) (new-knext-is-a '({verbalism} {countable}) '({verbal expression} {countable})) (new-knext-eq '({word} {thing}) '({discussion} {thing})) (new-knext-eq '({argument} {thing}) '({debate} {thing})) (new-knext-eq '({audience} {thing}) '({consultation} {thing})) (new-knext-eq '({interview} {thing}) '({consultation} {thing})) (add-english-names (list {dialog} {dialogue} {dialogue}) (list "dialog" "dialogue" "dialogue")) (new-knext-eq '({dialog} {thing}) '({negotiation} {thing})) (new-knext-type {negotiation} {countable}) (new-knext-type {talks} {countable}) (new-statement {talks} {consists of} {negotiation}) (new-knext-type {talks} {uncountable}) (new-knext-type {negotiation} {uncountable}) (new-statement {talks} {consists of} {negotiation}) (new-knext-eq '({expression} {thing}) '({saying} {thing})) (new-knext-eq '({locution} {thing}) '({saying} {thing})) (new-knext-eq '({slogan} {thing}) '({motto} {thing})) (new-knext-eq '({catchword} {thing}) '({motto} {thing})) (new-knext-eq '({shibboleth} {thing}) '({motto} {thing})) (new-knext-eq '({phrasal idiom} {thing}) '({idiomatic expression} {thing})) (new-knext-eq '({set phrase} {thing}) '({idiomatic expression} {thing})) (new-knext-eq '({phrase} {thing}) '({idiomatic expression} {thing})) (new-knext-eq '({idiom} {thing}) '({dialect} {thing})) (new-knext-eq '({accent} {thing}) '({dialect} {thing})) (new-knext-eq '({slang} {thing}) '({jargon} {thing})) (new-knext-eq '({cant} {thing}) '({jargon} {thing})) (new-knext-eq '({lingo} {thing}) '({jargon} {thing})) (new-knext-eq '({argot} {thing}) '({jargon} {thing})) (new-knext-eq '({patois} {thing}) '({jargon} {thing})) (new-knext-eq '({vernacular} {thing}) '({jargon} {thing})) (new-knext-eq '({magical spell} {thing}) '({magic spell} {thing})) (new-knext-eq '({charm} {thing}) '({magic spell} {thing})) (new-knext-eq '({proposition} {thing}) '({proposal} {thing})) (new-knext-eq '({proposal of marriage} {thing}) '({marriage proposal} {thing})) (new-knext-eq '({marriage offer} {thing}) '({marriage proposal} {thing})) (new-knext-eq '({suggestion} {thing}) '({proffer} {thing})) (new-knext-eq '({proposition} {thing}) '({proffer} {thing})) (new-knext-eq '({offer} {thing}) '({offering} {thing})) (new-knext-eq '({entry} {thing}) '({submission} {thing})) (new-knext-eq '({dictation} {thing}) '({command} {thing})) (new-knext-is-a '({command} {countable}) '({bid} {countable})) (new-knext-is-a '({command} {uncountable}) '({bidding} {uncountable})) (new-knext-is-a '({bid} {countable}) '({command} {countable})) (new-knext-is-a '({bid} {countable}) '({bidding} {uncountable})) (new-knext-is-a '({bidding} {uncountable}) '({command} {uncountable})) (new-knext-type {bidding} {uncountable}) (new-knext-type {bid} {uncountable}) (new-statement {bidding} {consists of} {bid}) (new-knext-eq '({direction} {thing}) '({commission} {thing})) (new-knext-eq '({elucidation} {thing}) '({clarification} {thing})) (new-knext-eq '({illumination} {thing}) '({clarification} {thing})) (new-knext-eq '({enlargement} {thing}) '({expansion} {thing})) (new-knext-is-a '({expansion} {countable}) '({elaboration} {countable})) (new-knext-is-a '({elaboration} {countable}) '({expansion} {countable})) (new-knext-type {agreement} {countable}) (new-knext-type {disagreement} {countable}) (new-is-not-a {agreement} {disagreement}) (new-knext-eq '({yielding} {thing}) '({concession} {thing})) (new-knext-is-a '({concession} {uncountable}) '({conceding} {uncountable})) (new-knext-is-a '({conceding} {uncountable}) '({concession} {uncountable})) (new-knext-eq '({concurrency} {thing}) '({concurrence} {thing})) (new-knext-eq '({harmony} {thing}) '({concordance} {thing})) (new-knext-eq '({concord} {thing}) '({concordance} {thing})) (new-knext-type {disagreement} {countable}) (new-knext-type {agreement} {countable}) (new-is-not-a {disagreement} {agreement}) (new-knext-eq '({difference of opinion} {thing}) '({dispute} {thing})) (new-knext-eq '({conflict} {thing}) '({difference} {thing})) (new-knext-is-a '({dispute} {countable}) '({difference} {countable})) (new-knext-is-a '({difference} {countable}) '({dispute} {countable})) (new-knext-eq '({wrangle} {thing}) '({quarrel} {thing})) (new-knext-eq '({row} {thing}) '({quarrel} {thing})) (new-knext-eq '({dustup} {thing}) '({quarrel} {thing})) (new-knext-is-a '({quarrel} {countable}) '({words} {uncountable})) (new-knext-type {words} {uncountable}) (new-knext-type {quarrel} {uncountable}) (new-statement {words} {consists of} {quarrel}) (new-knext-eq '({offering} {thing}) '({offer} {thing})) (new-knext-eq '({request} {thing}) '({asking} {thing})) (new-knext-eq '({wish} {thing}) '({indirect request} {thing})) (new-knext-is-a '({bidding} {uncountable}) '({summons} {uncountable})) (new-knext-is-a '({summons} {uncountable}) '({bidding} {uncountable})) (new-knext-eq '({prayer} {thing}) '({entreaty} {thing})) (new-knext-is-a '({entreaty} {countable}) '({appeal} {countable})) (new-knext-is-a '({appeal} {countable}) '({entreaty} {countable})) (new-knext-eq '({mendicancy} {thing}) '({begging} {thing})) (new-knext-is-a '({beggary} {uncountable}) '({begging} {uncountable})) (new-knext-is-a '({begging} {uncountable}) '({beggary} {uncountable})) (new-knext-is-a '({importunity} {countable}) '({urgency} {countable})) (new-knext-is-a '({importunity} {countable}) '({urging} {uncountable})) (new-knext-is-a '({urgency} {countable}) '({importunity} {countable})) (new-knext-is-a '({urgency} {uncountable}) '({urging} {uncountable})) (new-knext-type {urging} {uncountable}) (new-knext-type {importunity} {uncountable}) (new-statement {urging} {consists of} {importunity}) (new-knext-is-a '({urging} {uncountable}) '({urgency} {uncountable})) (new-knext-eq '({wooing} {thing}) '({courtship} {thing})) (new-knext-is-a '({courtship} {uncountable}) '({courting} {uncountable})) (new-knext-is-a '({courtship} {countable}) '({suit} {countable})) (new-knext-is-a '({courting} {uncountable}) '({courtship} {uncountable})) (new-knext-type {courting} {uncountable}) (new-knext-type {suit} {uncountable}) (new-statement {courting} {consists of} {suit}) (new-knext-is-a '({suit} {countable}) '({courtship} {countable})) (new-knext-is-a '({suit} {countable}) '({courting} {uncountable})) (new-knext-eq '({prayer} {thing}) '({orison} {thing})) (new-knext-eq '({petition} {thing}) '({orison} {thing})) (new-knext-is-a '({benediction} {countable}) '({blessing} {countable})) (new-knext-is-a '({blessing} {countable}) '({benediction} {countable})) (new-knext-eq '({insisting} {thing}) '({insistence} {thing})) (new-knext-is-a '({questioning} {uncountable}) '({inquiring} {uncountable})) (new-knext-is-a '({inquiring} {uncountable}) '({questioning} {uncountable})) (new-knext-eq '({inquiry} {thing}) '({enquiry} {thing})) (new-knext-eq '({query} {thing}) '({question} {thing})) (new-knext-eq '({interrogation} {thing}) '({question} {thing})) (new-knext-type {question} {countable}) (new-knext-type {answer} {countable}) (new-is-not-a {question} {answer}) (new-knext-is-a '({question} {countable}) '({enquiry} {countable})) (new-knext-is-a '({enquiry} {countable}) '({question} {countable})) (new-knext-eq '({examination} {thing}) '({interrogation} {thing})) (new-knext-is-a '({interrogation} {countable}) '({interrogatory} {countable})) (new-knext-is-a '({interrogatory} {countable}) '({interrogation} {countable})) (new-knext-eq '({test} {thing}) '({exam} {thing})) (new-knext-is-a '({examination} {countable}) '({exam} {countable})) (new-knext-is-a '({exam} {countable}) '({examination} {countable})) (new-knext-eq '({viva voce} {thing}) '({oral} {thing})) (new-knext-eq '({viva} {thing}) '({oral} {thing})) (new-knext-is-a '({oral} {countable}) '({oral exam} {countable})) (new-knext-is-a '({oral exam} {countable}) '({oral} {countable})) (new-knext-is-a '({reply} {countable}) '({response} {countable})) (new-knext-is-a '({response} {countable}) '({reply} {countable})) (new-knext-type {answer} {countable}) (new-knext-type {question} {uncountable}) (new-is-not-a {answer} {question}) (new-knext-eq '({defense} {thing}) '({refutation} {thing})) (add-english-names (list {defense} {defence}) (list "defense" "defence")) (new-knext-is-a '({refutation} {countable}) '({defense} {countable})) (add-english-names (list {defense} {defence}) (list "defense" "defence")) (new-knext-is-a '({defense} {countable}) '({refutation} {countable})) (add-english-names (list {characterization} {characterisation} {characterization} {characterisation}) (list "characterization" "characterisation" "characterization" "characterisation")) (new-knext-eq '({characterization} {thing}) '({characterization} {thing})) (new-knext-eq '({delineation} {thing}) '({word picture} {thing})) (new-knext-eq '({depiction} {thing}) '({word picture} {thing})) (new-knext-eq '({characterization} {thing}) '({word picture} {thing})) (add-english-names (list {characterization} {characterisation} {characterization} {characterisation}) (list "characterization" "characterisation" "characterization" "characterisation")) (new-knext-eq '({characterization} {thing}) '({word picture} {thing})) (new-knext-eq '({assertion} {thing}) '({affirmation} {thing})) (new-knext-is-a '({affirmation} {countable}) '({statement} {countable})) (new-knext-is-a '({statement} {countable}) '({affirmation} {countable})) (new-knext-eq '({denial} {thing}) '({disaffirmation} {thing})) (new-knext-is-a '({disavowal} {countable}) '({disclaimer} {countable})) (new-knext-is-a '({disclaimer} {countable}) '({disavowal} {countable})) (new-knext-eq '({abjuration} {thing}) '({retraction} {thing})) (new-knext-eq '({recantation} {thing}) '({retraction} {thing})) (new-knext-is-a '({withdrawal} {countable}) '({backdown} {countable})) (new-knext-is-a '({backdown} {countable}) '({withdrawal} {countable})) (new-knext-eq '({renunciation} {thing}) '({repudiation} {thing})) (new-knext-eq '({disowning} {thing}) '({disownment} {thing})) (new-knext-eq '({murmur} {thing}) '({grumble} {thing})) (new-knext-eq '({muttering} {thing}) '({grumble} {thing})) (new-knext-eq '({murmuring} {thing}) '({grumbling} {thing})) (new-knext-eq '({mutter} {thing}) '({grumbling} {thing})) (new-knext-is-a '({grumble} {countable}) '({grumbling} {countable})) (new-knext-is-a '({grumbling} {countable}) '({grumble} {countable})) (new-knext-is-a '({whimper} {countable}) '({whine} {countable})) (new-knext-is-a '({whine} {countable}) '({whimper} {countable})) (new-knext-eq '({lamentation} {thing}) '({lament} {thing})) (new-knext-eq '({plaint} {thing}) '({lament} {thing})) (new-knext-eq '({wail} {thing}) '({lament} {thing})) (new-knext-eq '({informing} {thing}) '({making known} {thing})) (new-knext-eq '({telling} {thing}) '({apprisal} {thing})) (new-knext-is-a '({apprisal} {countable}) '({notification} {countable})) (new-knext-is-a '({notification} {countable}) '({apprisal} {countable})) (new-knext-eq '({dismissal} {thing}) '({dismission} {thing})) (new-knext-eq '({pink slip} {thing}) '({dismission} {thing})) (new-knext-eq '({revelation} {thing}) '({disclosure} {thing})) (new-knext-is-a '({disclosure} {uncountable}) '({revealing} {uncountable})) (new-knext-is-a '({revealing} {uncountable}) '({disclosure} {uncountable})) (new-knext-eq '({divulgement} {thing}) '({divulgence} {thing})) (new-knext-is-a '({expose} {countable}) '({unmasking} {countable})) (new-knext-is-a '({unmasking} {countable}) '({expose} {countable})) (new-knext-eq '({presentation} {thing}) '({introduction} {thing})) (new-knext-is-a '({introduction} {countable}) '({intro} {countable})) (new-knext-is-a '({intro} {countable}) '({introduction} {countable})) (new-knext-eq '({account} {thing}) '({report} {thing})) (new-knext-eq '({study} {thing}) '({report} {thing})) (new-knext-eq '({narration} {thing}) '({yarn} {thing})) (new-knext-is-a '({recital} {countable}) '({yarn} {countable})) (new-knext-is-a '({yarn} {countable}) '({recital} {countable})) (new-knext-eq '({narration} {thing}) '({narrative} {thing})) (new-knext-eq '({story} {thing}) '({narrative} {thing})) (new-knext-eq '({tale} {thing}) '({narrative} {thing})) (new-knext-eq '({relation} {thing}) '({telling} {thing})) (new-knext-is-a '({telling} {countable}) '({recounting} {countable})) (new-knext-is-a '({recounting} {countable}) '({telling} {countable})) (new-knext-eq '({comment} {thing}) '({gossip} {thing})) (new-knext-is-a '({gossip} {countable}) '({scuttlebutt} {countable})) (new-knext-is-a '({scuttlebutt} {countable}) '({gossip} {countable})) (add-english-names (list {rumor} {rumour}) (list "rumor" "rumour")) (new-knext-is-a '({rumor} {countable}) '({rumor} {countable})) (new-knext-is-a '({rumor} {uncountable}) '({hearsay} {uncountable})) (add-english-names (list {rumor} {rumour}) (list "rumor" "rumour")) (new-knext-is-a '({rumor} {countable}) '({rumor} {countable})) (add-english-names (list {rumor} {rumour}) (list "rumor" "rumour")) (new-knext-is-a '({hearsay} {uncountable}) '({rumor} {uncountable})) (add-english-names (list {rumor} {rumour}) (list "rumor" "rumour")) (new-knext-type {hearsay} {uncountable}) (new-knext-type {rumor} {uncountable}) (new-statement {hearsay} {consists of} {rumor}) (new-knext-is-a '({alert} {uncountable}) '({alerting} {uncountable})) (new-knext-is-a '({alerting} {uncountable}) '({alert} {uncountable})) (new-knext-eq '({parole} {thing}) '({word} {thing})) (new-knext-is-a '({word} {countable}) '({word of honor} {countable})) (new-knext-is-a '({word of honor} {countable}) '({word} {countable})) (new-knext-eq '({pledge} {thing}) '({assurance} {thing})) (new-knext-eq '({engagement} {thing}) '({troth} {thing})) (new-knext-is-a '({betrothal} {countable}) '({troth} {countable})) (new-knext-is-a '({troth} {countable}) '({betrothal} {countable})) (new-knext-is-a '({indication} {countable}) '({denotation} {countable})) (new-knext-is-a '({denotation} {countable}) '({indication} {countable})) (new-knext-is-a '({dare} {uncountable}) '({daring} {uncountable})) (new-knext-is-a '({daring} {uncountable}) '({dare} {uncountable})) (new-knext-eq '({recital} {thing}) '({recitation} {thing})) (new-knext-is-a '({recitation} {countable}) '({reading} {countable})) (new-knext-is-a '({reading} {countable}) '({recitation} {countable})) (new-knext-eq '({address} {thing}) '({speech} {thing})) (new-knext-is-a '({lecture} {countable}) '({talk} {countable})) (new-knext-is-a '({talk} {countable}) '({lecture} {countable})) (new-knext-eq '({debate} {thing}) '({disputation} {thing})) (new-knext-is-a '({disputation} {countable}) '({public debate} {countable})) (new-knext-is-a '({public debate} {countable}) '({disputation} {countable})) (new-knext-eq '({rant} {thing}) '({harangue} {thing})) (new-knext-is-a '({harangue} {countable}) '({ranting} {countable})) (new-knext-is-a '({ranting} {countable}) '({harangue} {countable})) (new-knext-eq '({discourse} {thing}) '({preaching} {thing})) (new-knext-is-a '({sermon} {countable}) '({preaching} {countable})) (new-knext-is-a '({preaching} {countable}) '({sermon} {countable})) (new-knext-type {persuasion} {uncountable}) (new-knext-type {dissuasion} {uncountable}) (new-is-not-a {persuasion} {dissuasion}) (new-knext-eq '({incitement} {thing}) '({exhortation} {thing})) (new-knext-is-a '({suggestion} {uncountable}) '({prompting} {uncountable})) (new-knext-is-a '({prompting} {uncountable}) '({suggestion} {uncountable})) (new-knext-is-a '({weapon} {countable}) '({artillery} {countable})) (new-knext-is-a '({artillery} {countable}) '({weapon} {countable})) (new-knext-eq '({packaging} {thing}) '({publicity} {thing})) (new-knext-is-a '({promotion} {countable}) '({publicity} {uncountable})) (new-knext-type {publicity} {uncountable}) (new-knext-type {promotion} {uncountable}) (new-statement {publicity} {consists of} {promotion}) (new-knext-type {sales talk} {uncountable}) (new-knext-type {sales pitch} {uncountable}) (new-statement {sales talk} {consists of} {sales pitch}) (new-knext-is-a '({sales pitch} {countable}) '({sales talk} {uncountable})) (new-knext-eq '({handbill} {thing}) '({circular} {thing})) (new-knext-eq '({bill} {thing}) '({circular} {thing})) (new-knext-eq '({broadside} {thing}) '({circular} {thing})) (new-knext-eq '({broadsheet} {thing}) '({circular} {thing})) (new-knext-eq '({flier} {thing}) '({circular} {thing})) (new-knext-eq '({flyer} {thing}) '({circular} {thing})) (new-knext-eq '({throwaway} {thing}) '({circular} {thing})) (new-knext-eq '({promotion} {thing}) '({furtherance} {thing})) (new-knext-eq '({advancement} {thing}) '({furtherance} {thing})) (new-knext-eq '({urging} {thing}) '({goading} {thing})) (new-knext-eq '({spurring} {thing}) '({goading} {thing})) (new-knext-eq '({goad} {thing}) '({prod} {thing})) (new-knext-eq '({prodding} {thing}) '({prod} {thing})) (new-knext-eq '({spur} {thing}) '({prod} {thing})) (new-knext-type {goading} {uncountable}) (new-knext-type {prod} {uncountable}) (new-statement {goading} {consists of} {prod}) (new-knext-is-a '({prod} {countable}) '({goading} {uncountable})) (new-knext-is-a '({renunciation} {countable}) '({renouncement} {countable})) (new-knext-is-a '({renouncement} {countable}) '({renunciation} {countable})) (new-knext-is-a '({relinquishment} {countable}) '({relinquishing} {uncountable})) (new-knext-type {relinquishing} {uncountable}) (new-knext-type {relinquishment} {uncountable}) (new-statement {relinquishing} {consists of} {relinquishment}) (new-knext-eq '({post} {thing}) '({stake} {thing})) (new-knext-eq '({point of reference} {thing}) '({reference point} {thing})) (new-knext-eq '({source} {thing}) '({reference} {thing})) (new-knext-eq '({criterion} {thing}) '({standard} {thing})) (new-knext-eq '({measure} {thing}) '({standard} {thing})) (new-knext-eq '({touchstone} {thing}) '({standard} {thing})) (new-knext-eq '({mark} {thing}) '({target} {thing})) (new-knext-eq '({marker} {thing}) '({marking} {thing})) (new-knext-eq '({mark} {thing}) '({marking} {thing})) (new-knext-eq '({sticker} {thing}) '({gummed label} {thing})) (new-knext-eq '({paster} {thing}) '({gummed label} {thing})) (new-knext-eq '({ticket} {thing}) '({tag} {thing})) (new-knext-is-a '({bow} {countable}) '({bowing} {uncountable})) (new-knext-is-a '({bow} {countable}) '({obeisance} {countable})) (new-knext-type {bowing} {uncountable}) (new-knext-type {bow} {uncountable}) (new-statement {bowing} {consists of} {bow}) (new-knext-is-a '({bowing} {uncountable}) '({obeisance} {uncountable})) (new-knext-is-a '({obeisance} {countable}) '({bow} {countable})) (new-knext-is-a '({obeisance} {uncountable}) '({bowing} {uncountable})) (new-knext-eq '({contact} {thing}) '({touch} {thing})) (new-knext-eq '({occurrent} {thing}) '({occurrence} {thing})) (new-knext-eq '({natural event} {thing}) '({occurrence} {thing})) (new-knext-eq '({preindication} {thing}) '({foretoken} {thing})) (new-knext-eq '({sign} {thing}) '({augury} {thing})) (new-knext-is-a '({augury} {countable}) '({foretoken} {countable})) (new-knext-is-a '({foretoken} {countable}) '({augury} {countable})) (new-knext-is-a '({wonder} {countable}) '({marvel} {countable})) (new-knext-is-a '({marvel} {countable}) '({wonder} {countable})) (new-knext-is-a '({drama} {countable}) '({dramatic event} {countable})) (new-knext-is-a '({dramatic event} {countable}) '({drama} {countable})) (new-knext-eq '({contingence} {thing}) '({eventuality} {thing})) (new-knext-is-a '({eventuality} {countable}) '({contingency} {countable})) (new-knext-is-a '({contingency} {countable}) '({eventuality} {countable})) (new-knext-type {beginning} {countable}) (new-knext-type {ending} {countable}) (new-is-not-a {beginning} {ending}) (new-knext-eq '({conclusion} {thing}) '({ending} {thing})) (new-knext-eq '({finish} {thing}) '({ending} {thing})) (new-knext-type {ending} {countable}) (new-knext-type {beginning} {countable}) (new-is-not-a {ending} {beginning}) (new-knext-is-a '({end} {countable}) '({last} {countable})) (new-knext-is-a '({last} {countable}) '({end} {countable})) (new-knext-eq '({resultant} {thing}) '({final result} {thing})) (new-knext-eq '({outcome} {thing}) '({final result} {thing})) (new-knext-is-a '({final result} {countable}) '({termination} {countable})) (new-knext-is-a '({termination} {countable}) '({final result} {countable})) (new-knext-eq '({aftermath} {thing}) '({consequence} {thing})) (new-knext-eq '({materialization} {thing}) '({offspring} {thing})) (add-english-names (list {materialization} {materialisation} {materialization} {materialisation}) (list "materialization" "materialisation" "materialization" "materialisation")) (new-knext-eq '({materialization} {thing}) '({offspring} {thing})) (new-knext-eq '({recurrent event} {thing}) '({periodic event} {thing})) (new-knext-eq '({alteration} {thing}) '({change} {thing})) (new-knext-eq '({modification} {thing}) '({change} {thing})) (new-knext-eq '({shock} {thing}) '({blow} {thing})) (new-knext-eq '({accident} {thing}) '({chance event} {thing})) (new-knext-eq '({stroke} {thing}) '({chance event} {thing})) (new-knext-is-a '({fortuity} {countable}) '({chance event} {countable})) (new-knext-is-a '({chance event} {countable}) '({fortuity} {countable})) (new-knext-is-a '({crash} {countable}) '({wreck} {countable})) (new-knext-is-a '({wreck} {countable}) '({crash} {countable})) (new-knext-eq '({hit} {thing}) '({collision} {thing})) (new-knext-is-a '({misfortune} {uncountable}) '({bad luck} {uncountable})) (new-knext-is-a '({bad luck} {uncountable}) '({misfortune} {uncountable})) (new-knext-eq '({shame} {thing}) '({pity} {thing})) (new-knext-eq '({outrage} {thing}) '({scandal} {thing})) (new-knext-eq '({nervous impulse} {thing}) '({nerve impulse} {thing})) (new-knext-eq '({neural impulse} {thing}) '({nerve impulse} {thing})) (new-knext-is-a '({nerve impulse} {countable}) '({impulse} {countable})) (new-knext-is-a '({impulse} {countable}) '({nerve impulse} {countable})) (new-knext-eq '({blowup} {thing}) '({explosion} {thing})) (new-knext-is-a '({explosion} {countable}) '({detonation} {countable})) (new-knext-is-a '({detonation} {countable}) '({explosion} {countable})) (new-knext-eq '({example} {thing}) '({instance} {thing})) (new-knext-is-a '({case} {countable}) '({instance} {countable})) (new-knext-is-a '({instance} {countable}) '({case} {countable})) (new-knext-eq '({mortification} {thing}) '({humiliation} {thing})) (new-knext-is-a '({time} {countable}) '({clip} {countable})) (new-knext-is-a '({clip} {countable}) '({time} {countable})) (new-knext-eq '({movement} {thing}) '({motion} {thing})) (new-knext-is-a '({approach} {countable}) '({approaching} {countable})) (new-knext-is-a '({approaching} {countable}) '({approach} {countable})) (new-knext-is-a '({passing} {countable}) '({passage} {countable})) (new-knext-is-a '({passage} {countable}) '({passing} {countable})) (new-knext-is-a '({change of location} {uncountable}) '({travel} {uncountable})) (new-knext-is-a '({travel} {uncountable}) '({change of location} {uncountable})) (new-knext-is-a '({shrinking} {uncountable}) '({shrinkage} {uncountable})) (new-knext-is-a '({shrinkage} {uncountable}) '({shrinking} {uncountable})) (new-knext-eq '({condensation} {thing}) '({compression} {thing})) (new-knext-eq '({contraction} {thing}) '({compression} {thing})) (new-knext-is-a '({injury} {countable}) '({accidental injury} {countable})) (new-knext-is-a '({accidental injury} {countable}) '({injury} {countable})) (new-knext-eq '({rupture} {thing}) '({falling out} {thing})) (new-knext-eq '({breach} {thing}) '({falling out} {thing})) (new-knext-eq '({rift} {thing}) '({falling out} {thing})) (new-knext-eq '({break} {thing}) '({severance} {thing})) (new-knext-is-a '({severance} {countable}) '({falling out} {countable})) (new-knext-is-a '({falling out} {countable}) '({severance} {countable})) (new-knext-eq '({mischance} {thing}) '({misadventure} {thing})) (new-knext-is-a '({mishap} {countable}) '({misadventure} {countable})) (new-knext-is-a '({misadventure} {countable}) '({mishap} {countable})) (new-knext-eq '({catastrophe} {thing}) '({calamity} {thing})) (new-knext-eq '({disaster} {thing}) '({calamity} {thing})) (new-knext-eq '({cataclysm} {thing}) '({calamity} {thing})) (new-knext-is-a '({calamity} {countable}) '({tragedy} {countable})) (new-knext-is-a '({tragedy} {countable}) '({calamity} {countable})) (new-knext-eq '({vis major} {thing}) '({act of god} {thing})) (new-knext-eq '({inevitable accident} {thing}) '({act of god} {thing})) (new-knext-eq '({unavoidable casualty} {thing}) '({act of god} {thing})) (new-knext-is-a '({act of god} {countable}) '({force majeure} {countable})) (new-knext-is-a '({force majeure} {countable}) '({act of god} {countable})) (new-knext-eq '({happenstance} {thing}) '({coincidence} {thing})) (new-knext-type {failure} {countable}) (new-knext-type {success} {countable}) (new-is-not-a {failure} {success}) (new-knext-eq '({ruin} {thing}) '({ruination} {thing})) (new-knext-is-a '({downfall} {countable}) '({ruination} {countable})) (new-knext-is-a '({ruination} {countable}) '({downfall} {countable})) (new-knext-type {success} {countable}) (new-knext-type {failure} {countable}) (new-is-not-a {success} {failure}) (new-knext-is-a '({miscarriage} {countable}) '({abortion} {countable})) (new-knext-is-a '({abortion} {countable}) '({miscarriage} {countable})) (new-knext-eq '({nascence} {thing}) '({nascency} {thing})) (new-knext-eq '({birth} {thing}) '({nativity} {thing})) (new-knext-type {birth} {countable}) (new-knext-type {death} {countable}) (new-is-not-a {birth} {death}) (new-knext-is-a '({nativity} {countable}) '({nascency} {countable})) (new-knext-is-a '({nascency} {countable}) '({nativity} {countable})) (new-knext-type {appearance} {countable}) (new-knext-type {disappearance} {uncountable}) (new-is-not-a {appearance} {disappearance}) (add-english-names (list {materialization} {materialisation} {materialization} {materialisation}) (list "materialization" "materialisation" "materialization" "materialisation")) (new-knext-eq '({materialization} {thing}) '({materialization} {thing})) (new-knext-is-a '({materialization} {countable}) '({manifestation} {countable})) (new-knext-is-a '({manifestation} {countable}) '({materialization} {countable})) (new-knext-eq '({origin} {thing}) '({inception} {thing})) (new-knext-is-a '({origination} {countable}) '({inception} {countable})) (new-knext-is-a '({inception} {countable}) '({origination} {countable})) (new-knext-is-a '({dawn} {countable}) '({morning} {countable})) (new-knext-is-a '({morning} {countable}) '({dawn} {countable})) (new-knext-eq '({conception} {thing}) '({creation} {thing})) (new-knext-eq '({fate} {thing}) '({destiny} {thing})) (new-knext-eq '({disintegration} {thing}) '({annihilation} {thing})) (new-knext-eq '({enfeeblement} {thing}) '({debilitation} {thing})) (new-knext-is-a '({debilitation} {countable}) '({enervation} {countable})) (new-knext-is-a '({debilitation} {countable}) '({exhaustion} {uncountable})) (new-knext-is-a '({enervation} {countable}) '({debilitation} {countable})) (new-knext-is-a '({enervation} {uncountable}) '({exhaustion} {uncountable})) (new-knext-type {exhaustion} {uncountable}) (new-knext-type {debilitation} {uncountable}) (new-statement {exhaustion} {consists of} {debilitation}) (new-knext-is-a '({exhaustion} {uncountable}) '({enervation} {uncountable})) (new-knext-eq '({detachment} {thing}) '({separation} {thing})) (new-knext-is-a '({separation} {countable}) '({breakup} {countable})) (new-knext-is-a '({breakup} {countable}) '({separation} {countable})) (new-knext-eq '({scattering} {thing}) '({dispersion} {thing})) (new-knext-eq '({extinction} {thing}) '({extermination} {thing})) (new-knext-eq '({departure} {thing}) '({passing} {thing})) (new-knext-eq '({expiration} {thing}) '({passing} {thing})) (new-knext-eq '({loss} {thing}) '({exit} {thing})) (new-knext-eq '({going} {thing}) '({exit} {thing})) (new-knext-eq '({release} {thing}) '({exit} {thing})) (new-knext-is-a '({passing} {countable}) '({exit} {countable})) (new-knext-is-a '({exit} {countable}) '({passing} {countable})) (new-knext-eq '({destruction} {thing}) '({demolition} {thing})) (new-knext-is-a '({demolition} {countable}) '({wipeout} {countable})) (new-knext-is-a '({wipeout} {countable}) '({demolition} {countable})) (new-knext-eq '({ruin} {thing}) '({ruination} {thing})) (new-knext-is-a '({variation} {countable}) '({fluctuation} {countable})) (new-knext-is-a '({fluctuation} {countable}) '({variation} {countable})) (new-knext-eq '({interlocking} {thing}) '({meshing} {thing})) (new-knext-eq '({engagement} {thing}) '({mesh} {thing})) (new-knext-is-a '({mesh} {uncountable}) '({meshing} {uncountable})) (new-knext-is-a '({meshing} {uncountable}) '({mesh} {uncountable})) (new-knext-eq '({bump} {thing}) '({blow} {thing})) (new-knext-eq '({contact} {thing}) '({striking} {thing})) (new-knext-is-a '({impinging} {countable}) '({striking} {countable})) (new-knext-is-a '({striking} {countable}) '({impinging} {countable})) (new-knext-eq '({wound} {thing}) '({combat injury} {thing})) (new-knext-is-a '({injury} {countable}) '({combat injury} {countable})) (new-knext-is-a '({combat injury} {countable}) '({injury} {countable})) (new-knext-eq '({repetition} {thing}) '({repeat} {thing})) (new-knext-is-a '({recurrence} {countable}) '({return} {countable})) (new-knext-is-a '({return} {countable}) '({recurrence} {countable})) (new-knext-eq '({wavelet} {thing}) '({riffle} {thing})) (new-knext-eq '({rippling} {thing}) '({ripple} {thing})) (new-knext-is-a '({ripple} {countable}) '({riffle} {countable})) (new-knext-is-a '({riffle} {countable}) '({ripple} {countable})) (new-knext-eq '({undulation} {thing}) '({wave} {thing})) (new-knext-eq '({rise} {thing}) '({lift} {thing})) (new-knext-eq '({roller} {thing}) '({rolling wave} {thing})) (new-knext-eq '({squeeze} {thing}) '({wring} {thing})) (new-knext-is-a '({turning} {countable}) '({turn} {countable})) (new-knext-is-a '({turn} {countable}) '({turning} {countable})) (new-knext-eq '({twist} {thing}) '({wrench} {thing})) (new-knext-eq '({moving ridge} {thing}) '({wave} {thing})) (new-knext-eq '({tie} {thing}) '({draw} {thing})) (new-knext-is-a '({draw} {countable}) '({standoff} {countable})) (new-knext-is-a '({standoff} {countable}) '({draw} {countable})) (new-knext-eq '({expiry} {thing}) '({death} {thing})) (new-knext-type {death} {countable}) (new-knext-type {birth} {countable}) (new-is-not-a {death} {birth}) (new-knext-is-a '({death} {countable}) '({decease} {countable})) (new-knext-is-a '({decease} {countable}) '({death} {countable})) (new-knext-eq '({lessening} {thing}) '({decrease} {thing})) (new-knext-type {decrease} {countable}) (new-knext-type {increase} {countable}) (new-is-not-a {decrease} {increase}) (new-knext-type {increase} {countable}) (new-knext-type {decrease} {countable}) (new-is-not-a {increase} {decrease}) (new-knext-eq '({moderation} {thing}) '({easing} {thing})) (new-knext-is-a '({easing} {uncountable}) '({relief} {uncountable})) (new-knext-is-a '({relief} {uncountable}) '({easing} {uncountable})) (new-knext-eq '({betterment} {thing}) '({improvement} {thing})) (new-knext-is-a '({improvement} {countable}) '({advance} {countable})) (new-knext-is-a '({advance} {countable}) '({improvement} {countable})) (new-knext-is-a '({refinement} {countable}) '({elaboration} {countable})) (new-knext-is-a '({elaboration} {countable}) '({refinement} {countable})) (new-knext-eq '({saltation} {thing}) '({jump} {thing})) (new-knext-is-a '({leap} {countable}) '({jump} {countable})) (new-knext-is-a '({jump} {countable}) '({leap} {countable})) (new-knext-eq '({transmutation} {thing}) '({transformation} {thing})) (new-knext-eq '({shift} {thing}) '({transformation} {thing})) (new-knext-eq '({infection} {thing}) '({contagion} {thing})) (new-knext-eq '({transmission} {thing}) '({contagion} {thing})) (new-knext-eq '({violent death} {thing}) '({killing} {thing})) (new-knext-eq '({surcease} {thing}) '({cessation} {thing})) (new-knext-eq '({flop} {thing}) '({bust} {thing})) (new-knext-eq '({fizzle} {thing}) '({bust} {thing})) (new-knext-eq '({halt} {thing}) '({stop} {thing})) (new-knext-eq '({divergence} {thing}) '({deviation} {thing})) (new-knext-eq '({difference} {thing}) '({deviation} {thing})) (new-knext-is-a '({deviation} {countable}) '({departure} {countable})) (new-knext-is-a '({departure} {countable}) '({deviation} {countable})) (new-knext-eq '({disruption} {thing}) '({dislocation} {thing})) (new-knext-eq '({interruption} {thing}) '({break} {thing})) (new-knext-eq '({suspension} {thing}) '({hiatus} {thing})) (new-knext-eq '({respite} {thing}) '({hiatus} {thing})) (new-knext-eq '({abatement} {thing}) '({hiatus} {thing})) (new-knext-is-a '({reprieve} {countable}) '({hiatus} {countable})) (new-knext-is-a '({hiatus} {countable}) '({reprieve} {countable})) (new-knext-eq '({accommodation} {thing}) '({adjustment} {thing})) (new-knext-eq '({fitting} {thing}) '({adjustment} {thing})) (new-knext-type {fall} {countable}) (new-knext-type {rise} {uncountable}) (new-is-not-a {fall} {rise}) (new-knext-eq '({mounting} {thing}) '({climbing} {thing})) (new-knext-is-a '({climb} {countable}) '({climbing} {countable})) (new-knext-is-a '({climbing} {countable}) '({climb} {countable})) (new-knext-eq '({lift} {thing}) '({elevation} {thing})) (new-knext-eq '({raising} {thing}) '({elevation} {thing})) (new-knext-eq '({fuss} {thing}) '({hassle} {thing})) (new-knext-eq '({trouble} {thing}) '({hassle} {thing})) (new-knext-is-a '({bother} {uncountable}) '({hassle} {uncountable})) (new-knext-is-a '({hassle} {uncountable}) '({bother} {uncountable})) (new-knext-eq '({visitation} {thing}) '({tribulation} {thing})) (new-knext-is-a '({trial} {countable}) '({tribulation} {countable})) (new-knext-is-a '({tribulation} {countable}) '({trial} {countable})) (new-knext-eq '({merger} {thing}) '({unification} {thing})) (new-knext-is-a '({fusion} {countable}) '({unification} {countable})) (new-knext-is-a '({unification} {countable}) '({fusion} {countable})) (new-knext-is-a '({conglomeration} {countable}) '({conglobation} {countable})) (new-knext-is-a '({conglobation} {countable}) '({conglomeration} {countable})) (new-knext-eq '({eruption} {thing}) '({clap} {thing})) (new-knext-eq '({blast} {thing}) '({clap} {thing})) (new-knext-eq '({bam} {thing}) '({clap} {thing})) (new-knext-is-a '({bang} {countable}) '({clap} {countable})) (new-knext-is-a '({clap} {countable}) '({bang} {countable})) (new-knext-eq '({bleep} {thing}) '({beep} {thing})) (new-knext-eq '({toll} {thing}) '({bell} {thing})) (new-knext-eq '({blaring} {thing}) '({blare} {thing})) (new-knext-eq '({cacophony} {thing}) '({blare} {thing})) (new-knext-eq '({clamor} {thing}) '({blare} {thing})) (new-knext-is-a '({blare} {countable}) '({din} {countable})) (new-knext-is-a '({din} {countable}) '({blare} {countable})) (new-knext-eq '({roar} {thing}) '({boom} {thing})) (new-knext-eq '({roaring} {thing}) '({boom} {thing})) (new-knext-is-a '({boom} {countable}) '({thunder} {uncountable})) (new-knext-type {thunder} {uncountable}) (new-knext-type {boom} {uncountable}) (new-statement {thunder} {consists of} {boom}) (new-knext-eq '({chink} {thing}) '({click} {thing})) (new-knext-eq '({clink} {thing}) '({click} {thing})) (new-knext-eq '({creaking} {thing}) '({creak} {thing})) (new-knext-eq '({hum} {thing}) '({humming} {thing})) (new-knext-eq '({knocking} {thing}) '({knock} {thing})) (new-knext-eq '({murmur} {thing}) '({muttering} {thing})) (new-knext-eq '({mussitation} {thing}) '({muttering} {thing})) (new-knext-eq '({murmuring} {thing}) '({mutter} {thing})) (new-knext-eq '({murmuration} {thing}) '({mutter} {thing})) (new-knext-is-a '({mutter} {countable}) '({muttering} {countable})) (new-knext-is-a '({muttering} {countable}) '({mutter} {countable})) (new-knext-eq '({nicker} {thing}) '({neigh} {thing})) (new-knext-eq '({whicker} {thing}) '({neigh} {thing})) (new-knext-eq '({whinny} {thing}) '({neigh} {thing})) (new-knext-eq '({roll} {thing}) '({paradiddle} {thing})) (new-knext-eq '({drum roll} {thing}) '({paradiddle} {thing})) (new-knext-eq '({rap} {thing}) '({pat} {thing})) (new-knext-is-a '({pat} {countable}) '({tap} {countable})) (new-knext-is-a '({tap} {countable}) '({pat} {countable})) (new-knext-eq '({pealing} {thing}) '({peal} {thing})) (new-knext-eq '({roll} {thing}) '({peal} {thing})) (new-knext-eq '({rolling} {thing}) '({peal} {thing})) (new-knext-eq '({rale} {thing}) '({rattle} {thing})) (new-knext-is-a '({rattle} {countable}) '({rattling} {countable})) (new-knext-is-a '({rattling} {countable}) '({rattle} {countable})) (new-knext-eq '({ring} {thing}) '({ringing} {thing})) (new-knext-eq '({tintinnabulation} {thing}) '({ringing} {thing})) (new-knext-eq '({rustling} {thing}) '({rustle} {thing})) (new-knext-eq '({whisper} {thing}) '({rustle} {thing})) (new-knext-eq '({whispering} {thing}) '({rustle} {thing})) (new-knext-eq '({shriek} {thing}) '({screech} {thing})) (new-knext-eq '({scream} {thing}) '({screech} {thing})) (new-knext-is-a '({screech} {countable}) '({shrieking} {countable})) (new-knext-is-a '({shrieking} {countable}) '({screech} {countable})) (new-knext-is-a '({tick} {countable}) '({ticking} {countable})) (new-knext-is-a '({ticking} {countable}) '({tick} {countable})) (new-knext-eq '({tocktact} {thing}) '({ticktock} {thing})) (new-knext-eq '({tictac} {thing}) '({ticktock} {thing})) (new-knext-eq '({tinkle} {thing}) '({ting} {thing})) (new-knext-eq '({whirring} {thing}) '({whirr} {thing})) (new-knext-eq '({birr} {thing}) '({whirr} {thing})) (new-knext-is-a '({whir} {countable}) '({whirr} {countable})) (new-knext-is-a '({whirr} {countable}) '({whir} {countable})) (new-knext-eq '({whistling} {thing}) '({whistle} {thing})) (new-knext-eq '({pulse} {thing}) '({heartbeat} {thing})) (new-knext-eq '({pulsation} {thing}) '({heartbeat} {thing})) (new-knext-is-a '({heartbeat} {countable}) '({beat} {countable})) (new-knext-is-a '({beat} {countable}) '({heartbeat} {countable})) (new-knext-is-a '({throbbing} {countable}) '({pounding} {countable})) (new-knext-is-a '({pounding} {countable}) '({throbbing} {countable})) (new-knext-eq '({flowing} {thing}) '({flow} {thing})) (new-knext-eq '({discharge} {thing}) '({outpouring} {thing})) (new-knext-eq '({touching} {thing}) '({touch} {thing})) (new-knext-eq '({strike} {thing}) '({tap} {thing})) (new-knext-is-a '({rap} {countable}) '({tap} {countable})) (new-knext-is-a '({tap} {countable}) '({rap} {countable})) (new-knext-eq '({belt} {thing}) '({smash} {thing})) (new-knext-eq '({knock} {thing}) '({bash} {thing})) (new-knext-eq '({bang} {thing}) '({bash} {thing})) (new-knext-is-a '({bash} {countable}) '({smash} {countable})) (new-knext-is-a '({smash} {countable}) '({bash} {countable})) (new-knext-is-a '({reversal} {countable}) '({turn around} {countable})) (new-knext-is-a '({turn around} {countable}) '({reversal} {countable})) (new-knext-is-a '({brush} {countable}) '({light touch} {countable})) (new-knext-is-a '({light touch} {countable}) '({brush} {countable})) (new-knext-is-a '({jump} {countable}) '({leap} {countable})) (new-knext-is-a '({leap} {countable}) '({jump} {countable})) (new-knext-eq '({meeting} {thing}) '({encounter} {thing})) (new-knext-eq '({transition} {thing}) '({conversion} {thing})) (new-knext-eq '({changeover} {thing}) '({conversion} {thing})) (new-knext-is-a '({juncture} {countable}) '({occasion} {countable})) (new-knext-is-a '({occasion} {countable}) '({juncture} {countable})) (new-knext-eq '({exigency} {thing}) '({emergency} {thing})) (new-knext-eq '({pinch} {thing}) '({emergency} {thing})) (new-knext-eq '({landmark} {thing}) '({turning point} {thing})) (new-knext-eq '({watershed} {thing}) '({turning point} {thing})) (new-knext-eq '({harm} {thing}) '({damage} {thing})) (new-knext-eq '({impairment} {thing}) '({damage} {thing})) (new-knext-eq '({pulse} {thing}) '({pulsation} {thing})) (new-knext-is-a '({pulsation} {countable}) '({pulsing} {uncountable})) (new-knext-is-a '({pulsation} {countable}) '({impulse} {countable})) (new-knext-type {pulsing} {uncountable}) (new-knext-type {pulsation} {uncountable}) (new-statement {pulsing} {consists of} {pulsation}) (new-knext-is-a '({pulsing} {uncountable}) '({impulse} {uncountable})) (new-knext-is-a '({impulse} {countable}) '({pulsation} {countable})) (new-knext-is-a '({impulse} {uncountable}) '({pulsing} {uncountable})) (new-knext-eq '({breakdown} {thing}) '({equipment failure} {thing})) (new-knext-eq '({twist} {thing}) '({turn of events} {thing})) (new-knext-eq '({chromosomal mutation} {thing}) '({genetic mutation} {thing})) (new-knext-is-a '({mutation} {countable}) '({genetic mutation} {countable})) (new-knext-is-a '({genetic mutation} {countable}) '({mutation} {countable})) (new-knext-eq '({temblor} {thing}) '({earthquake} {thing})) (new-knext-eq '({seism} {thing}) '({earthquake} {thing})) (new-knext-eq '({intrusion} {thing}) '({encroachment} {thing})) (new-knext-is-a '({invasion} {countable}) '({encroachment} {countable})) (new-knext-is-a '({encroachment} {countable}) '({invasion} {countable})) (new-knext-eq '({trickle} {thing}) '({drip} {thing})) (new-knext-is-a '({drip} {countable}) '({dribble} {countable})) (new-knext-is-a '({dribble} {countable}) '({drip} {countable})) (new-knext-eq '({eruption} {thing}) '({irruption} {thing})) (new-knext-is-a '({outbreak} {countable}) '({irruption} {countable})) (new-knext-is-a '({irruption} {countable}) '({outbreak} {countable})) (new-knext-eq '({jet} {thing}) '({spurt} {thing})) (new-knext-eq '({squirt} {thing}) '({spurt} {thing})) (new-knext-eq '({spirt} {thing}) '({spurt} {thing})) (add-english-names (list {fertilization} {fertilisation} {fertilization} {fertilisation}) (list "fertilization" "fertilisation" "fertilization" "fertilisation")) (new-knext-eq '({fecundation} {thing}) '({fertilization} {thing})) (new-knext-eq '({impregnation} {thing}) '({fertilization} {thing})) (add-english-names (list {fertilization} {fertilisation} {fertilization} {fertilisation}) (list "fertilization" "fertilisation" "fertilization" "fertilisation")) (add-english-names (list {fertilization} {fertilisation} {fertilization} {fertilisation}) (list "fertilization" "fertilisation" "fertilization" "fertilisation")) (new-knext-eq '({flutter} {thing}) '({flapping} {thing})) (new-knext-eq '({fluttering} {thing}) '({flapping} {thing})) (new-knext-is-a '({flap} {countable}) '({flapping} {countable})) (new-knext-is-a '({flapping} {countable}) '({flap} {countable})) (new-knext-eq '({revolution} {thing}) '({rotation} {thing})) (new-knext-is-a '({rotation} {countable}) '({gyration} {countable})) (new-knext-is-a '({gyration} {countable}) '({rotation} {countable})) (new-knext-eq '({axial motion} {thing}) '({axial rotation} {thing})) (new-knext-eq '({roll} {thing}) '({axial rotation} {thing})) (new-knext-is-a '({ladder} {countable}) '({ravel} {countable})) (new-knext-is-a '({ravel} {countable}) '({ladder} {countable})) (new-knext-eq '({slackening} {thing}) '({loosening} {thing})) (new-knext-is-a '({relaxation} {countable}) '({loosening} {countable})) (new-knext-is-a '({loosening} {countable}) '({relaxation} {countable})) (new-knext-eq '({permutation} {thing}) '({substitution} {thing})) (new-knext-eq '({transposition} {thing}) '({substitution} {thing})) (new-knext-eq '({replacement} {thing}) '({substitution} {thing})) (new-knext-is-a '({substitution} {countable}) '({switch} {countable})) (new-knext-is-a '({switch} {countable}) '({substitution} {countable})) (new-knext-eq '({progress} {thing}) '({progression} {thing})) (new-knext-is-a '({progression} {countable}) '({advance} {countable})) (new-knext-is-a '({advance} {countable}) '({progression} {countable})) (new-knext-eq '({ascent} {thing}) '({rising} {thing})) (new-knext-eq '({rise} {thing}) '({ascension} {thing})) (new-knext-type {rise} {countable}) (new-knext-type {fall} {countable}) (new-is-not-a {rise} {fall}) (new-knext-is-a '({rising} {countable}) '({ascension} {countable})) (new-knext-is-a '({ascension} {countable}) '({rising} {countable})) (new-knext-eq '({affair} {thing}) '({social occasion} {thing})) (new-knext-eq '({function} {thing}) '({social occasion} {thing})) (new-knext-eq '({social function} {thing}) '({social occasion} {thing})) (new-knext-eq '({bash} {thing}) '({do} {thing})) (new-knext-eq '({brawl} {thing}) '({do} {thing})) (new-knext-eq '({feast} {thing}) '({fete} {thing})) (new-knext-eq '({fiesta} {thing}) '({fete} {thing})) (new-knext-eq '({jubilation} {thing}) '({celebration} {thing})) (new-knext-eq '({ceremonial} {thing}) '({ceremony} {thing})) (new-knext-eq '({ceremonial occasion} {thing}) '({ceremony} {thing})) (new-knext-eq '({observance} {thing}) '({ceremony} {thing})) (new-knext-eq '({obsequy} {thing}) '({funeral} {thing})) (new-knext-eq '({entombment} {thing}) '({burial} {thing})) (new-knext-eq '({inhumation} {thing}) '({burial} {thing})) (new-knext-eq '({interment} {thing}) '({burial} {thing})) (new-knext-eq '({sepulture} {thing}) '({burial} {thing})) (new-knext-eq '({competition} {thing}) '({contest} {thing})) (new-knext-eq '({foot race} {thing}) '({footrace} {thing})) (new-knext-eq '({run} {thing}) '({footrace} {thing})) (new-knext-eq '({tourney} {thing}) '({tournament} {thing})) (new-knext-type {victory} {countable}) (new-knext-type {defeat} {countable}) (new-is-not-a {victory} {defeat}) (new-knext-is-a '({victory} {countable}) '({triumph} {countable})) (new-knext-is-a '({triumph} {countable}) '({victory} {countable})) (new-knext-type {defeat} {countable}) (new-knext-type {victory} {countable}) (new-is-not-a {defeat} {victory}) (new-knext-is-a '({defeat} {countable}) '({licking} {countable})) (new-knext-is-a '({licking} {countable}) '({defeat} {countable})) (new-knext-eq '({black eye} {thing}) '({setback} {thing})) (new-knext-eq '({reverse} {thing}) '({reversal} {thing})) (new-knext-eq '({blow} {thing}) '({reversal} {thing})) (new-knext-is-a '({reversal} {countable}) '({setback} {countable})) (new-knext-is-a '({setback} {countable}) '({reversal} {countable})) (new-knext-eq '({collapse} {thing}) '({crash} {thing})) (new-knext-eq '({passionateness} {thing}) '({passion} {thing})) (new-knext-eq '({ardor} {thing}) '({fervor} {thing})) (add-english-names (list {ardor} {ardour}) (list "ardor" "ardour")) (new-knext-eq '({ardor} {thing}) '({fervor} {thing})) (add-english-names (list {fervor} {fervour}) (list "fervor" "fervour")) (new-knext-eq '({fervency} {thing}) '({fervor} {thing})) (new-knext-eq '({fire} {thing}) '({fervor} {thing})) (new-knext-eq '({fervidness} {thing}) '({fervor} {thing})) (new-knext-eq '({aspiration} {thing}) '({ambition} {thing})) (new-knext-eq '({dream} {thing}) '({ambition} {thing})) (new-knext-eq '({appetency} {thing}) '({appetite} {thing})) (new-knext-eq '({appetence} {thing}) '({appetite} {thing})) (new-knext-eq '({want} {thing}) '({wish} {thing})) (new-knext-is-a '({wish} {countable}) '({wishing} {uncountable})) (new-knext-type {wishing} {uncountable}) (new-knext-type {wish} {uncountable}) (new-statement {wishing} {consists of} {wish}) (new-knext-eq '({yearning} {thing}) '({longing} {thing})) (new-knext-is-a '({longing} {countable}) '({hungriness} {uncountable})) (new-knext-type {hungriness} {uncountable}) (new-knext-type {longing} {uncountable}) (new-statement {hungriness} {consists of} {longing}) (new-knext-eq '({yen} {thing}) '({hankering} {thing})) (new-knext-eq '({eros} {thing}) '({concupiscence} {thing})) (new-knext-eq '({physical attraction} {thing}) '({sexual desire} {thing})) (new-knext-is-a '({sexual desire} {countable}) '({concupiscence} {uncountable})) (new-knext-type {concupiscence} {uncountable}) (new-knext-type {sexual desire} {uncountable}) (new-statement {concupiscence} {consists of} {sexual desire}) (new-knext-type {sexual love} {uncountable}) (new-knext-type {erotic love} {uncountable}) (new-statement {sexual love} {consists of} {erotic love}) (new-knext-is-a '({erotic love} {countable}) '({sexual love} {uncountable})) (new-knext-eq '({lust} {thing}) '({lecherousness} {thing})) (new-knext-eq '({lustfulness} {thing}) '({lecherousness} {thing})) (new-knext-eq '({itch} {thing}) '({urge} {thing})) (new-knext-eq '({impulse} {thing}) '({caprice} {thing})) (new-knext-eq '({whim} {thing}) '({caprice} {thing})) (new-knext-type {pleasure} {uncountable}) (new-knext-type {pain} {uncountable}) (new-is-not-a {pleasure} {pain}) (new-knext-type {pleasure} {uncountable}) (new-knext-type {pleasance} {uncountable}) (new-statement {pleasure} {consists of} {pleasance}) (new-knext-is-a '({pleasance} {countable}) '({pleasure} {uncountable})) (new-knext-is-a '({delight} {countable}) '({delectation} {uncountable})) (new-knext-type {delectation} {uncountable}) (new-knext-type {delight} {uncountable}) (new-statement {delectation} {consists of} {delight}) (new-knext-eq '({assuagement} {thing}) '({alleviation} {thing})) (new-knext-type {relief} {uncountable}) (new-knext-type {alleviation} {uncountable}) (new-statement {relief} {consists of} {alleviation}) (new-knext-is-a '({alleviation} {countable}) '({relief} {uncountable})) (new-knext-eq '({pain} {thing}) '({painfulness} {thing})) (new-knext-type {pain} {uncountable}) (new-knext-type {pleasure} {uncountable}) (new-is-not-a {pain} {pleasure}) (new-knext-eq '({suffering} {thing}) '({hurt} {thing})) (new-knext-eq '({torment} {thing}) '({agony} {thing})) (new-knext-is-a '({agony} {countable}) '({torture} {uncountable})) (new-knext-type {torture} {uncountable}) (new-knext-type {agony} {uncountable}) (new-statement {torture} {consists of} {agony}) (new-knext-eq '({soreness} {thing}) '({discomfort} {thing})) (new-knext-eq '({irritation} {thing}) '({discomfort} {thing})) (new-knext-eq '({hurt} {thing}) '({distress} {thing})) (new-knext-eq '({suffering} {thing}) '({distress} {thing})) (new-knext-eq '({torment} {thing}) '({anguish} {thing})) (new-knext-eq '({torture} {thing}) '({anguish} {thing})) (new-knext-type {liking} {countable}) (new-knext-type {dislike} {uncountable}) (new-is-not-a {liking} {dislike}) (new-knext-eq '({penchant} {thing}) '({preference} {thing})) (new-knext-eq '({predilection} {thing}) '({preference} {thing})) (new-knext-eq '({taste} {thing}) '({preference} {thing})) (new-knext-type {friendliness} {uncountable}) (new-knext-type {unfriendliness} {uncountable}) (new-is-not-a {friendliness} {unfriendliness}) (new-knext-type {approval} {uncountable}) (new-knext-type {disapproval} {uncountable}) (new-is-not-a {approval} {disapproval}) (new-knext-eq '({esteem} {thing}) '({admiration} {thing})) (new-knext-type {dislike} {uncountable}) (new-knext-type {liking} {countable}) (new-is-not-a {dislike} {liking}) (new-knext-type {unfriendliness} {uncountable}) (new-knext-type {friendliness} {uncountable}) (new-is-not-a {unfriendliness} {friendliness}) (new-knext-eq '({disdain} {thing}) '({contempt} {thing})) (new-knext-eq '({scorn} {thing}) '({contempt} {thing})) (new-knext-eq '({despite} {thing}) '({contempt} {thing})) (new-knext-eq '({repulsion} {thing}) '({repugnance} {thing})) (new-knext-eq '({horror} {thing}) '({repugnance} {thing})) (new-knext-is-a '({repugnance} {countable}) '({revulsion} {uncountable})) (new-knext-type {revulsion} {uncountable}) (new-knext-type {repugnance} {uncountable}) (new-statement {revulsion} {consists of} {repugnance}) (new-knext-type {gratitude} {uncountable}) (new-knext-type {ingratitude} {uncountable}) (new-is-not-a {gratitude} {ingratitude}) (new-knext-eq '({ungratefulness} {thing}) '({ingratitude} {thing})) (new-knext-type {ingratitude} {uncountable}) (new-knext-type {gratitude} {uncountable}) (new-is-not-a {ingratitude} {gratitude}) (new-knext-type {concern} {countable}) (new-knext-type {unconcern} {uncountable}) (new-is-not-a {concern} {unconcern}) (new-knext-type {unconcern} {uncountable}) (new-knext-type {concern} {countable}) (new-is-not-a {unconcern} {concern}) (new-knext-is-a '({distance} {countable}) '({aloofness} {uncountable})) (new-knext-type {aloofness} {uncountable}) (new-knext-type {distance} {uncountable}) (new-statement {aloofness} {consists of} {distance}) (new-knext-is-a '({withdrawal} {countable}) '({detachment} {uncountable})) (new-knext-type {detachment} {uncountable}) (new-knext-type {withdrawal} {uncountable}) (new-statement {detachment} {consists of} {withdrawal}) (new-knext-eq '({cruelty} {thing}) '({mercilessness} {thing})) (new-knext-eq '({pitilessness} {thing}) '({mercilessness} {thing})) (new-knext-eq '({ruthlessness} {thing}) '({mercilessness} {thing})) (new-knext-eq '({humiliation} {thing}) '({chagrin} {thing})) (new-knext-eq '({mortification} {thing}) '({chagrin} {thing})) (new-knext-eq '({confusion} {thing}) '({discombobulation} {thing})) (new-knext-eq '({discomposure} {thing}) '({discomfiture} {thing})) (new-knext-eq '({disconcertion} {thing}) '({discomfiture} {thing})) (new-knext-eq '({disconcertment} {thing}) '({discomfiture} {thing})) (new-knext-eq '({amazement} {thing}) '({astonishment} {thing})) (new-knext-eq '({shock} {thing}) '({daze} {thing})) (new-knext-eq '({stupor} {thing}) '({daze} {thing})) (new-knext-eq '({expectancy} {thing}) '({anticipation} {thing})) (new-knext-is-a '({sensitivity} {countable}) '({sensitiveness} {uncountable})) (new-knext-type {sensitiveness} {uncountable}) (new-knext-type {sensitivity} {uncountable}) (new-statement {sensitiveness} {consists of} {sensitivity}) (new-knext-eq '({insight} {thing}) '({perceptiveness} {thing})) (new-knext-eq '({perceptivity} {thing}) '({perceptiveness} {thing})) (new-knext-eq '({peacefulness} {thing}) '({peace of mind} {thing})) (new-knext-eq '({repose} {thing}) '({peace of mind} {thing})) (new-knext-eq '({serenity} {thing}) '({peace of mind} {thing})) (new-knext-eq '({ataraxis} {thing}) '({peace of mind} {thing})) (new-knext-type {easiness} {uncountable}) (new-knext-type {relaxation} {uncountable}) (new-statement {easiness} {consists of} {relaxation}) (new-knext-is-a '({relaxation} {countable}) '({easiness} {uncountable})) (new-knext-eq '({choler} {thing}) '({anger} {thing})) (new-knext-eq '({ire} {thing}) '({anger} {thing})) (new-knext-eq '({rage} {thing}) '({fury} {thing})) (new-knext-is-a '({fury} {countable}) '({madness} {uncountable})) (new-knext-type {madness} {uncountable}) (new-knext-type {fury} {uncountable}) (new-statement {madness} {consists of} {fury}) (new-knext-type {infuriation} {uncountable}) (new-knext-type {enragement} {uncountable}) (new-statement {infuriation} {consists of} {enragement}) (new-knext-is-a '({enragement} {countable}) '({infuriation} {uncountable})) (new-knext-eq '({exasperation} {thing}) '({aggravation} {thing})) (new-knext-eq '({fearfulness} {thing}) '({fear} {thing})) (new-knext-eq '({fright} {thing}) '({fear} {thing})) (new-knext-type {fear} {uncountable}) (new-knext-type {fearlessness} {uncountable}) (new-is-not-a {fear} {fearlessness}) (new-knext-eq '({dismay} {thing}) '({alarm} {thing})) (new-knext-eq '({consternation} {thing}) '({alarm} {thing})) (new-knext-eq '({shiver} {thing}) '({frisson} {thing})) (new-knext-eq '({chill} {thing}) '({frisson} {thing})) (new-knext-eq '({quiver} {thing}) '({frisson} {thing})) (new-knext-eq '({shudder} {thing}) '({frisson} {thing})) (new-knext-eq '({thrill} {thing}) '({frisson} {thing})) (new-knext-eq '({tingle} {thing}) '({frisson} {thing})) (new-knext-eq '({terror} {thing}) '({panic} {thing})) (new-knext-eq '({affright} {thing}) '({panic} {thing})) (new-knext-eq '({scare} {thing}) '({panic attack} {thing})) (new-knext-eq '({trouble} {thing}) '({worry} {thing})) (new-knext-eq '({care} {thing}) '({concern} {thing})) (new-knext-eq '({fear} {thing}) '({concern} {thing})) (new-knext-eq '({bravery} {thing}) '({fearlessness} {thing})) (new-knext-type {fearlessness} {uncountable}) (new-knext-type {fear} {uncountable}) (new-is-not-a {fearlessness} {fear}) (new-knext-type {confidence} {uncountable}) (new-knext-type {diffidence} {uncountable}) (new-is-not-a {confidence} {diffidence}) (new-knext-type {happiness} {uncountable}) (new-knext-type {sadness} {uncountable}) (new-is-not-a {happiness} {sadness}) (new-knext-eq '({joyousness} {thing}) '({joy} {thing})) (new-knext-eq '({joyfulness} {thing}) '({joy} {thing})) (new-knext-type {joy} {uncountable}) (new-knext-type {sorrow} {uncountable}) (new-is-not-a {joy} {sorrow}) (new-knext-eq '({elation} {thing}) '({lightness} {thing})) (new-knext-is-a '({high spirits} {countable}) '({lightness} {uncountable})) (new-knext-type {lightness} {uncountable}) (new-knext-type {high spirits} {uncountable}) (new-statement {lightness} {consists of} {high spirits}) (new-knext-eq '({jubilance} {thing}) '({exultation} {thing})) (new-knext-eq '({jubilancy} {thing}) '({exultation} {thing})) (new-knext-eq '({jubilation} {thing}) '({exultation} {thing})) (new-knext-type {satisfaction} {uncountable}) (new-knext-type {dissatisfaction} {uncountable}) (new-is-not-a {satisfaction} {dissatisfaction}) (add-english-names (list {fulfillment} {fulfilment} {fulfilment}) (list "fulfillment" "fulfilment" "fulfilment")) (new-knext-eq '({fulfillment} {thing}) '({fulfillment} {thing})) (new-knext-eq '({unhappiness} {thing}) '({sadness} {thing})) (new-knext-type {sadness} {uncountable}) (new-knext-type {happiness} {uncountable}) (new-is-not-a {sadness} {happiness}) (new-knext-type {sorrow} {uncountable}) (new-knext-type {joy} {uncountable}) (new-is-not-a {sorrow} {joy}) (new-knext-eq '({heartache} {thing}) '({grief} {thing})) (new-knext-eq '({heartbreak} {thing}) '({grief} {thing})) (new-knext-eq '({brokenheartedness} {thing}) '({grief} {thing})) (new-knext-eq '({rue} {thing}) '({regret} {thing})) (new-knext-eq '({ruefulness} {thing}) '({regret} {thing})) (new-knext-is-a '({sorrow} {countable}) '({regret} {uncountable})) (new-knext-type {regret} {uncountable}) (new-knext-type {sorrow} {uncountable}) (new-statement {regret} {consists of} {sorrow}) (new-knext-eq '({penitence} {thing}) '({repentance} {thing})) (new-knext-eq '({penance} {thing}) '({repentance} {thing})) (add-english-names (list {demoralization} {demoralisation} {demoralization} {demoralisation}) (list "demoralization" "demoralisation" "demoralization" "demoralisation")) (new-knext-eq '({demoralization} {thing}) '({demoralization} {thing})) (new-knext-eq '({letdown} {thing}) '({disappointment} {thing})) (new-knext-eq '({defeat} {thing}) '({frustration} {thing})) (new-knext-type {hope} {uncountable}) (new-knext-type {despair} {uncountable}) (new-is-not-a {hope} {despair}) (new-knext-type {despair} {uncountable}) (new-knext-type {hope} {uncountable}) (new-is-not-a {despair} {hope}) (new-knext-eq '({surrender} {thing}) '({resignation} {thing})) (new-knext-type {love} {uncountable}) (new-knext-type {hate} {uncountable}) (new-is-not-a {love} {hate}) (new-knext-eq '({fondness} {thing}) '({affectionateness} {thing})) (new-knext-eq '({warmness} {thing}) '({affectionateness} {thing})) (new-knext-eq '({warmheartedness} {thing}) '({affectionateness} {thing})) (new-knext-eq '({tenderness} {thing}) '({affection} {thing})) (new-knext-eq '({heart} {thing}) '({affection} {thing})) (new-knext-eq '({philia} {thing}) '({affection} {thing})) (new-knext-is-a '({affection} {countable}) '({affectionateness} {uncountable})) (new-knext-type {affectionateness} {uncountable}) (new-knext-type {affection} {uncountable}) (new-statement {affectionateness} {consists of} {affection}) (new-knext-eq '({fond regard} {thing}) '({attachment} {thing})) (new-knext-eq '({hatred} {thing}) '({hate} {thing})) (new-knext-type {hate} {uncountable}) (new-knext-type {love} {uncountable}) (new-is-not-a {hate} {love}) (new-knext-eq '({hostility} {thing}) '({ill will} {thing})) (new-knext-eq '({enmity} {thing}) '({ill will} {thing})) (new-knext-eq '({score} {thing}) '({grudge} {thing})) (new-knext-eq '({grievance} {thing}) '({grudge} {thing})) (new-knext-eq '({maliciousness} {thing}) '({malice} {thing})) (new-knext-eq '({spite} {thing}) '({malice} {thing})) (new-knext-eq '({spitefulness} {thing}) '({malice} {thing})) (new-knext-eq '({venom} {thing}) '({malice} {thing})) (new-knext-eq '({temper} {thing}) '({mood} {thing})) (new-knext-eq '({humor} {thing}) '({mood} {thing})) (add-english-names (list {humor} {humour}) (list "humor" "humour")) (new-knext-eq '({humor} {thing}) '({mood} {thing})) (new-knext-eq '({sympathy} {thing}) '({fellow feeling} {thing})) (new-knext-eq '({compassionateness} {thing}) '({compassion} {thing})) (new-knext-is-a '({mercifulness} {countable}) '({mercy} {uncountable})) (new-knext-type {mercy} {uncountable}) (new-knext-type {mercifulness} {uncountable}) (new-statement {mercy} {consists of} {mercifulness}) (new-knext-eq '({edible} {thing}) '({comestible} {thing})) (new-knext-eq '({eatable} {thing}) '({comestible} {thing})) (new-knext-eq '({pabulum} {thing}) '({comestible} {thing})) (new-knext-eq '({victual} {thing}) '({comestible} {thing})) (new-knext-type {comestible} {countable}) (new-knext-type {victuals} {countable}) (new-statement {victuals} {consists of} {comestible}) (new-knext-type {victuals} {uncountable}) (new-knext-type {comestible} {uncountable}) (new-statement {victuals} {consists of} {comestible}) (new-knext-eq '({delicacy} {thing}) '({dainty} {thing})) (new-knext-eq '({goody} {thing}) '({dainty} {thing})) (new-knext-eq '({kickshaw} {thing}) '({dainty} {thing})) (new-knext-eq '({treat} {thing}) '({dainty} {thing})) (new-knext-type {foodstuff} {uncountable}) (new-knext-type {food product} {uncountable}) (new-statement {foodstuff} {consists of} {food product}) (new-knext-is-a '({food product} {countable}) '({foodstuff} {uncountable})) (new-knext-eq '({nourishment} {thing}) '({nutriment} {thing})) (new-knext-eq '({nutrition} {thing}) '({nutriment} {thing})) (new-knext-eq '({sustenance} {thing}) '({nutriment} {thing})) (new-knext-eq '({aliment} {thing}) '({nutriment} {thing})) (new-knext-eq '({alimentation} {thing}) '({nutriment} {thing})) (new-knext-is-a '({nutriment} {uncountable}) '({victuals} {uncountable})) (new-knext-is-a '({victuals} {uncountable}) '({nutriment} {uncountable})) (new-knext-is-a '({cuisine} {countable}) '({culinary art} {countable})) (new-knext-is-a '({culinary art} {countable}) '({cuisine} {countable})) (new-knext-eq '({viands} {thing}) '({provisions} {thing})) (new-knext-eq '({victuals} {thing}) '({provisions} {thing})) (new-knext-is-a '({provisions} {uncountable}) '({provender} {uncountable})) (new-knext-is-a '({provender} {uncountable}) '({provisions} {uncountable})) (new-knext-eq '({repast} {thing}) '({meal} {thing})) (new-knext-eq '({tiffin} {thing}) '({lunch} {thing})) (new-knext-eq '({dejeuner} {thing}) '({lunch} {thing})) (new-knext-eq '({bite} {thing}) '({collation} {thing})) (new-knext-eq '({snack} {thing}) '({collation} {thing})) (new-knext-eq '({feast} {thing}) '({banquet} {thing})) (new-knext-eq '({spread} {thing}) '({banquet} {thing})) (new-knext-eq '({portion} {thing}) '({helping} {thing})) (new-knext-eq '({serving} {thing}) '({helping} {thing})) (new-knext-eq '({taste} {thing}) '({mouthful} {thing})) (new-knext-eq '({bit} {thing}) '({morsel} {thing})) (new-knext-eq '({bite} {thing}) '({morsel} {thing})) (new-knext-eq '({chaw} {thing}) '({chew} {thing})) (new-knext-eq '({cud} {thing}) '({chew} {thing})) (new-knext-eq '({quid} {thing}) '({chew} {thing})) (new-knext-eq '({plug} {thing}) '({chew} {thing})) (new-knext-eq '({wad} {thing}) '({chew} {thing})) (new-knext-eq '({sweet} {thing}) '({confection} {thing})) (new-knext-eq '({confect} {thing}) '({candy} {thing})) (new-knext-eq '({sweet} {thing}) '({dessert} {thing})) (new-knext-eq '({afters} {thing}) '({dessert} {thing})) (new-knext-eq '({icecream} {thing}) '({ice cream} {thing})) (new-knext-eq '({cooky} {thing}) '({cookie} {thing})) (new-knext-eq '({biscuit} {thing}) '({cookie} {thing})) (new-knext-eq '({conserve} {thing}) '({conserves} {thing})) (new-knext-eq '({preserves} {thing}) '({conserves} {thing})) (new-knext-is-a '({preserve} {countable}) '({conserves} {uncountable})) (new-knext-type {conserves} {uncountable}) (new-knext-type {preserve} {uncountable}) (new-statement {conserves} {consists of} {preserve}) (new-knext-eq '({frier} {thing}) '({fryer} {thing})) (new-knext-eq '({pullet} {thing}) '({fryer} {thing})) (new-knext-eq '({piece} {thing}) '({slice} {thing})) (new-knext-eq '({boeuf} {thing}) '({beef} {thing})) (new-knext-eq '({rabbit} {thing}) '({hare} {thing})) (new-knext-eq '({jambon} {thing}) '({ham} {thing})) (new-knext-eq '({gammon} {thing}) '({ham} {thing})) (new-knext-eq '({hotdog} {thing}) '({frankfurter} {thing})) (new-knext-eq '({hot dog} {thing}) '({frankfurter} {thing})) (new-knext-eq '({dog} {thing}) '({frankfurter} {thing})) (new-knext-eq '({wiener} {thing}) '({frankfurter} {thing})) (new-knext-eq '({weenie} {thing}) '({frankfurter} {thing})) (new-knext-is-a '({frankfurter} {countable}) '({wienerwurst} {uncountable})) (new-knext-type {wienerwurst} {uncountable}) (new-knext-type {frankfurter} {uncountable}) (new-statement {wienerwurst} {consists of} {frankfurter}) (new-knext-eq '({staff of life} {thing}) '({bread} {thing})) (new-knext-eq '({roll} {thing}) '({bun} {thing})) (new-knext-eq '({bomber} {thing}) '({grinder} {thing})) (new-knext-eq '({hero} {thing}) '({grinder} {thing})) (new-knext-eq '({hero sandwich} {thing}) '({grinder} {thing})) (new-knext-eq '({hoagie} {thing}) '({grinder} {thing})) (new-knext-eq '({hoagy} {thing}) '({grinder} {thing})) (new-knext-eq '({cuban sandwich} {thing}) '({grinder} {thing})) (new-knext-eq '({italian sandwich} {thing}) '({grinder} {thing})) (new-knext-eq '({poor boy} {thing}) '({grinder} {thing})) (new-knext-eq '({sub} {thing}) '({grinder} {thing})) (new-knext-eq '({submarine} {thing}) '({grinder} {thing})) (new-knext-eq '({submarine sandwich} {thing}) '({grinder} {thing})) (new-knext-eq '({torpedo} {thing}) '({grinder} {thing})) (new-knext-eq '({wedge} {thing}) '({grinder} {thing})) (new-knext-eq '({zep} {thing}) '({grinder} {thing})) (new-knext-eq '({garden truck} {thing}) '({green groceries} {thing})) (new-knext-eq '({green goods} {thing}) '({produce} {thing})) (new-knext-is-a '({produce} {uncountable}) '({green groceries} {uncountable})) (new-knext-is-a '({green groceries} {uncountable}) '({produce} {uncountable})) (new-knext-eq '({veggie} {thing}) '({vegetable} {thing})) (new-knext-eq '({green} {thing}) '({leafy vegetable} {thing})) (new-knext-type {greens} {uncountable}) (new-knext-type {leafy vegetable} {uncountable}) (new-statement {greens} {consists of} {leafy vegetable}) (new-knext-type {leafy vegetable} {countable}) (new-knext-type {greens} {countable}) (new-statement {greens} {consists of} {leafy vegetable}) (new-knext-eq '({chip} {thing}) '({crisp} {thing})) (new-knext-eq '({potato chip} {thing}) '({crisp} {thing})) (new-knext-eq '({saratoga chip} {thing}) '({crisp} {thing})) (new-knext-eq '({cucumber} {thing}) '({cuke} {thing})) (new-knext-eq '({peanut} {thing}) '({goober} {thing})) (new-knext-eq '({earthnut} {thing}) '({goober} {thing})) (new-knext-eq '({groundnut} {thing}) '({goober} {thing})) (new-knext-eq '({monkey nut} {thing}) '({goober} {thing})) (new-knext-type {peel} {uncountable}) (new-knext-type {skin} {uncountable}) (new-statement {peel} {consists of} {skin}) (new-knext-is-a '({skin} {countable}) '({peel} {uncountable})) (new-knext-eq '({provender} {thing}) '({feed} {thing})) (new-knext-eq '({cereal} {thing}) '({grain} {thing})) (new-knext-type {ingredient} {countable}) (new-knext-type {fixings} {countable}) (new-statement {fixings} {consists of} {ingredient}) (new-knext-type {fixings} {uncountable}) (new-knext-type {ingredient} {uncountable}) (new-statement {fixings} {consists of} {ingredient}) (add-english-names (list {flavorer} {flavourer}) (list "flavorer" "flavourer")) (new-knext-eq '({flavoring} {thing}) '({flavorer} {thing})) (add-english-names (list {flavoring} {flavouring}) (list "flavoring" "flavouring")) (new-knext-eq '({flavoring} {thing}) '({flavorer} {thing})) (new-knext-eq '({seasoning} {thing}) '({flavorer} {thing})) (new-knext-is-a '({flavorer} {uncountable}) '({seasoner} {countable})) (new-knext-is-a '({seasoner} {countable}) '({flavorer} {uncountable})) (new-knext-eq '({common salt} {thing}) '({table salt} {thing})) (new-knext-type {egg} {countable}) (new-knext-type {eggs} {countable}) (new-statement {eggs} {consists of} {egg}) (new-knext-type {eggs} {uncountable}) (new-knext-type {egg} {uncountable}) (new-statement {eggs} {consists of} {egg}) (new-knext-eq '({ovalbumin} {thing}) '({egg white} {thing})) (new-knext-is-a '({egg white} {countable}) '({albumen} {uncountable})) (new-knext-type {albumen} {uncountable}) (new-knext-type {egg white} {uncountable}) (new-statement {albumen} {consists of} {egg white}) (new-knext-eq '({spread} {thing}) '({paste} {thing})) (new-knext-eq '({sweetener} {thing}) '({sweetening} {thing})) (new-knext-eq '({drink} {thing}) '({beverage} {thing})) (new-knext-eq '({drinkable} {thing}) '({beverage} {thing})) (new-knext-eq '({potable} {thing}) '({beverage} {thing})) (new-knext-eq '({mixture} {thing}) '({concoction} {thing})) (new-knext-eq '({intermixture} {thing}) '({concoction} {thing})) (new-knext-eq '({alcoholic beverage} {thing}) '({alcoholic drink} {thing})) (new-knext-eq '({intoxicant} {thing}) '({alcoholic drink} {thing})) (new-knext-eq '({inebriant} {thing}) '({alcoholic drink} {thing})) (new-knext-type {alcohol} {uncountable}) (new-knext-type {alcoholic drink} {uncountable}) (new-statement {alcohol} {consists of} {alcoholic drink}) (new-knext-is-a '({alcoholic drink} {countable}) '({alcohol} {uncountable})) (new-knext-eq '({brewage} {thing}) '({brew} {thing})) (new-knext-eq '({vino} {thing}) '({wine} {thing})) (new-knext-eq '({bubbly} {thing}) '({champagne} {thing})) (new-knext-eq '({spirits} {thing}) '({liquor} {thing})) (new-knext-eq '({booze} {thing}) '({liquor} {thing})) (new-knext-eq '({hard drink} {thing}) '({liquor} {thing})) (new-knext-eq '({john barleycorn} {thing}) '({liquor} {thing})) (new-knext-eq '({strong drink} {thing}) '({liquor} {thing})) (add-english-names (list {whiskey} {whisky} {whisky}) (list "whiskey" "whisky" "whisky")) (new-knext-eq '({whiskey} {thing}) '({whiskey} {thing})) (new-knext-eq '({ratafee} {thing}) '({ratafia} {thing})) (new-knext-eq '({soda water} {thing}) '({soda pop} {thing})) (new-knext-eq '({tonic} {thing}) '({soda pop} {thing})) (new-knext-eq '({java} {thing}) '({coffee} {thing})) (new-knext-eq '({classification} {thing}) '({categorization} {thing})) (add-english-names (list {categorization} {categorisation} {categorization} {categorisation}) (list "categorization" "categorisation" "categorization" "categorisation")) (new-knext-eq '({categorization} {thing}) '({categorization} {thing})) (new-knext-eq '({age bracket} {thing}) '({age group} {thing})) (new-knext-eq '({cohort} {thing}) '({age group} {thing})) (new-knext-eq '({young} {thing}) '({youth} {thing})) (new-knext-type {young} {uncountable}) (new-knext-type {aged} {uncountable}) (new-is-not-a {young} {aged}) (new-knext-eq '({folks} {thing}) '({folk} {thing})) (new-knext-eq '({common people} {thing}) '({folk} {thing})) (new-knext-eq '({aggregation} {thing}) '({collection} {thing})) (new-knext-eq '({accumulation} {thing}) '({collection} {thing})) (new-knext-eq '({assemblage} {thing}) '({collection} {thing})) (new-knext-eq '({deck of cards} {thing}) '({pack of cards} {thing})) (new-knext-eq '({deck} {thing}) '({pack of cards} {thing})) (new-knext-eq '({deal} {thing}) '({hand} {thing})) (new-knext-eq '({summation} {thing}) '({sum total} {thing})) (new-knext-eq '({clump} {thing}) '({bunch} {thing})) (new-knext-eq '({cluster} {thing}) '({bunch} {thing})) (new-knext-eq '({clustering} {thing}) '({bunch} {thing})) (new-knext-eq '({ball} {thing}) '({clod} {thing})) (new-knext-eq '({glob} {thing}) '({clod} {thing})) (new-knext-eq '({lump} {thing}) '({clod} {thing})) (new-knext-eq '({clump} {thing}) '({clod} {thing})) (new-knext-eq '({chunk} {thing}) '({clod} {thing})) (new-knext-eq '({heap} {thing}) '({pile} {thing})) (new-knext-eq '({mound} {thing}) '({pile} {thing})) (new-knext-eq '({agglomerate} {thing}) '({pile} {thing})) (new-knext-eq '({cumulation} {thing}) '({pile} {thing})) (new-knext-eq '({cumulus} {thing}) '({pile} {thing})) (new-knext-eq '({domain} {thing}) '({world} {thing})) (new-knext-eq '({advocacy group} {thing}) '({special interest} {thing})) (new-knext-eq '({lobby group} {thing}) '({special interest} {thing})) (new-knext-eq '({lobby} {thing}) '({special interest} {thing})) (new-knext-eq '({pressure group} {thing}) '({special interest} {thing})) (new-knext-eq '({third house} {thing}) '({special interest} {thing})) (new-knext-eq '({kinship group} {thing}) '({kin group} {thing})) (new-knext-eq '({clan} {thing}) '({kin group} {thing})) (new-knext-eq '({tribe} {thing}) '({kin group} {thing})) (new-knext-type {kin group} {countable}) (new-knext-type {kindred} {countable}) (new-statement {kindred} {consists of} {kin group}) (new-knext-eq '({kinsfolk} {thing}) '({kinfolk} {thing})) (new-knext-eq '({folk} {thing}) '({family line} {thing})) (new-knext-eq '({sept} {thing}) '({family line} {thing})) (new-knext-eq '({phratry} {thing}) '({family line} {thing})) (new-knext-type {family line} {countable}) (new-knext-type {kinfolk} {countable}) (new-statement {kinfolk} {consists of} {family line}) (new-knext-eq '({stratum} {thing}) '({social class} {thing})) (new-knext-eq '({assemblage} {thing}) '({gathering} {thing})) (new-knext-eq '({subroutine library} {thing}) '({program library} {thing})) (new-knext-eq '({brace} {thing}) '({pair} {thing})) (new-knext-eq '({twosome} {thing}) '({couple} {thing})) (new-knext-eq '({duo} {thing}) '({couple} {thing})) (new-knext-eq '({duet} {thing}) '({couple} {thing})) (new-knext-eq '({match} {thing}) '({couple} {thing})) (new-knext-type {couple} {countable}) (new-knext-type {mates} {countable}) (new-statement {mates} {consists of} {couple}) (new-knext-eq '({marriage} {thing}) '({married couple} {thing})) (new-knext-is-a '({married couple} {countable}) '({man and wife} {uncountable})) (new-knext-eq '({flock} {thing}) '({fold} {thing})) (new-knext-eq '({fold} {thing}) '({congregation} {thing})) (new-knext-eq '({faithful} {thing}) '({congregation} {thing})) (new-knext-eq '({taxonomic category} {thing}) '({taxonomic group} {thing})) (new-knext-eq '({biology} {thing}) '({biota} {thing})) (new-knext-eq '({zoology} {thing}) '({fauna} {thing})) (new-knext-type {fauna} {uncountable}) (new-knext-type {flora} {uncountable}) (new-is-not-a {fauna} {flora}) (new-knext-eq '({school} {thing}) '({shoal} {thing})) (new-knext-eq '({cloud} {thing}) '({swarm} {thing})) (new-knext-eq '({category} {thing}) '({class} {thing})) (new-knext-eq '({family} {thing}) '({class} {thing})) (new-knext-eq '({union} {thing}) '({join} {thing})) (new-knext-eq '({sum} {thing}) '({join} {thing})) (new-knext-eq '({topological space} {thing}) '({mathematical space} {thing})) (new-knext-eq '({bundle} {thing}) '({package} {thing})) (new-knext-eq '({packet} {thing}) '({package} {thing})) (new-knext-eq '({parcel} {thing}) '({package} {thing})) (add-english-names (list {organization} {organisation} {organization} {organisation}) (list "organization" "organisation" "organization" "organisation")) (new-knext-eq '({organization} {thing}) '({organization} {thing})) (new-knext-eq '({regime} {thing}) '({government} {thing})) (new-knext-eq '({establishment} {thing}) '({institution} {thing})) (new-knext-eq '({financial organization} {thing}) '({financial institution} {thing})) (new-knext-eq '({financial organisation} {thing}) '({financial institution} {thing})) (new-knext-eq '({empire} {thing}) '({conglomerate} {thing})) (new-knext-eq '({house} {thing}) '({firm} {thing})) (new-knext-eq '({franchise} {thing}) '({dealership} {thing})) (new-knext-eq '({concern} {thing}) '({business} {thing})) (new-knext-eq '({publishing house} {thing}) '({publisher} {thing})) (new-knext-eq '({publishing firm} {thing}) '({publisher} {thing})) (new-knext-eq '({publishing company} {thing}) '({publisher} {thing})) (new-knext-eq '({securities firm} {thing}) '({brokerage} {thing})) (new-knext-eq '({brotherhood} {thing}) '({sodality} {thing})) (new-knext-eq '({fraternity} {thing}) '({sodality} {thing})) (new-knext-eq '({administrative body} {thing}) '({administrative unit} {thing})) (new-knext-eq '({household} {thing}) '({family} {thing})) (new-knext-eq '({home} {thing}) '({family} {thing})) (new-knext-eq '({menage} {thing}) '({family} {thing})) (new-knext-eq '({defense} {thing}) '({defending team} {thing})) (add-english-names (list {defense} {defence}) (list "defense" "defence")) (new-knext-eq '({defense} {thing}) '({defending team} {thing})) (new-knext-type {defense} {countable}) (new-knext-type {offense} {countable}) (new-is-not-a {defense} {offense}) (add-english-names (list {defense} {defence}) (list "defense" "defence")) (add-english-names (list {offense} {offence}) (list "offense" "offence")) (new-knext-eq '({faith} {thing}) '({organized religion} {thing})) (new-knext-eq '({strain} {thing}) '({breed} {thing})) (new-knext-eq '({stock} {thing}) '({breed} {thing})) (new-knext-eq '({line of descent} {thing}) '({lineage} {thing})) (new-knext-eq '({descent} {thing}) '({lineage} {thing})) (new-knext-eq '({bloodline} {thing}) '({lineage} {thing})) (new-knext-eq '({blood line} {thing}) '({lineage} {thing})) (new-knext-eq '({blood} {thing}) '({lineage} {thing})) (new-knext-eq '({pedigree} {thing}) '({lineage} {thing})) (new-knext-eq '({ancestry} {thing}) '({lineage} {thing})) (new-knext-eq '({origin} {thing}) '({lineage} {thing})) (new-knext-eq '({parentage} {thing}) '({lineage} {thing})) (new-knext-eq '({stemma} {thing}) '({lineage} {thing})) (new-knext-eq '({stock} {thing}) '({lineage} {thing})) (new-knext-eq '({family tree} {thing}) '({genealogy} {thing})) (add-english-names (list {civilization} {civilisation} {civilization} {civilisation}) (list "civilization" "civilisation" "civilization" "civilisation")) (new-knext-eq '({civilization} {thing}) '({civilization} {thing})) (new-knext-eq '({bar} {thing}) '({legal profession} {thing})) (new-knext-eq '({legal community} {thing}) '({legal profession} {thing})) (new-knext-type {clergy} {uncountable}) (new-knext-type {laity} {countable}) (new-is-not-a {clergy} {laity}) (new-knext-type {laity} {countable}) (new-knext-type {clergy} {uncountable}) (new-is-not-a {laity} {clergy}) (new-knext-eq '({royalty} {thing}) '({royal family} {thing})) (new-knext-eq '({royal line} {thing}) '({royal family} {thing})) (new-knext-eq '({royal house} {thing}) '({royal family} {thing})) (new-knext-eq '({people} {thing}) '({citizenry} {thing})) (new-knext-eq '({legislative assembly} {thing}) '({legislature} {thing})) (new-knext-eq '({legislative body} {thing}) '({legislature} {thing})) (new-knext-eq '({general assembly} {thing}) '({legislature} {thing})) (new-knext-eq '({administration} {thing}) '({governance} {thing})) (new-knext-eq '({governing body} {thing}) '({governance} {thing})) (new-knext-eq '({establishment} {thing}) '({governance} {thing})) (new-knext-eq '({brass} {thing}) '({governance} {thing})) (new-knext-eq '({organization} {thing}) '({governance} {thing})) (add-english-names (list {organization} {organisation} {organization} {organisation}) (list "organization" "organisation" "organization" "organisation")) (new-knext-eq '({organization} {thing}) '({governance} {thing})) (new-knext-eq '({land} {thing}) '({nation} {thing})) (new-knext-eq '({country} {thing}) '({nation} {thing})) (new-knext-eq '({state} {thing}) '({nation} {thing})) (new-knext-eq '({country} {thing}) '({nation} {thing})) (new-knext-eq '({land} {thing}) '({nation} {thing})) (new-knext-eq '({commonwealth} {thing}) '({nation} {thing})) (new-knext-eq '({res publica} {thing}) '({nation} {thing})) (new-knext-eq '({body politic} {thing}) '({nation} {thing})) (new-knext-eq '({major power} {thing}) '({world power} {thing})) (new-knext-eq '({great power} {thing}) '({world power} {thing})) (new-knext-eq '({superpower} {thing}) '({world power} {thing})) (new-knext-eq '({public} {thing}) '({populace} {thing})) (new-knext-eq '({world} {thing}) '({populace} {thing})) (new-knext-eq '({mass} {thing}) '({multitude} {thing})) (add-english-names (list {labor} {labour}) (list "labor" "labour")) (new-knext-eq '({drove} {thing}) '({swarm} {thing})) (new-knext-eq '({horde} {thing}) '({swarm} {thing})) (new-knext-eq '({rabble} {thing}) '({mob} {thing})) (new-knext-eq '({rout} {thing}) '({mob} {thing})) (new-knext-eq '({company} {thing}) '({troupe} {thing})) (new-knext-eq '({ground forces} {thing}) '({army} {thing})) (new-knext-eq '({naval forces} {thing}) '({navy} {thing})) (new-knext-eq '({airforce} {thing}) '({air force} {thing})) (new-knext-eq '({armed service} {thing}) '({military service} {thing})) (new-knext-eq '({military force} {thing}) '({military unit} {thing})) (new-knext-eq '({military group} {thing}) '({military unit} {thing})) (new-knext-eq '({force} {thing}) '({military unit} {thing})) (new-knext-eq '({armed forces} {thing}) '({military} {thing})) (new-knext-eq '({armed services} {thing}) '({military} {thing})) (new-knext-eq '({war machine} {thing}) '({military} {thing})) (new-knext-type {force} {countable}) (new-knext-type {personnel} {countable}) (new-statement {personnel} {consists of} {force}) (new-knext-eq '({squad} {thing}) '({team} {thing})) (new-knext-eq '({constabulary} {thing}) '({police} {thing})) (new-knext-eq '({law} {thing}) '({police} {thing})) (new-knext-eq '({hands} {thing}) '({men} {thing})) (new-knext-eq '({workforce} {thing}) '({work force} {thing})) (new-knext-is-a '({work force} {countable}) '({manpower} {uncountable})) (new-knext-type {work force} {countable}) (new-knext-type {men} {countable}) (new-statement {men} {consists of} {work force}) (new-knext-is-a '({manpower} {uncountable}) '({men} {uncountable})) (new-knext-is-a '({men} {uncountable}) '({manpower} {uncountable})) (new-knext-type {following} {countable}) (new-knext-type {followers} {countable}) (new-statement {followers} {consists of} {following}) (add-english-names (list {neighborhood} {neighbourhood}) (list "neighborhood" "neighbourhood")) (new-knext-eq '({city} {thing}) '({metropolis} {thing})) (new-knext-eq '({townsfolk} {thing}) '({townspeople} {thing})) (new-knext-eq '({small town} {thing}) '({village} {thing})) (new-knext-eq '({settlement} {thing}) '({village} {thing})) (new-knext-eq '({society} {thing}) '({social club} {thing})) (new-knext-eq '({guild} {thing}) '({social club} {thing})) (new-knext-eq '({gild} {thing}) '({social club} {thing})) (new-knext-eq '({lodge} {thing}) '({social club} {thing})) (new-knext-eq '({order} {thing}) '({social club} {thing})) (new-knext-eq '({brotherhood} {thing}) '({union} {thing})) (new-knext-eq '({pool} {thing}) '({consortium} {thing})) (new-knext-eq '({syndicate} {thing}) '({consortium} {thing})) (new-knext-eq '({combine} {thing}) '({corporate trust} {thing})) (new-knext-eq '({cartel} {thing}) '({corporate trust} {thing})) (new-knext-type {cast} {countable}) (new-knext-type {dramatis personae} {countable}) (new-statement {dramatis personae} {consists of} {cast}) (new-knext-eq '({class} {thing}) '({grade} {thing})) (new-knext-eq '({course} {thing}) '({grade} {thing})) (new-knext-eq '({class} {thing}) '({year} {thing})) (new-knext-eq '({division} {thing}) '({class} {thing})) (new-knext-eq '({set} {thing}) '({band} {thing})) (new-knext-eq '({circle} {thing}) '({band} {thing})) (new-knext-eq '({lot} {thing}) '({band} {thing})) (new-knext-eq '({coterie} {thing}) '({clique} {thing})) (new-knext-eq '({ingroup} {thing}) '({clique} {thing})) (new-knext-eq '({inner circle} {thing}) '({clique} {thing})) (new-knext-eq '({pack} {thing}) '({clique} {thing})) (new-knext-eq '({camp} {thing}) '({clique} {thing})) (new-knext-eq '({gang} {thing}) '({work party} {thing})) (new-knext-eq '({crew} {thing}) '({work party} {thing})) (new-knext-eq '({pack} {thing}) '({gang} {thing})) (new-knext-eq '({ring} {thing}) '({gang} {thing})) (new-knext-eq '({mob} {thing}) '({gang} {thing})) (new-knext-eq '({gangland} {thing}) '({organized crime} {thing})) (new-knext-eq '({musical organisation} {thing}) '({musical organization} {thing})) (new-knext-eq '({musical group} {thing}) '({musical organization} {thing})) (new-knext-eq '({dance orchestra} {thing}) '({dance band} {thing})) (new-knext-eq '({social affair} {thing}) '({social gathering} {thing})) (new-knext-eq '({feast} {thing}) '({banquet} {thing})) (new-knext-eq '({company} {thing}) '({party} {thing})) (new-knext-eq '({party to the transaction} {thing}) '({party to the action} {thing})) (new-knext-eq '({professional organisation} {thing}) '({professional organization} {thing})) (new-knext-eq '({tabular array} {thing}) '({table} {thing})) (new-knext-eq '({galaxy} {thing}) '({extragalactic nebula} {thing})) (new-knext-eq '({crew} {thing}) '({crowd} {thing})) (new-knext-eq '({gang} {thing}) '({crowd} {thing})) (new-knext-eq '({bunch} {thing}) '({crowd} {thing})) (new-knext-eq '({flock} {thing}) '({troop} {thing})) (new-knext-eq '({scout group} {thing}) '({scout troop} {thing})) (new-knext-eq '({staff} {thing}) '({faculty} {thing})) (new-knext-eq '({civilization} {thing}) '({culture} {thing})) (add-english-names (list {civilization} {civilisation} {civilization} {civilisation}) (list "civilization" "civilisation" "civilization" "civilisation")) (new-knext-eq '({civilization} {thing}) '({culture} {thing})) (new-knext-eq '({alliance} {thing}) '({coalition} {thing})) (new-knext-eq '({alignment} {thing}) '({coalition} {thing})) (new-knext-eq '({alinement} {thing}) '({coalition} {thing})) (new-knext-type {alignment} {countable}) (new-knext-type {nonalignment} {countable}) (new-is-not-a {alignment} {nonalignment}) (new-knext-eq '({nonalinement} {thing}) '({nonalignment} {thing})) (new-knext-type {nonalignment} {countable}) (new-knext-type {alignment} {countable}) (new-is-not-a {nonalignment} {alignment}) (new-knext-eq '({confederacy} {thing}) '({confederation} {thing})) (new-knext-eq '({meeting} {thing}) '({get together} {thing})) (new-knext-eq '({commission} {thing}) '({committee} {thing})) (new-knext-eq '({tribunal} {thing}) '({court} {thing})) (new-knext-eq '({judicature} {thing}) '({court} {thing})) (new-knext-eq '({bureau} {thing}) '({agency} {thing})) (new-knext-eq '({office} {thing}) '({agency} {thing})) (new-knext-eq '({authority} {thing}) '({agency} {thing})) (new-knext-eq '({intelligence agency} {thing}) '({intelligence service} {thing})) (new-knext-eq '({mass meeting} {thing}) '({rally} {thing})) (new-knext-eq '({political entity} {thing}) '({political unit} {thing})) (new-knext-eq '({autarchy} {thing}) '({autocracy} {thing})) (new-knext-eq '({democracy} {thing}) '({republic} {thing})) (new-knext-eq '({commonwealth} {thing}) '({republic} {thing})) (new-knext-type {capitalism} {uncountable}) (new-knext-type {socialism} {uncountable}) (new-is-not-a {capitalism} {socialism}) (new-knext-is-a '({capitalist economy} {countable}) '({capitalism} {uncountable})) (new-knext-eq '({economic system} {thing}) '({economy} {thing})) (new-knext-eq '({form of government} {thing}) '({political system} {thing})) (new-knext-eq '({contemporaries} {thing}) '({coevals} {thing})) (new-knext-eq '({generation} {thing}) '({coevals} {thing})) (new-knext-eq '({folk} {thing}) '({tribe} {thing})) (new-knext-eq '({settlement} {thing}) '({colony} {thing})) (new-knext-eq '({hierarchy} {thing}) '({power structure} {thing})) (new-knext-eq '({pecking order} {thing}) '({power structure} {thing})) (new-knext-eq '({social organisation} {thing}) '({social organization} {thing})) (new-knext-eq '({social structure} {thing}) '({social organization} {thing})) (new-knext-eq '({social system} {thing}) '({social organization} {thing})) (new-knext-eq '({structure} {thing}) '({social organization} {thing})) (new-knext-eq '({leadership} {thing}) '({leaders} {thing})) (new-knext-eq '({date} {thing}) '({appointment} {thing})) (new-knext-eq '({engagement} {thing}) '({appointment} {thing})) (new-knext-eq '({chosen} {thing}) '({elect} {thing})) (new-knext-eq '({pick} {thing}) '({cream} {thing})) (new-knext-eq '({mixture} {thing}) '({assortment} {thing})) (new-knext-eq '({mixed bag} {thing}) '({assortment} {thing})) (new-knext-eq '({miscellany} {thing}) '({assortment} {thing})) (new-knext-eq '({miscellanea} {thing}) '({assortment} {thing})) (new-knext-eq '({variety} {thing}) '({assortment} {thing})) (new-knext-eq '({salmagundi} {thing}) '({assortment} {thing})) (new-knext-eq '({smorgasbord} {thing}) '({assortment} {thing})) (new-knext-eq '({potpourri} {thing}) '({assortment} {thing})) (new-knext-eq '({motley} {thing}) '({assortment} {thing})) (new-knext-eq '({rank} {thing}) '({membership} {thing})) (new-knext-eq '({subdivision} {thing}) '({branch} {thing})) (new-knext-eq '({arm} {thing}) '({branch} {thing})) (new-knext-eq '({patronage} {thing}) '({clientele} {thing})) (new-knext-eq '({business} {thing}) '({clientele} {thing})) (new-knext-eq '({commission} {thing}) '({deputation} {thing})) (new-knext-eq '({delegation} {thing}) '({deputation} {thing})) (new-knext-eq '({delegacy} {thing}) '({deputation} {thing})) (new-knext-eq '({mission} {thing}) '({deputation} {thing})) (new-knext-eq '({vocation} {thing}) '({occupational group} {thing})) (new-knext-eq '({exhibition} {thing}) '({expo} {thing})) (new-knext-eq '({panel} {thing}) '({jury} {thing})) (new-knext-eq '({aggregate} {thing}) '({congeries} {thing})) (new-knext-eq '({conglomeration} {thing}) '({congeries} {thing})) (new-knext-eq '({acquirer} {thing}) '({merchant bank} {thing})) (new-knext-eq '({bank} {thing}) '({depository financial institution} {thing})) (new-knext-eq '({banking concern} {thing}) '({depository financial institution} {thing})) (new-knext-eq '({banking company} {thing}) '({depository financial institution} {thing})) (new-knext-eq '({indian file} {thing}) '({single file} {thing})) (new-knext-eq '({waiting line} {thing}) '({queue} {thing})) (new-knext-eq '({web} {thing}) '({network} {thing})) (new-knext-eq '({scheme} {thing}) '({system} {thing})) (new-knext-eq '({trade} {thing}) '({craft} {thing})) (new-knext-eq '({flora} {thing}) '({vegetation} {thing})) (new-knext-eq '({botany} {thing}) '({vegetation} {thing})) (new-knext-type {flora} {uncountable}) (new-knext-type {fauna} {uncountable}) (new-is-not-a {flora} {fauna}) (new-knext-eq '({chaparral} {thing}) '({scrub} {thing})) (new-knext-eq '({bush} {thing}) '({scrub} {thing})) (new-knext-eq '({wood} {thing}) '({forest} {thing})) (new-knext-type {civil law} {uncountable}) (new-knext-type {international law} {uncountable}) (new-is-not-a {civil law} {international law}) (new-knext-type {international law} {uncountable}) (new-knext-type {civil law} {uncountable}) (new-is-not-a {international law} {civil law}) (new-knext-is-a '({law of nations} {countable}) '({international law} {uncountable})) (new-knext-eq '({order} {thing}) '({ordination} {thing})) (new-knext-is-a '({ordination} {countable}) '({ordering} {uncountable})) (new-knext-eq '({string} {thing}) '({train} {thing})) (new-knext-eq '({information} {thing}) '({data} {thing})) (new-knext-eq '({art movement} {thing}) '({artistic movement} {thing})) (new-knext-eq '({realism} {thing}) '({naturalism} {thing})) (new-knext-eq '({moving company} {thing}) '({public mover} {thing})) (new-knext-eq '({removal firm} {thing}) '({public mover} {thing})) (new-knext-eq '({removal company} {thing}) '({public mover} {thing})) (new-knext-type {head} {countable}) (new-knext-type {rear} {countable}) (new-is-not-a {head} {rear}) (new-knext-eq '({administrative division} {thing}) '({administrative district} {thing})) (new-knext-eq '({territorial division} {thing}) '({administrative district} {thing})) (new-knext-eq '({soil} {thing}) '({territory} {thing})) (new-knext-type {apex} {countable}) (new-knext-type {antapex} {countable}) (new-is-not-a {apex} {antapex}) (new-knext-type {antapex} {countable}) (new-knext-type {apex} {countable}) (new-is-not-a {antapex} {apex}) (new-knext-eq '({country} {thing}) '({area} {thing})) (new-knext-eq '({colony} {thing}) '({dependency} {thing})) (new-knext-eq '({battleground} {thing}) '({battlefield} {thing})) (new-knext-eq '({field of battle} {thing}) '({battlefield} {thing})) (new-knext-eq '({field of honor} {thing}) '({battlefield} {thing})) (new-knext-eq '({beginning} {thing}) '({origin} {thing})) (new-knext-eq '({root} {thing}) '({origin} {thing})) (new-knext-eq '({rootage} {thing}) '({origin} {thing})) (new-knext-eq '({source} {thing}) '({origin} {thing})) (new-knext-eq '({place of birth} {thing}) '({birthplace} {thing})) (new-knext-eq '({face} {thing}) '({side} {thing})) (new-knext-eq '({underside} {thing}) '({bottom} {thing})) (new-knext-eq '({undersurface} {thing}) '({bottom} {thing})) (new-knext-type {foot} {countable}) (new-knext-type {head} {countable}) (new-is-not-a {foot} {head}) (new-knext-eq '({bound} {thing}) '({boundary} {thing})) (new-knext-eq '({border} {thing}) '({boundary line} {thing})) (new-knext-eq '({borderline} {thing}) '({boundary line} {thing})) (new-knext-eq '({delimitation} {thing}) '({boundary line} {thing})) (new-knext-eq '({mete} {thing}) '({boundary line} {thing})) (new-knext-eq '({property} {thing}) '({place} {thing})) (new-knext-eq '({empyrean} {thing}) '({celestial sphere} {thing})) (new-knext-eq '({firmament} {thing}) '({celestial sphere} {thing})) (new-knext-eq '({heavens} {thing}) '({celestial sphere} {thing})) (new-knext-eq '({vault of heaven} {thing}) '({celestial sphere} {thing})) (new-knext-eq '({welkin} {thing}) '({celestial sphere} {thing})) (new-knext-eq '({graveyard} {thing}) '({cemetery} {thing})) (new-knext-eq '({burial site} {thing}) '({cemetery} {thing})) (new-knext-eq '({burial ground} {thing}) '({cemetery} {thing})) (new-knext-eq '({burying ground} {thing}) '({cemetery} {thing})) (new-knext-eq '({memorial park} {thing}) '({cemetery} {thing})) (new-knext-eq '({necropolis} {thing}) '({cemetery} {thing})) (new-knext-eq '({center} {thing}) '({midpoint} {thing})) (add-english-names (list {center} {centre}) (list "center" "centre")) (new-knext-eq '({center} {thing}) '({midpoint} {thing})) (add-english-names (list {center} {centre}) (list "center" "centre")) (new-knext-eq '({middle} {thing}) '({center} {thing})) (new-knext-eq '({heart} {thing}) '({center} {thing})) (new-knext-eq '({eye} {thing}) '({center} {thing})) (new-knext-eq '({metropolis} {thing}) '({city} {thing})) (new-knext-eq '({urban center} {thing}) '({city} {thing})) (new-knext-eq '({state} {thing}) '({country} {thing})) (new-knext-eq '({land} {thing}) '({country} {thing})) (new-knext-eq '({excavation} {thing}) '({dig} {thing})) (new-knext-eq '({archeological site} {thing}) '({dig} {thing})) (new-knext-eq '({bishopric} {thing}) '({diocese} {thing})) (new-knext-eq '({episcopate} {thing}) '({diocese} {thing})) (new-knext-eq '({territory} {thing}) '({district} {thing})) (new-knext-eq '({territorial dominion} {thing}) '({district} {thing})) (new-knext-eq '({dominion} {thing}) '({district} {thing})) (new-knext-eq '({residential area} {thing}) '({residential district} {thing})) (new-knext-eq '({community} {thing}) '({residential district} {thing})) (new-knext-eq '({suburbia} {thing}) '({suburb} {thing})) (new-knext-eq '({demesne} {thing}) '({domain} {thing})) (new-knext-eq '({land} {thing}) '({domain} {thing})) (new-knext-eq '({kingdom} {thing}) '({realm} {thing})) (new-knext-eq '({abode} {thing}) '({residence} {thing})) (new-knext-eq '({place} {thing}) '({home} {thing})) (new-knext-eq '({paradise} {thing}) '({eden} {thing})) (new-knext-eq '({nirvana} {thing}) '({eden} {thing})) (new-knext-eq '({heaven} {thing}) '({eden} {thing})) (new-knext-eq '({promised land} {thing}) '({eden} {thing})) (new-knext-eq '({border} {thing}) '({edge} {thing})) (new-knext-eq '({terminal} {thing}) '({end} {thing})) (new-knext-eq '({surroundings} {thing}) '({environs} {thing})) (new-knext-eq '({environment} {thing}) '({surround} {thing})) (new-knext-type {environs} {uncountable}) (new-knext-type {surround} {uncountable}) (new-statement {environs} {consists of} {surround}) (new-knext-type {surround} {countable}) (new-knext-type {environs} {countable}) (new-statement {environs} {consists of} {surround}) (new-knext-eq '({finish} {thing}) '({destination} {thing})) (new-knext-eq '({goal} {thing}) '({destination} {thing})) (new-knext-eq '({scene} {thing}) '({setting} {thing})) (new-knext-eq '({meadow} {thing}) '({hayfield} {thing})) (new-knext-eq '({playing field} {thing}) '({athletic field} {thing})) (new-knext-eq '({playing area} {thing}) '({athletic field} {thing})) (new-knext-eq '({forepart} {thing}) '({front} {thing})) (new-knext-type {front} {countable}) (new-knext-type {rear} {countable}) (new-is-not-a {front} {rear}) (new-knext-eq '({front line} {thing}) '({battlefront} {thing})) (new-knext-eq '({geographic area} {thing}) '({geographical area} {thing})) (new-knext-eq '({geographical region} {thing}) '({geographical area} {thing})) (new-knext-eq '({geographic region} {thing}) '({geographical area} {thing})) (new-knext-eq '({geographical point} {thing}) '({geographic point} {thing})) (new-knext-eq '({home ground} {thing}) '({habitat} {thing})) (new-knext-eq '({hangout} {thing}) '({haunt} {thing})) (new-knext-eq '({resort} {thing}) '({haunt} {thing})) (new-knext-eq '({repair} {thing}) '({haunt} {thing})) (new-knext-eq '({stamping ground} {thing}) '({haunt} {thing})) (new-knext-eq '({hideaway} {thing}) '({hideout} {thing})) (new-knext-eq '({den} {thing}) '({hideout} {thing})) (new-knext-eq '({skyline} {thing}) '({horizon} {thing})) (new-knext-eq '({interior} {thing}) '({inside} {thing})) (new-knext-type {inside} {countable}) (new-knext-type {outside} {countable}) (new-is-not-a {inside} {outside}) (new-knext-eq '({limit} {thing}) '({demarcation} {thing})) (new-knext-eq '({lineation} {thing}) '({outline} {thing})) (new-knext-eq '({exterior} {thing}) '({outside} {thing})) (new-knext-type {outside} {countable}) (new-knext-type {inside} {countable}) (new-is-not-a {outside} {inside}) (new-knext-eq '({exterior} {thing}) '({outside} {thing})) (new-knext-type {outside} {countable}) (new-knext-type {inside} {countable}) (new-is-not-a {outside} {inside}) (new-knext-eq '({park} {thing}) '({commons} {thing})) (new-knext-eq '({common} {thing}) '({commons} {thing})) (new-knext-eq '({green} {thing}) '({commons} {thing})) (new-knext-eq '({car park} {thing}) '({parking lot} {thing})) (new-knext-eq '({parking area} {thing}) '({parking lot} {thing})) (new-knext-eq '({parking zone} {thing}) '({parking space} {thing})) (new-knext-eq '({grazing land} {thing}) '({pasture} {thing})) (new-knext-eq '({lea} {thing}) '({pasture} {thing})) (new-knext-eq '({ley} {thing}) '({pasture} {thing})) (new-knext-eq '({path} {thing}) '({route} {thing})) (new-knext-eq '({itinerary} {thing}) '({route} {thing})) (new-knext-eq '({peak} {thing}) '({crest} {thing})) (new-knext-eq '({crown} {thing}) '({crest} {thing})) (new-knext-eq '({top} {thing}) '({crest} {thing})) (new-knext-eq '({tip} {thing}) '({crest} {thing})) (new-knext-eq '({summit} {thing}) '({crest} {thing})) (new-knext-eq '({piazza} {thing}) '({plaza} {thing})) (new-knext-eq '({place} {thing}) '({position} {thing})) (new-knext-eq '({station} {thing}) '({post} {thing})) (new-knext-type {right} {countable}) (new-knext-type {left} {countable}) (new-is-not-a {right} {left}) (new-knext-type {left} {countable}) (new-knext-type {right} {countable}) (new-is-not-a {left} {right}) (new-knext-eq '({rear} {thing}) '({back} {thing})) (new-knext-type {back} {countable}) (new-knext-type {front} {countable}) (new-is-not-a {back} {front}) (new-knext-type {front} {countable}) (new-knext-type {back} {countable}) (new-is-not-a {front} {back}) (new-knext-eq '({range} {thing}) '({reach} {thing})) (new-knext-eq '({rear} {thing}) '({backside} {thing})) (new-knext-eq '({back end} {thing}) '({backside} {thing})) (new-knext-type {rear} {countable}) (new-knext-type {front} {countable}) (new-is-not-a {rear} {front}) (new-knext-eq '({part} {thing}) '({region} {thing})) (new-knext-eq '({clear} {thing}) '({open} {thing})) (new-knext-eq '({haven} {thing}) '({seaport} {thing})) (new-knext-eq '({harbor} {thing}) '({seaport} {thing})) (add-english-names (list {harbor} {harbour}) (list "harbor" "harbour")) (new-knext-eq '({harbor} {thing}) '({seaport} {thing})) (new-knext-eq '({playground} {thing}) '({resort area} {thing})) (new-knext-eq '({vacation spot} {thing}) '({resort area} {thing})) (new-knext-eq '({locality} {thing}) '({vicinity} {thing})) (new-knext-eq '({neighborhood} {thing}) '({vicinity} {thing})) (add-english-names (list {neighborhood} {neighbourhood}) (list "neighborhood" "neighbourhood")) (new-knext-eq '({neighborhood} {thing}) '({vicinity} {thing})) (new-knext-eq '({neck of the woods} {thing}) '({vicinity} {thing})) (new-knext-eq '({safety} {thing}) '({refuge} {thing})) (new-knext-eq '({country} {thing}) '({rural area} {thing})) (new-knext-type {rural area} {countable}) (new-knext-type {urban area} {countable}) (new-is-not-a {rural area} {urban area}) (new-knext-eq '({vacuum} {thing}) '({vacuity} {thing})) (new-knext-eq '({province} {thing}) '({state} {thing})) (new-knext-eq '({upper side} {thing}) '({top side} {thing})) (new-knext-eq '({upside} {thing}) '({top side} {thing})) (new-knext-type {head} {countable}) (new-knext-type {foot} {countable}) (new-is-not-a {head} {foot}) (new-knext-eq '({place} {thing}) '({topographic point} {thing})) (new-knext-eq '({spot} {thing}) '({topographic point} {thing})) (new-knext-eq '({town} {thing}) '({township} {thing})) (new-knext-eq '({piece of land} {thing}) '({tract} {thing})) (new-knext-eq '({piece of ground} {thing}) '({tract} {thing})) (new-knext-eq '({parcel of land} {thing}) '({tract} {thing})) (new-knext-eq '({parcel} {thing}) '({tract} {thing})) (new-knext-eq '({plot of ground} {thing}) '({plot of land} {thing})) (new-knext-eq '({patch} {thing}) '({plot of land} {thing})) (new-knext-eq '({populated area} {thing}) '({urban area} {thing})) (new-knext-type {urban area} {countable}) (new-knext-type {rural area} {countable}) (new-is-not-a {urban area} {rural area}) (new-knext-eq '({vertex} {thing}) '({apex} {thing})) (new-knext-eq '({peak} {thing}) '({apex} {thing})) (new-knext-eq '({acme} {thing}) '({apex} {thing})) (new-knext-eq '({watering hole} {thing}) '({watering place} {thing})) (new-knext-eq '({spa} {thing}) '({watering place} {thing})) (new-knext-eq '({way} {thing}) '({direction} {thing})) (new-knext-eq '({heading} {thing}) '({bearing} {thing})) (new-knext-eq '({aim} {thing}) '({bearing} {thing})) (new-knext-eq '({course} {thing}) '({trend} {thing})) (new-knext-eq '({tendency} {thing}) '({trend} {thing})) (new-knext-eq '({wilderness} {thing}) '({wild} {thing})) (new-knext-eq '({star sign} {thing}) '({sign of the zodiac} {thing})) (new-knext-eq '({mansion} {thing}) '({sign of the zodiac} {thing})) (new-knext-eq '({house} {thing}) '({sign of the zodiac} {thing})) (new-knext-eq '({planetary house} {thing}) '({sign of the zodiac} {thing})) (new-knext-eq '({inducement} {thing}) '({incentive} {thing})) (new-knext-eq '({motivator} {thing}) '({incentive} {thing})) (new-knext-type {incentive} {countable}) (new-knext-type {disincentive} {countable}) (new-is-not-a {incentive} {disincentive}) (new-knext-eq '({ethics} {thing}) '({ethical motive} {thing})) (new-knext-eq '({morality} {thing}) '({ethical motive} {thing})) (new-knext-type {ethical motive} {countable}) (new-knext-type {morals} {countable}) (new-statement {morals} {consists of} {ethical motive}) (new-knext-type {morals} {uncountable}) (new-knext-type {ethical motive} {uncountable}) (new-statement {morals} {consists of} {ethical motive}) (new-knext-eq '({moral sense} {thing}) '({conscience} {thing})) (new-knext-eq '({sense of right and wrong} {thing}) '({conscience} {thing})) (new-knext-type {conscience} {countable}) (new-knext-type {scruples} {countable}) (new-statement {scruples} {consists of} {conscience}) (new-knext-type {scruples} {uncountable}) (new-knext-type {conscience} {uncountable}) (new-statement {scruples} {consists of} {conscience}) (new-knext-eq '({acclivity} {thing}) '({ascent} {thing})) (new-knext-eq '({rise} {thing}) '({ascent} {thing})) (new-knext-eq '({raise} {thing}) '({ascent} {thing})) (new-knext-eq '({climb} {thing}) '({ascent} {thing})) (new-knext-eq '({upgrade} {thing}) '({ascent} {thing})) (new-knext-type {ascent} {countable}) (new-knext-type {descent} {countable}) (new-is-not-a {ascent} {descent}) (new-knext-eq '({bottom} {thing}) '({bed} {thing})) (new-knext-eq '({bit} {thing}) '({chip} {thing})) (new-knext-eq '({flake} {thing}) '({chip} {thing})) (new-knext-eq '({fleck} {thing}) '({chip} {thing})) (new-knext-eq '({scrap} {thing}) '({chip} {thing})) (new-knext-eq '({bowlder} {thing}) '({boulder} {thing})) (new-knext-eq '({concretion} {thing}) '({calculus} {thing})) (new-knext-eq '({heavenly body} {thing}) '({celestial body} {thing})) (new-knext-eq '({drop} {thing}) '({cliff} {thing})) (new-knext-eq '({cover} {thing}) '({covering} {thing})) (new-knext-eq '({cleft} {thing}) '({crack} {thing})) (new-knext-eq '({crevice} {thing}) '({crack} {thing})) (new-knext-eq '({fissure} {thing}) '({crack} {thing})) (new-knext-eq '({scissure} {thing}) '({crack} {thing})) (new-knext-eq '({descent} {thing}) '({declivity} {thing})) (new-knext-eq '({fall} {thing}) '({declivity} {thing})) (new-knext-eq '({decline} {thing}) '({declivity} {thing})) (new-knext-eq '({declination} {thing}) '({declivity} {thing})) (new-knext-eq '({declension} {thing}) '({declivity} {thing})) (new-knext-eq '({downslope} {thing}) '({declivity} {thing})) (new-knext-type {descent} {countable}) (new-knext-type {ascent} {countable}) (new-is-not-a {descent} {ascent}) (new-knext-eq '({negatron} {thing}) '({electron} {thing})) (new-knext-eq '({estraterrestrial body} {thing}) '({extraterrestrial object} {thing})) (new-knext-eq '({shift} {thing}) '({geological fault} {thing})) (new-knext-eq '({fracture} {thing}) '({geological fault} {thing})) (new-knext-eq '({break} {thing}) '({geological fault} {thing})) (new-knext-type {faulting} {uncountable}) (new-knext-type {geological fault} {uncountable}) (new-statement {faulting} {consists of} {geological fault}) (new-knext-is-a '({geological fault} {countable}) '({faulting} {uncountable})) (new-knext-eq '({feeder} {thing}) '({tributary} {thing})) (new-knext-eq '({affluent} {thing}) '({tributary} {thing})) (new-knext-type {tributary} {countable}) (new-knext-type {distributary} {countable}) (new-is-not-a {tributary} {distributary}) (new-knext-is-a '({tributary} {countable}) '({confluent} {uncountable})) (new-knext-type {confluent} {uncountable}) (new-knext-type {tributary} {uncountable}) (new-statement {confluent} {consists of} {tributary}) (new-knext-eq '({forest} {thing}) '({woodland} {thing})) (new-knext-eq '({timberland} {thing}) '({woodland} {thing})) (new-knext-eq '({timber} {thing}) '({woodland} {thing})) (new-knext-eq '({hole} {thing}) '({hollow} {thing})) (new-knext-eq '({earth} {thing}) '({dry land} {thing})) (new-knext-eq '({ground} {thing}) '({dry land} {thing})) (new-knext-eq '({solid ground} {thing}) '({dry land} {thing})) (new-knext-eq '({geosphere} {thing}) '({lithosphere} {thing})) (new-knext-eq '({fen} {thing}) '({marsh} {thing})) (new-knext-eq '({fenland} {thing}) '({marsh} {thing})) (new-knext-type {natural depression} {countable}) (new-knext-type {natural elevation} {countable}) (new-is-not-a {natural depression} {natural elevation}) (new-knext-type {natural elevation} {countable}) (new-knext-type {natural depression} {countable}) (new-is-not-a {natural elevation} {natural depression}) (new-knext-eq '({necessity} {thing}) '({essential} {thing})) (new-knext-eq '({requirement} {thing}) '({essential} {thing})) (new-knext-eq '({requisite} {thing}) '({essential} {thing})) (new-knext-eq '({necessary} {thing}) '({essential} {thing})) (new-knext-type {essential} {countable}) (new-knext-type {inessential} {countable}) (new-is-not-a {essential} {inessential}) (new-knext-eq '({want} {thing}) '({need} {thing})) (new-knext-eq '({gap} {thing}) '({opening} {thing})) (new-knext-eq '({piece} {thing}) '({part} {thing})) (new-knext-eq '({notch} {thing}) '({mountain pass} {thing})) (new-knext-eq '({path} {thing}) '({track} {thing})) (new-knext-eq '({course} {thing}) '({track} {thing})) (new-knext-eq '({cavity} {thing}) '({pit} {thing})) (new-knext-eq '({field} {thing}) '({plain} {thing})) (new-knext-eq '({champaign} {thing}) '({plain} {thing})) (new-knext-eq '({pool} {thing}) '({puddle} {thing})) (new-knext-eq '({range of mountains} {thing}) '({mountain range} {thing})) (new-knext-eq '({chain} {thing}) '({mountain range} {thing})) (new-knext-eq '({mountain chain} {thing}) '({mountain range} {thing})) (new-knext-type {mountain range} {countable}) (new-knext-type {chain of mountains} {countable}) (new-statement {chain of mountains} {consists of} {mountain range}) (new-knext-type {chain of mountains} {uncountable}) (new-knext-type {mountain range} {uncountable}) (new-statement {chain of mountains} {consists of} {mountain range}) (new-knext-eq '({thread} {thing}) '({ribbon} {thing})) (new-knext-eq '({rent} {thing}) '({rip} {thing})) (new-knext-eq '({snag} {thing}) '({rip} {thing})) (new-knext-eq '({split} {thing}) '({rip} {thing})) (new-knext-eq '({tear} {thing}) '({rip} {thing})) (new-knext-eq '({rill} {thing}) '({rivulet} {thing})) (new-knext-eq '({runnel} {thing}) '({rivulet} {thing})) (new-knext-eq '({streamlet} {thing}) '({rivulet} {thing})) (new-knext-eq '({stone} {thing}) '({rock} {thing})) (new-knext-eq '({sand bar} {thing}) '({sandbar} {thing})) (new-knext-eq '({coast} {thing}) '({seashore} {thing})) (new-knext-eq '({seacoast} {thing}) '({seashore} {thing})) (new-knext-eq '({deposit} {thing}) '({sediment} {thing})) (new-knext-eq '({incline} {thing}) '({slope} {thing})) (new-knext-eq '({tongue} {thing}) '({spit} {thing})) (new-knext-eq '({spring} {thing}) '({outpouring} {thing})) (new-knext-eq '({fountain} {thing}) '({outpouring} {thing})) (new-knext-eq '({outflow} {thing}) '({outpouring} {thing})) (new-knext-eq '({natural spring} {thing}) '({outpouring} {thing})) (new-knext-eq '({watercourse} {thing}) '({stream} {thing})) (new-knext-eq '({belt} {thing}) '({swath} {thing})) (new-knext-eq '({unit} {thing}) '({building block} {thing})) (new-knext-eq '({existence} {thing}) '({universe} {thing})) (new-knext-eq '({creation} {thing}) '({universe} {thing})) (new-knext-eq '({world} {thing}) '({universe} {thing})) (new-knext-eq '({cosmos} {thing}) '({universe} {thing})) (new-knext-eq '({macrocosm} {thing}) '({universe} {thing})) (new-knext-eq '({vale} {thing}) '({valley} {thing})) (new-knext-eq '({falls} {thing}) '({waterfall} {thing})) (new-knext-eq '({imaginary creature} {thing}) '({imaginary being} {thing})) (new-knext-eq '({alien} {thing}) '({extraterrestrial being} {thing})) (new-knext-eq '({firedrake} {thing}) '({dragon} {thing})) (new-knext-is-a '({supernatural} {countable}) '({occult} {uncountable})) (new-knext-type {occult} {uncountable}) (new-knext-type {supernatural} {uncountable}) (new-statement {occult} {consists of} {supernatural}) (new-knext-eq '({supernatural being} {thing}) '({spiritual being} {thing})) (new-knext-eq '({divinity} {thing}) '({deity} {thing})) (new-knext-eq '({god} {thing}) '({deity} {thing})) (new-knext-eq '({immortal} {thing}) '({deity} {thing})) (new-knext-eq '({faery} {thing}) '({fairy} {thing})) (new-knext-eq '({faerie} {thing}) '({fairy} {thing})) (new-knext-eq '({fay} {thing}) '({fairy} {thing})) (new-knext-eq '({sprite} {thing}) '({fairy} {thing})) (new-knext-eq '({fictitious character} {thing}) '({fictional character} {thing})) (new-knext-eq '({grownup} {thing}) '({adult} {thing})) (new-knext-type {adult} {countable}) (new-knext-type {juvenile} {countable}) (new-is-not-a {adult} {juvenile}) (new-knext-eq '({anomaly} {thing}) '({unusual person} {thing})) (new-knext-eq '({applier} {thing}) '({applicant} {thing})) (new-knext-eq '({appointment} {thing}) '({appointee} {thing})) (new-knext-eq '({attendant} {thing}) '({attendee} {thing})) (new-knext-eq '({attender} {thing}) '({attendee} {thing})) (new-knext-eq '({meeter} {thing}) '({attendee} {thing})) (new-knext-eq '({helper} {thing}) '({benefactor} {thing})) (new-knext-eq '({modifier} {thing}) '({changer} {thing})) (new-knext-eq '({guardian} {thing}) '({defender} {thing})) (new-knext-eq '({protector} {thing}) '({defender} {thing})) (new-knext-eq '({shielder} {thing}) '({defender} {thing})) (new-knext-eq '({withstander} {thing}) '({defender} {thing})) (new-knext-eq '({applied scientist} {thing}) '({engineer} {thing})) (new-knext-eq '({technologist} {thing}) '({engineer} {thing})) (new-knext-type {female} {countable}) (new-knext-type {male} {countable}) (new-is-not-a {female} {male}) (new-knext-eq '({dweller} {thing}) '({inhabitant} {thing})) (new-knext-eq '({denizen} {thing}) '({inhabitant} {thing})) (new-knext-eq '({indweller} {thing}) '({inhabitant} {thing})) (new-knext-eq '({indigen} {thing}) '({native} {thing})) (new-knext-eq '({indigene} {thing}) '({native} {thing})) (new-knext-eq '({aborigine} {thing}) '({native} {thing})) (new-knext-eq '({aboriginal} {thing}) '({native} {thing})) (new-knext-eq '({intellect} {thing}) '({intellectual} {thing})) (new-knext-type {juvenile} {countable}) (new-knext-type {adult} {countable}) (new-is-not-a {juvenile} {adult}) (new-knext-type {leader} {countable}) (new-knext-type {follower} {countable}) (new-is-not-a {leader} {follower}) (new-knext-type {male} {countable}) (new-knext-type {female} {countable}) (new-is-not-a {male} {female}) (new-knext-eq '({intermediary} {thing}) '({mediator} {thing})) (new-knext-eq '({intercessor} {thing}) '({mediator} {thing})) (new-knext-eq '({subject} {thing}) '({national} {thing})) (new-knext-type {nonreligious person} {countable}) (new-knext-type {religious person} {countable}) (new-is-not-a {nonreligious person} {religious person}) (new-knext-type {nonworker} {countable}) (new-knext-type {worker} {countable}) (new-is-not-a {nonworker} {worker}) (new-knext-eq '({equal} {thing}) '({peer} {thing})) (new-knext-eq '({match} {thing}) '({peer} {thing})) (new-knext-eq '({percipient} {thing}) '({perceiver} {thing})) (new-knext-eq '({observer} {thing}) '({perceiver} {thing})) (new-knext-eq '({beholder} {thing}) '({perceiver} {thing})) (new-knext-eq '({receiver} {thing}) '({recipient} {thing})) (new-knext-type {religious person} {countable}) (new-knext-type {nonreligious person} {countable}) (new-is-not-a {religious person} {nonreligious person}) (add-english-names (list {traveler} {traveller} {traveller}) (list "traveler" "traveller" "traveller")) (new-knext-eq '({traveler} {thing}) '({traveler} {thing})) (new-knext-type {worker} {countable}) (new-knext-type {nonworker} {countable}) (new-is-not-a {worker} {nonworker}) (new-knext-eq '({offender} {thing}) '({wrongdoer} {thing})) (new-knext-eq '({hebrew} {thing}) '({jew} {thing})) (new-knext-eq '({israelite} {thing}) '({jew} {thing})) (new-knext-eq '({abbreviator} {thing}) '({abridger} {thing})) (new-knext-eq '({abstainer} {thing}) '({abstinent} {thing})) (new-knext-eq '({nondrinker} {thing}) '({abstinent} {thing})) (new-knext-type {nondrinker} {countable}) (new-knext-type {drinker} {countable}) (new-is-not-a {nondrinker} {drinker}) (new-knext-eq '({ascetic} {thing}) '({abstainer} {thing})) (new-knext-eq '({academician} {thing}) '({academic} {thing})) (new-knext-eq '({faculty member} {thing}) '({academic} {thing})) (new-knext-eq '({comptroller} {thing}) '({accountant} {thing})) (new-knext-eq '({controller} {thing}) '({accountant} {thing})) (new-knext-eq '({suspect} {thing}) '({defendant} {thing})) (new-knext-type {defendant} {countable}) (new-knext-type {plaintiff} {countable}) (new-is-not-a {defendant} {plaintiff}) (new-knext-eq '({ace} {thing}) '({adept} {thing})) (new-knext-eq '({champion} {thing}) '({adept} {thing})) (new-knext-eq '({sensation} {thing}) '({adept} {thing})) (new-knext-eq '({maven} {thing}) '({adept} {thing})) (new-knext-eq '({mavin} {thing}) '({adept} {thing})) (new-knext-eq '({virtuoso} {thing}) '({adept} {thing})) (new-knext-eq '({genius} {thing}) '({adept} {thing})) (new-knext-eq '({hotshot} {thing}) '({adept} {thing})) (new-knext-eq '({star} {thing}) '({adept} {thing})) (new-knext-eq '({superstar} {thing}) '({adept} {thing})) (new-knext-eq '({whiz} {thing}) '({adept} {thing})) (new-knext-eq '({whizz} {thing}) '({adept} {thing})) (new-knext-eq '({wizard} {thing}) '({adept} {thing})) (new-knext-eq '({wiz} {thing}) '({adept} {thing})) (new-knext-eq '({winner} {thing}) '({achiever} {thing})) (new-knext-eq '({success} {thing}) '({achiever} {thing})) (new-knext-eq '({succeeder} {thing}) '({achiever} {thing})) (new-knext-type {achiever} {countable}) (new-knext-type {loser} {countable}) (new-is-not-a {achiever} {loser}) (new-knext-eq '({friend} {thing}) '({acquaintance} {thing})) (new-knext-type {acquaintance} {countable}) (new-knext-type {stranger} {countable}) (new-is-not-a {acquaintance} {stranger}) (new-knext-type {acquaintance} {countable}) (new-knext-type {stranger} {countable}) (new-is-not-a {acquaintance} {stranger}) (new-knext-eq '({histrion} {thing}) '({actor} {thing})) (new-knext-eq '({player} {thing}) '({actor} {thing})) (new-knext-eq '({thespian} {thing}) '({actor} {thing})) (new-knext-eq '({role player} {thing}) '({actor} {thing})) (new-knext-eq '({actor} {thing}) '({doer} {thing})) (new-knext-eq '({worker} {thing}) '({doer} {thing})) (new-knext-eq '({adjustor} {thing}) '({adjuster} {thing})) (new-knext-eq '({claims adjustor} {thing}) '({adjuster} {thing})) (new-knext-eq '({claim agent} {thing}) '({adjuster} {thing})) (new-knext-eq '({executive} {thing}) '({administrator} {thing})) (new-knext-eq '({decision maker} {thing}) '({administrator} {thing})) (new-knext-eq '({admirer} {thing}) '({adorer} {thing})) (new-knext-eq '({stripling} {thing}) '({adolescent} {thing})) (new-knext-eq '({teenager} {thing}) '({adolescent} {thing})) (new-knext-eq '({teen} {thing}) '({adolescent} {thing})) (new-knext-eq '({antagonist} {thing}) '({adversary} {thing})) (new-knext-eq '({opponent} {thing}) '({adversary} {thing})) (new-knext-eq '({opposer} {thing}) '({adversary} {thing})) (new-knext-eq '({resister} {thing}) '({adversary} {thing})) (new-knext-type {antagonist} {countable}) (new-knext-type {agonist} {countable}) (new-is-not-a {antagonist} {agonist}) (new-knext-eq '({advisor} {thing}) '({adviser} {thing})) (new-knext-eq '({consultant} {thing}) '({adviser} {thing})) (new-knext-eq '({advocator} {thing}) '({advocate} {thing})) (new-knext-eq '({proponent} {thing}) '({advocate} {thing})) (new-knext-eq '({exponent} {thing}) '({advocate} {thing})) (new-knext-eq '({agent} {thing}) '({broker} {thing})) (new-knext-eq '({factor} {thing}) '({broker} {thing})) (new-knext-eq '({agriculturalist} {thing}) '({agriculturist} {thing})) (new-knext-eq '({cultivator} {thing}) '({agriculturist} {thing})) (new-knext-eq '({grower} {thing}) '({agriculturist} {thing})) (new-knext-eq '({raiser} {thing}) '({agriculturist} {thing})) (new-knext-eq '({commander} {thing}) '({air force officer} {thing})) (new-knext-eq '({alky} {thing}) '({alcoholic} {thing})) (new-knext-eq '({dipsomaniac} {thing}) '({alcoholic} {thing})) (new-knext-eq '({boozer} {thing}) '({alcoholic} {thing})) (new-knext-eq '({lush} {thing}) '({alcoholic} {thing})) (new-knext-eq '({soaker} {thing}) '({alcoholic} {thing})) (new-knext-eq '({souse} {thing}) '({alcoholic} {thing})) (new-knext-eq '({distributor} {thing}) '({allocator} {thing})) (new-knext-eq '({friend} {thing}) '({ally} {thing})) (new-knext-type {friend} {countable}) (new-knext-type {foe} {countable}) (new-is-not-a {friend} {foe}) (new-knext-eq '({alumna} {thing}) '({alumnus} {thing})) (new-knext-eq '({graduate} {thing}) '({alumnus} {thing})) (new-knext-eq '({grad} {thing}) '({alumnus} {thing})) (new-knext-eq '({ascendant} {thing}) '({ancestor} {thing})) (new-knext-eq '({ascendent} {thing}) '({ancestor} {thing})) (new-knext-eq '({antecedent} {thing}) '({ancestor} {thing})) (new-knext-eq '({root} {thing}) '({ancestor} {thing})) (new-knext-type {ancestor} {countable}) (new-knext-type {descendant} {countable}) (new-is-not-a {ancestor} {descendant}) (new-knext-eq '({bootlicker} {thing}) '({apple polisher} {thing})) (new-knext-eq '({fawner} {thing}) '({apple polisher} {thing})) (add-english-names (list {groveler} {groveller} {groveller}) (list "groveler" "groveller" "groveller")) (new-knext-eq '({groveler} {thing}) '({apple polisher} {thing})) (new-knext-eq '({groveler} {thing}) '({apple polisher} {thing})) (new-knext-eq '({truckler} {thing}) '({apple polisher} {thing})) (new-knext-eq '({valuator} {thing}) '({appraiser} {thing})) (new-knext-eq '({appraiser} {thing}) '({authenticator} {thing})) (new-knext-eq '({designer} {thing}) '({architect} {thing})) (new-knext-eq '({arrival} {thing}) '({arriver} {thing})) (new-knext-eq '({comer} {thing}) '({arriver} {thing})) (new-knext-eq '({creative person} {thing}) '({artist} {thing})) (new-knext-eq '({declarer} {thing}) '({asserter} {thing})) (new-knext-eq '({affirmer} {thing}) '({asserter} {thing})) (new-knext-eq '({asseverator} {thing}) '({asserter} {thing})) (new-knext-eq '({avower} {thing}) '({asserter} {thing})) (new-knext-eq '({helper} {thing}) '({assistant} {thing})) (new-knext-eq '({supporter} {thing}) '({assistant} {thing})) (new-knext-type {assistant} {countable}) (new-knext-type {help} {countable}) (new-statement {help} {consists of} {assistant}) (new-knext-type {help} {uncountable}) (new-knext-type {assistant} {uncountable}) (new-statement {help} {consists of} {assistant}) (new-knext-eq '({jock} {thing}) '({athlete} {thing})) (new-knext-eq '({aggressor} {thing}) '({attacker} {thing})) (new-knext-eq '({assailant} {thing}) '({attacker} {thing})) (new-knext-eq '({assaulter} {thing}) '({attacker} {thing})) (new-knext-type {aunt} {countable}) (new-knext-type {uncle} {countable}) (new-is-not-a {aunt} {uncle}) (add-english-names (list {authorizer} {authoriser} {authorizer} {authoriser}) (list "authorizer" "authoriser" "authorizer" "authoriser")) (new-knext-eq '({authorizer} {thing}) '({authorizer} {thing})) (new-knext-eq '({aeronaut} {thing}) '({aviator} {thing})) (new-knext-eq '({airman} {thing}) '({aviator} {thing})) (new-knext-eq '({flier} {thing}) '({aviator} {thing})) (new-knext-eq '({flyer} {thing}) '({aviator} {thing})) (new-knext-eq '({babe} {thing}) '({baby} {thing})) (new-knext-eq '({infant} {thing}) '({baby} {thing})) (new-knext-eq '({baron} {thing}) '({big businessman} {thing})) (new-knext-eq '({business leader} {thing}) '({big businessman} {thing})) (new-knext-eq '({king} {thing}) '({big businessman} {thing})) (new-knext-eq '({magnate} {thing}) '({big businessman} {thing})) (new-knext-eq '({mogul} {thing}) '({big businessman} {thing})) (new-knext-eq '({top executive} {thing}) '({big businessman} {thing})) (new-knext-eq '({tycoon} {thing}) '({big businessman} {thing})) (new-knext-eq '({truster} {thing}) '({believer} {thing})) (new-knext-eq '({dear} {thing}) '({beloved} {thing})) (new-knext-eq '({dearest} {thing}) '({beloved} {thing})) (new-knext-eq '({honey} {thing}) '({beloved} {thing})) (new-knext-eq '({donee} {thing}) '({beneficiary} {thing})) (new-knext-eq '({better} {thing}) '({bettor} {thing})) (new-knext-eq '({wagerer} {thing}) '({bettor} {thing})) (new-knext-eq '({punter} {thing}) '({bettor} {thing})) (new-knext-eq '({booking agent} {thing}) '({booker} {thing})) (new-knext-type {borrower} {countable}) (new-knext-type {lender} {countable}) (new-is-not-a {borrower} {lender}) (new-knext-eq '({ledgeman} {thing}) '({breaker} {thing})) (new-knext-eq '({suborner} {thing}) '({briber} {thing})) (new-knext-type {brother} {countable}) (new-knext-type {sister} {countable}) (new-is-not-a {brother} {sister}) (new-knext-eq '({brother} {thing}) '({comrade} {thing})) (new-knext-eq '({brother} {thing}) '({buddy} {thing})) (new-knext-eq '({chum} {thing}) '({buddy} {thing})) (new-knext-eq '({crony} {thing}) '({buddy} {thing})) (new-knext-eq '({pal} {thing}) '({buddy} {thing})) (new-knext-eq '({sidekick} {thing}) '({buddy} {thing})) (new-knext-eq '({builder} {thing}) '({constructor} {thing})) (new-knext-eq '({bull} {thing}) '({cop} {thing})) (new-knext-eq '({copper} {thing}) '({cop} {thing})) (new-knext-eq '({fuzz} {thing}) '({cop} {thing})) (new-knext-eq '({pig} {thing}) '({cop} {thing})) (new-knext-eq '({blunderer} {thing}) '({bungler} {thing})) (new-knext-eq '({fumbler} {thing}) '({bungler} {thing})) (new-knext-eq '({bumbler} {thing}) '({bungler} {thing})) (new-knext-eq '({stumbler} {thing}) '({bungler} {thing})) (new-knext-eq '({sad sack} {thing}) '({bungler} {thing})) (new-knext-eq '({botcher} {thing}) '({bungler} {thing})) (new-knext-eq '({butcher} {thing}) '({bungler} {thing})) (new-knext-eq '({fuckup} {thing}) '({bungler} {thing})) (new-knext-eq '({man of affairs} {thing}) '({businessman} {thing})) (new-knext-eq '({bourgeois} {thing}) '({businessperson} {thing})) (new-knext-eq '({purchaser} {thing}) '({buyer} {thing})) (new-knext-eq '({emptor} {thing}) '({buyer} {thing})) (new-knext-eq '({vendee} {thing}) '({buyer} {thing})) (new-knext-eq '({reckoner} {thing}) '({calculator} {thing})) (new-knext-eq '({figurer} {thing}) '({calculator} {thing})) (new-knext-eq '({estimator} {thing}) '({calculator} {thing})) (new-knext-eq '({computer} {thing}) '({calculator} {thing})) (new-knext-eq '({candidate} {thing}) '({campaigner} {thing})) (new-knext-eq '({nominee} {thing}) '({campaigner} {thing})) (new-knext-eq '({skipper} {thing}) '({captain} {thing})) (new-knext-eq '({bearer} {thing}) '({carrier} {thing})) (new-knext-eq '({toter} {thing}) '({carrier} {thing})) (new-knext-eq '({match} {thing}) '({catch} {thing})) (new-knext-eq '({backstop} {thing}) '({catcher} {thing})) (new-knext-eq '({celebrator} {thing}) '({celebrant} {thing})) (new-knext-eq '({celebrater} {thing}) '({celebrant} {thing})) (new-knext-eq '({enumerator} {thing}) '({census taker} {thing})) (new-knext-eq '({champ} {thing}) '({champion} {thing})) (new-knext-eq '({premier} {thing}) '({chancellor} {thing})) (new-knext-eq '({prime minister} {thing}) '({chancellor} {thing})) (new-knext-eq '({fellow} {thing}) '({chap} {thing})) (new-knext-eq '({feller} {thing}) '({chap} {thing})) (new-knext-eq '({fella} {thing}) '({chap} {thing})) (new-knext-eq '({lad} {thing}) '({chap} {thing})) (new-knext-eq '({gent} {thing}) '({chap} {thing})) (new-knext-eq '({blighter} {thing}) '({chap} {thing})) (new-knext-eq '({cuss} {thing}) '({chap} {thing})) (new-knext-eq '({bloke} {thing}) '({chap} {thing})) (new-knext-eq '({character} {thing}) '({eccentric} {thing})) (new-knext-eq '({type} {thing}) '({eccentric} {thing})) (new-knext-eq '({babbler} {thing}) '({chatterer} {thing})) (new-knext-eq '({prater} {thing}) '({chatterer} {thing})) (new-knext-eq '({chatterbox} {thing}) '({chatterer} {thing})) (new-knext-eq '({magpie} {thing}) '({chatterer} {thing})) (new-knext-eq '({spouter} {thing}) '({chatterer} {thing})) (new-knext-eq '({kid} {thing}) '({child} {thing})) (new-knext-eq '({youngster} {thing}) '({child} {thing})) (new-knext-eq '({minor} {thing}) '({child} {thing})) (new-knext-eq '({shaver} {thing}) '({child} {thing})) (new-knext-eq '({nipper} {thing}) '({child} {thing})) (new-knext-eq '({small fry} {thing}) '({child} {thing})) (new-knext-eq '({tiddler} {thing}) '({child} {thing})) (new-knext-eq '({tike} {thing}) '({child} {thing})) (new-knext-eq '({tyke} {thing}) '({child} {thing})) (new-knext-eq '({fry} {thing}) '({child} {thing})) (new-knext-eq '({nestling} {thing}) '({child} {thing})) (new-knext-eq '({kid} {thing}) '({child} {thing})) (new-knext-type {child} {countable}) (new-knext-type {parent} {countable}) (new-is-not-a {child} {parent}) (new-knext-eq '({chimneysweep} {thing}) '({chimneysweeper} {thing})) (new-knext-type {citizen} {countable}) (new-knext-type {noncitizen} {countable}) (new-is-not-a {citizen} {noncitizen}) (new-knext-type {civilian} {countable}) (new-knext-type {serviceman} {countable}) (new-is-not-a {civilian} {serviceman}) (new-knext-eq '({closer} {thing}) '({finisher} {thing})) (new-knext-eq '({coach} {thing}) '({private instructor} {thing})) (new-knext-eq '({tutor} {thing}) '({private instructor} {thing})) (new-knext-eq '({manager} {thing}) '({coach} {thing})) (new-knext-eq '({handler} {thing}) '({coach} {thing})) (new-knext-eq '({fellow worker} {thing}) '({colleague} {thing})) (new-knext-eq '({workfellow} {thing}) '({colleague} {thing})) (new-knext-eq '({battler} {thing}) '({combatant} {thing})) (new-knext-eq '({belligerent} {thing}) '({combatant} {thing})) (new-knext-eq '({fighter} {thing}) '({combatant} {thing})) (new-knext-eq '({scrapper} {thing}) '({combatant} {thing})) (new-knext-eq '({commandant} {thing}) '({commanding officer} {thing})) (new-knext-eq '({commander} {thing}) '({commanding officer} {thing})) (new-knext-eq '({comrade} {thing}) '({companion} {thing})) (new-knext-eq '({fellow} {thing}) '({companion} {thing})) (new-knext-eq '({familiar} {thing}) '({companion} {thing})) (new-knext-eq '({associate} {thing}) '({companion} {thing})) (new-knext-eq '({fellow traveler} {thing}) '({companion} {thing})) (new-knext-eq '({fellow traveller} {thing}) '({companion} {thing})) (new-knext-eq '({music director} {thing}) '({conductor} {thing})) (new-knext-eq '({director} {thing}) '({conductor} {thing})) (new-knext-eq '({defrauder} {thing}) '({swindler} {thing})) (add-english-names (list {chiseler} {chiseller} {chiseller}) (list "chiseler" "chiseller" "chiseller")) (new-knext-eq '({chiseler} {thing}) '({swindler} {thing})) (new-knext-eq '({chiseler} {thing}) '({swindler} {thing})) (new-knext-eq '({gouger} {thing}) '({swindler} {thing})) (new-knext-eq '({scammer} {thing}) '({swindler} {thing})) (new-knext-eq '({grifter} {thing}) '({swindler} {thing})) (new-knext-eq '({congresswoman} {thing}) '({congressman} {thing})) (new-knext-eq '({representative} {thing}) '({congressman} {thing})) (new-knext-eq '({consignor} {thing}) '({consigner} {thing})) (new-knext-eq '({contact} {thing}) '({middleman} {thing})) (new-knext-eq '({coeval} {thing}) '({contemporary} {thing})) (new-knext-eq '({conveyor} {thing}) '({conveyer} {thing})) (new-knext-eq '({imitator} {thing}) '({copycat} {thing})) (new-knext-eq '({emulator} {thing}) '({copycat} {thing})) (new-knext-eq '({ape} {thing}) '({copycat} {thing})) (new-knext-eq '({aper} {thing}) '({copycat} {thing})) (new-knext-eq '({scribe} {thing}) '({copyist} {thing})) (new-knext-eq '({scrivener} {thing}) '({copyist} {thing})) (new-knext-eq '({business executive} {thing}) '({corporate executive} {thing})) (new-knext-eq '({mole} {thing}) '({counterspy} {thing})) (new-knext-eq '({fashion designer} {thing}) '({couturier} {thing})) (new-knext-eq '({clothes designer} {thing}) '({couturier} {thing})) (new-knext-eq '({designer} {thing}) '({couturier} {thing})) (new-knext-eq '({crank} {thing}) '({crackpot} {thing})) (new-knext-eq '({nut} {thing}) '({crackpot} {thing})) (new-knext-eq '({nut case} {thing}) '({crackpot} {thing})) (new-knext-eq '({fruitcake} {thing}) '({crackpot} {thing})) (new-knext-eq '({screwball} {thing}) '({crackpot} {thing})) (new-knext-eq '({craftsman} {thing}) '({artisan} {thing})) (new-knext-eq '({journeyman} {thing}) '({artisan} {thing})) (new-knext-eq '({artificer} {thing}) '({artisan} {thing})) (new-knext-eq '({creeper} {thing}) '({crawler} {thing})) (new-knext-eq '({creature} {thing}) '({wight} {thing})) (new-knext-eq '({weirdo} {thing}) '({creep} {thing})) (new-knext-eq '({weirdie} {thing}) '({creep} {thing})) (new-knext-eq '({weirdy} {thing}) '({creep} {thing})) (new-knext-eq '({spook} {thing}) '({creep} {thing})) (new-knext-eq '({felon} {thing}) '({criminal} {thing})) (new-knext-eq '({crook} {thing}) '({criminal} {thing})) (new-knext-eq '({outlaw} {thing}) '({criminal} {thing})) (new-knext-eq '({malefactor} {thing}) '({criminal} {thing})) (new-knext-eq '({bitch} {thing}) '({cunt} {thing})) (new-knext-eq '({minister of religion} {thing}) '({curate} {thing})) (new-knext-eq '({minister} {thing}) '({curate} {thing})) (new-knext-eq '({parson} {thing}) '({curate} {thing})) (new-knext-eq '({pastor} {thing}) '({curate} {thing})) (new-knext-eq '({rector} {thing}) '({curate} {thing})) (new-knext-eq '({client} {thing}) '({customer} {thing})) (new-knext-eq '({bicycler} {thing}) '({cyclist} {thing})) (new-knext-eq '({wheeler} {thing}) '({cyclist} {thing})) (new-knext-eq '({biker} {thing}) '({cyclist} {thing})) (new-knext-eq '({dada} {thing}) '({dad} {thing})) (new-knext-eq '({pa} {thing}) '({dad} {thing})) (new-knext-eq '({papa} {thing}) '({dad} {thing})) (new-knext-eq '({pappa} {thing}) '({dad} {thing})) (new-knext-eq '({pop} {thing}) '({dad} {thing})) (new-knext-eq '({dame} {thing}) '({madam} {thing})) (new-knext-eq '({lady} {thing}) '({madam} {thing})) (new-knext-eq '({gentlewoman} {thing}) '({madam} {thing})) (new-knext-eq '({terpsichorean} {thing}) '({dancer} {thing})) (new-knext-eq '({favorite} {thing}) '({darling} {thing})) (add-english-names (list {favorite} {favourite}) (list "favorite" "favourite")) (new-knext-eq '({favorite} {thing}) '({darling} {thing})) (new-knext-eq '({pet} {thing}) '({darling} {thing})) (new-knext-eq '({dearie} {thing}) '({darling} {thing})) (new-knext-eq '({deary} {thing}) '({darling} {thing})) (new-knext-eq '({ducky} {thing}) '({darling} {thing})) (new-knext-eq '({escort} {thing}) '({date} {thing})) (new-knext-eq '({girl} {thing}) '({daughter} {thing})) (new-knext-type {daughter} {countable}) (new-knext-type {son} {countable}) (new-is-not-a {daughter} {son}) (new-knext-type {girl} {countable}) (new-knext-type {boy} {countable}) (new-is-not-a {girl} {boy}) (new-knext-eq '({dead soul} {thing}) '({dead person} {thing})) (new-knext-eq '({deceased person} {thing}) '({dead person} {thing})) (new-knext-eq '({deceased} {thing}) '({dead person} {thing})) (new-knext-eq '({decedent} {thing}) '({dead person} {thing})) (new-knext-eq '({departed} {thing}) '({dead person} {thing})) (new-knext-eq '({cheat} {thing}) '({deceiver} {thing})) (new-knext-eq '({cheater} {thing}) '({deceiver} {thing})) (new-knext-eq '({trickster} {thing}) '({deceiver} {thing})) (new-knext-eq '({beguiler} {thing}) '({deceiver} {thing})) (new-knext-eq '({slicker} {thing}) '({deceiver} {thing})) (new-knext-eq '({delivery boy} {thing}) '({deliveryman} {thing})) (new-knext-eq '({deliverer} {thing}) '({deliveryman} {thing})) (new-knext-eq '({demonstrator} {thing}) '({protester} {thing})) (new-knext-eq '({tooth doctor} {thing}) '({dentist} {thing})) (new-knext-eq '({dental practitioner} {thing}) '({dentist} {thing})) (new-knext-eq '({leaver} {thing}) '({departer} {thing})) (new-knext-eq '({goer} {thing}) '({departer} {thing})) (new-knext-eq '({deputy} {thing}) '({surrogate} {thing})) (new-knext-eq '({descendent} {thing}) '({descendant} {thing})) (new-knext-type {descendant} {countable}) (new-knext-type {ancestor} {countable}) (new-is-not-a {descendant} {ancestor}) (new-knext-eq '({destroyer} {thing}) '({ruiner} {thing})) (new-knext-eq '({undoer} {thing}) '({ruiner} {thing})) (new-knext-eq '({waster} {thing}) '({ruiner} {thing})) (new-knext-eq '({uprooter} {thing}) '({ruiner} {thing})) (new-knext-eq '({investigator} {thing}) '({detective} {thing})) (new-knext-eq '({discriminator} {thing}) '({differentiator} {thing})) (new-knext-eq '({diplomatist} {thing}) '({diplomat} {thing})) (new-knext-eq '({manager} {thing}) '({director} {thing})) (new-knext-eq '({adherent} {thing}) '({disciple} {thing})) (new-knext-eq '({dissident} {thing}) '({dissenter} {thing})) (new-knext-eq '({protester} {thing}) '({dissenter} {thing})) (new-knext-eq '({objector} {thing}) '({dissenter} {thing})) (new-knext-eq '({contestant} {thing}) '({dissenter} {thing})) (new-knext-eq '({physician} {thing}) '({doctor} {thing})) (new-knext-eq '({md} {thing}) '({doctor} {thing})) (new-knext-eq '({medico} {thing}) '({doctor} {thing})) (new-knext-eq '({house servant} {thing}) '({domestic} {thing})) (new-knext-eq '({significant other} {thing}) '({domestic partner} {thing})) (new-knext-eq '({spousal equivalent} {thing}) '({domestic partner} {thing})) (new-knext-eq '({spouse equivalent} {thing}) '({domestic partner} {thing})) (new-knext-eq '({giver} {thing}) '({donor} {thing})) (new-knext-eq '({presenter} {thing}) '({donor} {thing})) (new-knext-eq '({bestower} {thing}) '({donor} {thing})) (new-knext-eq '({conferrer} {thing}) '({donor} {thing})) (new-knext-eq '({drawer} {thing}) '({draftsman} {thing})) (new-knext-eq '({drinker} {thing}) '({imbiber} {thing})) (new-knext-eq '({toper} {thing}) '({imbiber} {thing})) (new-knext-eq '({juicer} {thing}) '({imbiber} {thing})) (new-knext-type {drinker} {countable}) (new-knext-type {nondrinker} {countable}) (new-is-not-a {drinker} {nondrinker}) (add-english-names (list {driveler} {driveller} {driveller}) (list "driveler" "driveller" "driveller")) (new-knext-eq '({jabberer} {thing}) '({driveler} {thing})) (new-knext-type {driver} {countable}) (new-knext-type {nondriver} {countable}) (new-is-not-a {driver} {nondriver}) (new-knext-eq '({drudge} {thing}) '({peon} {thing})) (new-knext-eq '({navvy} {thing}) '({peon} {thing})) (new-knext-eq '({galley slave} {thing}) '({peon} {thing})) (new-knext-eq '({substance abuser} {thing}) '({drug user} {thing})) (new-knext-eq '({feeder} {thing}) '({eater} {thing})) (new-knext-eq '({flake} {thing}) '({eccentric} {thing})) (new-knext-eq '({oddball} {thing}) '({eccentric} {thing})) (new-knext-eq '({geek} {thing}) '({eccentric} {thing})) (new-knext-eq '({economic expert} {thing}) '({economist} {thing})) (add-english-names (list {pedagog} {pedagogue} {pedagogue}) (list "pedagog" "pedagogue" "pedagogue")) (new-knext-eq '({pedagog} {thing}) '({educator} {thing})) (new-knext-eq '({pedagog} {thing}) '({educator} {thing})) (new-knext-eq '({effector} {thing}) '({effecter} {thing})) (add-english-names (list {employe} {employee} {employee}) (list "employe" "employee" "employee")) (add-english-names (list {employe} {employee} {employee}) (list "employe" "employee" "employee")) (new-knext-eq '({enchantress} {thing}) '({witch} {thing})) (new-knext-eq '({enemy} {thing}) '({foe} {thing})) (new-knext-eq '({opposition} {thing}) '({foe} {thing})) (add-english-names (list {energizer} {energiser} {energizer} {energiser}) (list "energizer" "energiser" "energizer" "energiser")) (new-knext-eq '({energizer} {thing}) '({energizer} {thing})) (new-knext-eq '({vitalizer} {thing}) '({energizer} {thing})) (add-english-names (list {vitalizer} {vitaliser} {vitalizer} {vitaliser}) (list "vitalizer" "vitaliser" "vitalizer" "vitaliser")) (new-knext-eq '({vitalizer} {thing}) '({energizer} {thing})) (new-knext-eq '({animator} {thing}) '({energizer} {thing})) (new-knext-eq '({castrate} {thing}) '({eunuch} {thing})) (new-knext-eq '({judge} {thing}) '({evaluator} {thing})) (new-knext-eq '({inspector} {thing}) '({examiner} {thing})) (new-knext-eq '({tester} {thing}) '({examiner} {thing})) (new-knext-eq '({quizzer} {thing}) '({examiner} {thing})) (new-knext-eq '({money changer} {thing}) '({exchanger} {thing})) (new-knext-eq '({exhibitioner} {thing}) '({exhibitor} {thing})) (new-knext-eq '({shower} {thing}) '({exhibitor} {thing})) (new-knext-eq '({user} {thing}) '({exploiter} {thing})) (new-knext-eq '({adventurer} {thing}) '({explorer} {thing})) (new-knext-eq '({fan} {thing}) '({buff} {thing})) (new-knext-eq '({devotee} {thing}) '({buff} {thing})) (new-knext-eq '({lover} {thing}) '({buff} {thing})) (new-knext-eq '({husbandman} {thing}) '({farmer} {thing})) (new-knext-eq '({granger} {thing}) '({farmer} {thing})) (new-knext-eq '({sodbuster} {thing}) '({farmer} {thing})) (new-knext-eq '({male parent} {thing}) '({father} {thing})) (new-knext-eq '({begetter} {thing}) '({father} {thing})) (new-knext-type {father} {countable}) (new-knext-type {mother} {countable}) (new-is-not-a {father} {mother}) (new-knext-type {male parent} {countable}) (new-knext-type {female parent} {countable}) (new-is-not-a {male parent} {female parent}) (new-knext-type {female offspring} {countable}) (new-knext-type {male offspring} {countable}) (new-is-not-a {female offspring} {male offspring}) (new-knext-eq '({girl} {thing}) '({female child} {thing})) (new-knext-eq '({little girl} {thing}) '({female child} {thing})) (new-knext-type {female child} {countable}) (new-knext-type {male child} {countable}) (new-is-not-a {female child} {male child}) (new-knext-type {girl} {countable}) (new-knext-type {boy} {countable}) (new-is-not-a {girl} {boy}) (new-knext-eq '({libber} {thing}) '({feminist} {thing})) (new-knext-eq '({filmmaker} {thing}) '({film maker} {thing})) (new-knext-eq '({film producer} {thing}) '({film maker} {thing})) (new-knext-eq '({movie maker} {thing}) '({film maker} {thing})) (new-knext-eq '({discoverer} {thing}) '({finder} {thing})) (new-knext-eq '({spotter} {thing}) '({finder} {thing})) (new-knext-eq '({fireman} {thing}) '({firefighter} {thing})) (new-knext-eq '({fire fighter} {thing}) '({firefighter} {thing})) (new-knext-eq '({adulator} {thing}) '({flatterer} {thing})) (new-knext-eq '({flyer} {thing}) '({flier} {thing})) (new-knext-type {follower} {countable}) (new-knext-type {leader} {countable}) (new-is-not-a {follower} {leader}) (new-knext-eq '({sap} {thing}) '({fool} {thing})) (new-knext-eq '({saphead} {thing}) '({fool} {thing})) (new-knext-eq '({muggins} {thing}) '({fool} {thing})) (new-knext-eq '({forbear} {thing}) '({forebear} {thing})) (new-knext-eq '({alien} {thing}) '({foreigner} {thing})) (new-knext-eq '({noncitizen} {thing}) '({foreigner} {thing})) (new-knext-eq '({outlander} {thing}) '({foreigner} {thing})) (new-knext-type {noncitizen} {countable}) (new-knext-type {citizen} {countable}) (new-is-not-a {noncitizen} {citizen}) (new-knext-eq '({chief} {thing}) '({foreman} {thing})) (new-knext-eq '({gaffer} {thing}) '({foreman} {thing})) (new-knext-eq '({honcho} {thing}) '({foreman} {thing})) (new-knext-eq '({boss} {thing}) '({foreman} {thing})) (new-knext-eq '({forger} {thing}) '({counterfeiter} {thing})) (new-knext-eq '({beginner} {thing}) '({founder} {thing})) (new-knext-eq '({founding father} {thing}) '({founder} {thing})) (new-knext-eq '({father} {thing}) '({founder} {thing})) (new-knext-eq '({monster} {thing}) '({freak} {thing})) (new-knext-eq '({monstrosity} {thing}) '({freak} {thing})) (new-knext-type {freak} {countable}) (new-knext-indv {lusus naturae} {freak}) (new-knext-eq '({fresher} {thing}) '({freshman} {thing})) (new-knext-eq '({monastic} {thing}) '({monk} {thing})) (new-knext-eq '({runaway} {thing}) '({fugitive} {thing})) (new-knext-eq '({fleer} {thing}) '({fugitive} {thing})) (new-knext-eq '({gambler} {thing}) '({risk taker} {thing})) (add-english-names (list {garroter} {garrotter} {garotter}) (list "garroter" "garrotter" "garotter")) (new-knext-eq '({strangler} {thing}) '({garroter} {thing})) (new-knext-eq '({throttler} {thing}) '({garroter} {thing})) (new-knext-eq '({choker} {thing}) '({garroter} {thing})) (new-knext-eq '({primogenitor} {thing}) '({progenitor} {thing})) (new-knext-eq '({mastermind} {thing}) '({genius} {thing})) (new-knext-eq '({brain} {thing}) '({genius} {thing})) (new-knext-eq '({brainiac} {thing}) '({genius} {thing})) (new-knext-eq '({einstein} {thing}) '({genius} {thing})) (new-knext-eq '({giant} {thing}) '({hulk} {thing})) (new-knext-eq '({heavyweight} {thing}) '({hulk} {thing})) (new-knext-eq '({whale} {thing}) '({hulk} {thing})) (new-knext-eq '({miss} {thing}) '({girl} {thing})) (new-knext-eq '({missy} {thing}) '({girl} {thing})) (new-knext-eq '({young lady} {thing}) '({girl} {thing})) (new-knext-eq '({young woman} {thing}) '({girl} {thing})) (new-knext-eq '({fille} {thing}) '({girl} {thing})) (new-knext-eq '({girlfriend} {thing}) '({lady friend} {thing})) (new-knext-eq '({girl} {thing}) '({lady friend} {thing})) (new-knext-eq '({goalie} {thing}) '({goalkeeper} {thing})) (new-knext-eq '({goaltender} {thing}) '({goalkeeper} {thing})) (new-knext-eq '({netkeeper} {thing}) '({goalkeeper} {thing})) (new-knext-eq '({netminder} {thing}) '({goalkeeper} {thing})) (new-knext-eq '({gramps} {thing}) '({grandfather} {thing})) (new-knext-eq '({granddad} {thing}) '({grandfather} {thing})) (new-knext-eq '({grandad} {thing}) '({grandfather} {thing})) (new-knext-eq '({granddaddy} {thing}) '({grandfather} {thing})) (new-knext-eq '({grandpa} {thing}) '({grandfather} {thing})) (new-knext-eq '({grandmother} {thing}) '({grandma} {thing})) (new-knext-eq '({granny} {thing}) '({grandma} {thing})) (new-knext-eq '({grannie} {thing}) '({grandma} {thing})) (new-knext-eq '({nan} {thing}) '({grandma} {thing})) (new-knext-eq '({nanna} {thing}) '({grandma} {thing})) (new-knext-type {granter} {countable}) (new-knext-type {withholder} {countable}) (new-is-not-a {granter} {withholder}) (new-knext-eq '({saluter} {thing}) '({greeter} {thing})) (new-knext-eq '({welcomer} {thing}) '({greeter} {thing})) (new-knext-eq '({guerilla} {thing}) '({guerrilla} {thing})) (new-knext-eq '({irregular} {thing}) '({guerrilla} {thing})) (new-knext-eq '({insurgent} {thing}) '({guerrilla} {thing})) (new-knext-eq '({invitee} {thing}) '({guest} {thing})) (new-knext-eq '({gunslinger} {thing}) '({gunman} {thing})) (new-knext-eq '({hired gun} {thing}) '({gunman} {thing})) (new-knext-eq '({gun for hire} {thing}) '({gunman} {thing})) (new-knext-eq '({triggerman} {thing}) '({gunman} {thing})) (new-knext-eq '({hit man} {thing}) '({gunman} {thing})) (new-knext-eq '({hitman} {thing}) '({gunman} {thing})) (new-knext-eq '({torpedo} {thing}) '({gunman} {thing})) (new-knext-eq '({shooter} {thing}) '({gunman} {thing})) (new-knext-eq '({drudge} {thing}) '({hack} {thing})) (new-knext-eq '({hacker} {thing}) '({hack} {thing})) (new-knext-eq '({harasser} {thing}) '({harrier} {thing})) (new-knext-eq '({reaper} {thing}) '({harvester} {thing})) (new-knext-eq '({head} {thing}) '({chief} {thing})) (new-knext-eq '({top dog} {thing}) '({chief} {thing})) (new-knext-eq '({chief of state} {thing}) '({head of state} {thing})) (new-knext-eq '({primary care provider} {thing}) '({health professional} {thing})) (new-knext-eq '({pcp} {thing}) '({health professional} {thing})) (new-knext-eq '({health care provider} {thing}) '({health professional} {thing})) (new-knext-eq '({caregiver} {thing}) '({health professional} {thing})) (new-knext-eq '({listener} {thing}) '({hearer} {thing})) (new-knext-eq '({auditor} {thing}) '({hearer} {thing})) (new-knext-eq '({attender} {thing}) '({hearer} {thing})) (new-knext-eq '({inheritor} {thing}) '({heir} {thing})) (new-knext-eq '({heritor} {thing}) '({heir} {thing})) (new-knext-eq '({steersman} {thing}) '({helmsman} {thing})) (new-knext-eq '({steerer} {thing}) '({helmsman} {thing})) (new-knext-eq '({highjacker} {thing}) '({highwayman} {thing})) (new-knext-eq '({hijacker} {thing}) '({highwayman} {thing})) (new-knext-eq '({road agent} {thing}) '({highwayman} {thing})) (new-knext-eq '({hijacker} {thing}) '({highjacker} {thing})) (new-knext-eq '({tramp} {thing}) '({hiker} {thing})) (new-knext-eq '({tramper} {thing}) '({hiker} {thing})) (new-knext-eq '({hired man} {thing}) '({hired hand} {thing})) (new-knext-eq '({historiographer} {thing}) '({historian} {thing})) (new-knext-eq '({striker} {thing}) '({hitter} {thing})) (new-knext-eq '({limper} {thing}) '({hobbler} {thing})) (new-knext-eq '({pig} {thing}) '({hog} {thing})) (new-knext-eq '({bearer} {thing}) '({holder} {thing})) (new-knext-eq '({surety} {thing}) '({hostage} {thing})) (new-knext-eq '({homemaker} {thing}) '({housewife} {thing})) (new-knext-eq '({lady of the house} {thing}) '({housewife} {thing})) (new-knext-eq '({woman of the house} {thing}) '({housewife} {thing})) (new-knext-eq '({improver} {thing}) '({humanitarian} {thing})) (new-knext-eq '({huntsman} {thing}) '({hunter} {thing})) (new-knext-eq '({hubby} {thing}) '({husband} {thing})) (new-knext-eq '({married man} {thing}) '({husband} {thing})) (new-knext-type {husband} {countable}) (new-knext-type {wife} {countable}) (new-is-not-a {husband} {wife}) (new-knext-eq '({influential person} {thing}) '({important person} {thing})) (new-knext-eq '({personage} {thing}) '({important person} {thing})) (new-knext-eq '({impostor} {thing}) '({imposter} {thing})) (new-knext-eq '({pretender} {thing}) '({imposter} {thing})) (new-knext-eq '({fake} {thing}) '({imposter} {thing})) (new-knext-eq '({faker} {thing}) '({imposter} {thing})) (new-knext-eq '({fraud} {thing}) '({imposter} {thing})) (new-knext-eq '({sham} {thing}) '({imposter} {thing})) (new-knext-eq '({shammer} {thing}) '({imposter} {thing})) (new-knext-eq '({pseudo} {thing}) '({imposter} {thing})) (new-knext-eq '({pseud} {thing}) '({imposter} {thing})) (new-knext-eq '({role player} {thing}) '({imposter} {thing})) (new-knext-type {inferior} {countable}) (new-knext-type {superior} {countable}) (new-is-not-a {inferior} {superior}) (new-knext-eq '({source} {thing}) '({informant} {thing})) (new-knext-eq '({betrayer} {thing}) '({informer} {thing})) (new-knext-eq '({rat} {thing}) '({informer} {thing})) (new-knext-eq '({squealer} {thing}) '({informer} {thing})) (new-knext-eq '({blabber} {thing}) '({informer} {thing})) (new-knext-eq '({enquirer} {thing}) '({inquirer} {thing})) (new-knext-eq '({questioner} {thing}) '({inquirer} {thing})) (new-knext-eq '({querier} {thing}) '({inquirer} {thing})) (new-knext-eq '({asker} {thing}) '({inquirer} {thing})) (new-knext-eq '({instigator} {thing}) '({initiator} {thing})) (new-knext-eq '({provoker} {thing}) '({instigator} {thing})) (new-knext-eq '({inciter} {thing}) '({instigator} {thing})) (new-knext-eq '({instigant} {thing}) '({instigator} {thing})) (new-knext-eq '({firebrand} {thing}) '({instigator} {thing})) (new-knext-eq '({insurrectionist} {thing}) '({insurgent} {thing})) (new-knext-eq '({freedom fighter} {thing}) '({insurgent} {thing})) (new-knext-eq '({rebel} {thing}) '({insurgent} {thing})) (new-knext-eq '({house decorator} {thing}) '({interior decorator} {thing})) (new-knext-eq '({room decorator} {thing}) '({interior decorator} {thing})) (new-knext-eq '({encroacher} {thing}) '({invader} {thing})) (new-knext-eq '({discoverer} {thing}) '({inventor} {thing})) (new-knext-eq '({artificer} {thing}) '({inventor} {thing})) (new-knext-eq '({fool} {thing}) '({jester} {thing})) (new-knext-eq '({motley fool} {thing}) '({jester} {thing})) (new-knext-eq '({justice} {thing}) '({judge} {thing})) (new-knext-eq '({jurist} {thing}) '({judge} {thing})) (new-knext-eq '({slayer} {thing}) '({killer} {thing})) (new-knext-eq '({male monarch} {thing}) '({king} {thing})) (new-knext-eq '({rex} {thing}) '({king} {thing})) (new-knext-type {king} {countable}) (new-knext-type {queen} {countable}) (new-is-not-a {king} {queen}) (new-knext-type {male monarch} {countable}) (new-knext-type {female monarch} {countable}) (new-is-not-a {male monarch} {female monarch}) (new-knext-eq '({relation} {thing}) '({relative} {thing})) (new-knext-eq '({family} {thing}) '({kinsperson} {thing})) (new-knext-type {kin} {uncountable}) (new-knext-type {kinsperson} {uncountable}) (new-statement {kin} {consists of} {kinsperson}) (new-knext-type {kinsperson} {countable}) (new-knext-type {kin} {countable}) (new-statement {kin} {consists of} {kinsperson}) (new-knext-eq '({apprehender} {thing}) '({knower} {thing})) (add-english-names (list {laborer} {labourer}) (list "laborer" "labourer")) (new-knext-eq '({jack} {thing}) '({laborer} {thing})) (new-knext-eq '({landholder} {thing}) '({landowner} {thing})) (new-knext-eq '({property owner} {thing}) '({landowner} {thing})) (new-knext-eq '({lauder} {thing}) '({laudator} {thing})) (new-knext-eq '({extoller} {thing}) '({laudator} {thing})) (new-knext-eq '({law officer} {thing}) '({lawman} {thing})) (new-knext-eq '({peace officer} {thing}) '({lawman} {thing})) (new-knext-eq '({attorney} {thing}) '({lawyer} {thing})) (new-knext-eq '({scholar} {thing}) '({learner} {thing})) (new-knext-eq '({assimilator} {thing}) '({learner} {thing})) (new-knext-eq '({lector} {thing}) '({lecturer} {thing})) (new-knext-eq '({reader} {thing}) '({lecturer} {thing})) (new-knext-eq '({loaner} {thing}) '({lender} {thing})) (new-knext-type {lender} {countable}) (new-knext-type {borrower} {countable}) (new-is-not-a {lender} {borrower}) (add-english-names (list {leveler} {leveller} {leveller}) (list "leveler" "leveller" "leveller")) (new-knext-eq '({leveler} {thing}) '({leveler} {thing})) (new-knext-eq '({prevaricator} {thing}) '({liar} {thing})) (new-knext-type {liar} {countable}) (new-knext-type {square shooter} {countable}) (new-is-not-a {liar} {square shooter}) (new-knext-eq '({debauchee} {thing}) '({libertine} {thing})) (new-knext-eq '({rounder} {thing}) '({libertine} {thing})) (new-knext-eq '({boarder} {thing}) '({lodger} {thing})) (new-knext-eq '({roomer} {thing}) '({lodger} {thing})) (new-knext-eq '({thirster} {thing}) '({longer} {thing})) (new-knext-eq '({yearner} {thing}) '({longer} {thing})) (new-knext-eq '({sentinel} {thing}) '({lookout} {thing})) (new-knext-eq '({sentry} {thing}) '({lookout} {thing})) (new-knext-eq '({watch} {thing}) '({lookout} {thing})) (new-knext-eq '({spotter} {thing}) '({lookout} {thing})) (new-knext-eq '({scout} {thing}) '({lookout} {thing})) (new-knext-eq '({picket} {thing}) '({lookout} {thing})) (new-knext-type {loser} {countable}) (new-knext-type {winner} {countable}) (new-is-not-a {loser} {winner}) (new-knext-eq '({failure} {thing}) '({nonstarter} {thing})) (new-knext-eq '({loser} {thing}) '({nonstarter} {thing})) (new-knext-eq '({unsuccessful person} {thing}) '({nonstarter} {thing})) (new-knext-type {loser} {countable}) (new-knext-type {achiever} {countable}) (new-is-not-a {loser} {achiever}) (new-knext-eq '({slider} {thing}) '({luger} {thing})) (new-knext-eq '({lumberjack} {thing}) '({lumberman} {thing})) (new-knext-eq '({logger} {thing}) '({lumberman} {thing})) (new-knext-eq '({feller} {thing}) '({lumberman} {thing})) (new-knext-eq '({faller} {thing}) '({lumberman} {thing})) (new-knext-eq '({master} {thing}) '({maestro} {thing})) (new-knext-eq '({amah} {thing}) '({maid} {thing})) (new-knext-eq '({postman} {thing}) '({mailman} {thing})) (new-knext-eq '({mail carrier} {thing}) '({mailman} {thing})) (new-knext-eq '({letter carrier} {thing}) '({mailman} {thing})) (new-knext-eq '({carrier} {thing}) '({mailman} {thing})) (new-knext-eq '({shaper} {thing}) '({maker} {thing})) (new-knext-eq '({boy} {thing}) '({male child} {thing})) (new-knext-type {male child} {countable}) (new-knext-type {female child} {countable}) (new-is-not-a {male child} {female child}) (new-knext-type {boy} {countable}) (new-knext-type {girl} {countable}) (new-is-not-a {boy} {girl}) (new-knext-type {male offspring} {countable}) (new-knext-type {female offspring} {countable}) (new-is-not-a {male offspring} {female offspring}) (new-knext-eq '({skulker} {thing}) '({malingerer} {thing})) (new-knext-eq '({shammer} {thing}) '({malingerer} {thing})) (new-knext-eq '({adult male} {thing}) '({man} {thing})) (new-knext-type {man} {countable}) (new-knext-type {woman} {countable}) (new-is-not-a {man} {woman}) (new-knext-type {man} {countable}) (new-knext-type {woman} {countable}) (new-is-not-a {man} {woman}) (add-english-names (list {maneuverer} {manoeuvrer}) (list "maneuverer" "manoeuvrer")) (new-knext-eq '({manikin} {thing}) '({mannequin} {thing})) (new-knext-eq '({mannikin} {thing}) '({mannequin} {thing})) (new-knext-eq '({manakin} {thing}) '({mannequin} {thing})) (new-knext-eq '({fashion model} {thing}) '({mannequin} {thing})) (new-knext-eq '({model} {thing}) '({mannequin} {thing})) (new-knext-eq '({manufacturer} {thing}) '({producer} {thing})) (new-knext-eq '({sufferer} {thing}) '({martyr} {thing})) (new-knext-eq '({master} {thing}) '({professional} {thing})) (new-knext-eq '({emcee} {thing}) '({master of ceremonies} {thing})) (new-knext-eq '({host} {thing}) '({master of ceremonies} {thing})) (new-knext-eq '({city manager} {thing}) '({mayor} {thing})) (new-knext-eq '({medical man} {thing}) '({medical practitioner} {thing})) (new-knext-eq '({medium} {thing}) '({spiritualist} {thing})) (new-knext-eq '({sensitive} {thing}) '({spiritualist} {thing})) (new-knext-type {member} {countable}) (new-knext-type {nonmember} {countable}) (new-is-not-a {member} {nonmember}) (new-knext-type {nonmember} {countable}) (new-knext-type {member} {countable}) (new-is-not-a {nonmember} {member}) (new-knext-eq '({repairer} {thing}) '({mender} {thing})) (new-knext-eq '({fixer} {thing}) '({mender} {thing})) (add-english-names (list {merchandizer} {merchandiser} {merchandizer} {merchandiser}) (list "merchandizer" "merchandiser" "merchandizer" "merchandiser")) (new-knext-eq '({merchandizer} {thing}) '({merchant} {thing})) (new-knext-eq '({mineworker} {thing}) '({miner} {thing})) (new-knext-eq '({model} {thing}) '({poser} {thing})) (new-knext-eq '({ideal} {thing}) '({nonpareil} {thing})) (new-knext-eq '({paragon} {thing}) '({nonpareil} {thing})) (new-knext-eq '({saint} {thing}) '({nonpareil} {thing})) (new-knext-eq '({apotheosis} {thing}) '({nonpareil} {thing})) (new-knext-eq '({nonesuch} {thing}) '({nonpareil} {thing})) (new-knext-eq '({nonsuch} {thing}) '({nonpareil} {thing})) (new-knext-eq '({female parent} {thing}) '({mother} {thing})) (new-knext-type {mother} {countable}) (new-knext-type {father} {countable}) (new-is-not-a {mother} {father}) (new-knext-type {female parent} {countable}) (new-knext-type {male parent} {countable}) (new-is-not-a {female parent} {male parent}) (new-knext-eq '({automobilist} {thing}) '({motorist} {thing})) (new-knext-eq '({climber} {thing}) '({mounter} {thing})) (new-knext-eq '({griever} {thing}) '({mourner} {thing})) (new-knext-eq '({sorrower} {thing}) '({mourner} {thing})) (new-knext-eq '({lamenter} {thing}) '({mourner} {thing})) (new-knext-eq '({liquidator} {thing}) '({murderer} {thing})) (new-knext-eq '({manslayer} {thing}) '({murderer} {thing})) (new-knext-eq '({muller} {thing}) '({muser} {thing})) (new-knext-eq '({ponderer} {thing}) '({muser} {thing})) (new-knext-eq '({ruminator} {thing}) '({muser} {thing})) (new-knext-eq '({instrumentalist} {thing}) '({musician} {thing})) (new-knext-eq '({player} {thing}) '({musician} {thing})) (new-knext-eq '({mutation} {thing}) '({mutant} {thing})) (new-knext-eq '({variation} {thing}) '({mutant} {thing})) (new-knext-eq '({sport} {thing}) '({mutant} {thing})) (new-knext-eq '({mumbler} {thing}) '({mutterer} {thing})) (new-knext-eq '({murmurer} {thing}) '({mutterer} {thing})) (new-knext-eq '({storyteller} {thing}) '({narrator} {thing})) (new-knext-eq '({teller} {thing}) '({narrator} {thing})) (new-knext-eq '({negotiant} {thing}) '({negotiator} {thing})) (new-knext-eq '({treater} {thing}) '({negotiator} {thing})) (add-english-names (list {neighbor} {neighbour}) (list "neighbor" "neighbour")) (new-knext-type {nephew} {countable}) (new-knext-type {niece} {countable}) (new-is-not-a {nephew} {niece}) (new-knext-eq '({fledgling} {thing}) '({newcomer} {thing})) (new-knext-eq '({fledgeling} {thing}) '({newcomer} {thing})) (new-knext-eq '({starter} {thing}) '({newcomer} {thing})) (new-knext-eq '({neophyte} {thing}) '({newcomer} {thing})) (new-knext-eq '({freshman} {thing}) '({newcomer} {thing})) (new-knext-eq '({newbie} {thing}) '({newcomer} {thing})) (new-knext-eq '({entrant} {thing}) '({newcomer} {thing})) (new-knext-eq '({novice} {thing}) '({beginner} {thing})) (new-knext-eq '({tyro} {thing}) '({beginner} {thing})) (new-knext-eq '({tiro} {thing}) '({beginner} {thing})) (new-knext-eq '({initiate} {thing}) '({beginner} {thing})) (new-knext-eq '({offeror} {thing}) '({offerer} {thing})) (new-knext-eq '({functionary} {thing}) '({official} {thing})) (new-knext-eq '({progeny} {thing}) '({offspring} {thing})) (new-knext-eq '({issue} {thing}) '({offspring} {thing})) (new-knext-eq '({old person} {thing}) '({oldster} {thing})) (new-knext-eq '({senior citizen} {thing}) '({oldster} {thing})) (new-knext-eq '({golden ager} {thing}) '({oldster} {thing})) (new-knext-eq '({operator} {thing}) '({manipulator} {thing})) (new-knext-eq '({opposition} {thing}) '({opponent} {thing})) (new-knext-eq '({opposite} {thing}) '({opponent} {thing})) (add-english-names (list {systemizer} {systemiser} {systemizer} {systematiser} {systematizer} {systemiser} {systematizer} {systematiser}) (list "systemizer" "systemiser" "systemizer" "systematiser" "systematizer" "systemiser" "systematizer" "systematiser")) (new-knext-eq '({orderer} {thing}) '({systemizer} {thing})) (add-english-names (list {systemizer} {systemiser} {systemizer} {systematiser} {systematizer} {systemiser} {systematizer} {systematiser}) (list "systemizer" "systemiser" "systemizer" "systematiser" "systematizer" "systemiser" "systematizer" "systematiser")) (add-english-names (list {systemizer} {systemiser} {systemizer} {systematiser} {systematizer} {systemiser} {systematizer} {systematiser}) (list "systemizer" "systemiser" "systemizer" "systematiser" "systematizer" "systemiser" "systematizer" "systematiser")) (new-knext-eq '({systemizer} {thing}) '({systemizer} {thing})) (add-english-names (list {systemizer} {systemiser} {systemizer} {systematiser} {systematizer} {systemiser} {systematizer} {systematiser}) (list "systemizer" "systemiser" "systemizer" "systematiser" "systematizer" "systemiser" "systematizer" "systematiser")) (new-knext-eq '({systemizer} {thing}) '({systemizer} {thing})) (add-english-names (list {systemizer} {systemiser} {systemizer} {systematiser} {systematizer} {systemiser} {systematizer} {systematiser}) (list "systemizer" "systemiser" "systemizer" "systematiser" "systematizer" "systemiser" "systematizer" "systematiser")) (add-english-names (list {systemizer} {systemiser} {systemizer} {systematiser} {systematizer} {systemiser} {systematizer} {systematiser}) (list "systemizer" "systemiser" "systemizer" "systematiser" "systematizer" "systemiser" "systematizer" "systematiser")) (new-knext-eq '({systemizer} {thing}) '({systemizer} {thing})) (add-english-names (list {systemizer} {systemiser} {systemizer} {systematiser} {systematizer} {systemiser} {systematizer} {systematiser}) (list "systemizer" "systemiser" "systemizer" "systematiser" "systematizer" "systemiser" "systematizer" "systematiser")) (new-knext-eq '({systematist} {thing}) '({systemizer} {thing})) (add-english-names (list {organizer} {organiser} {organizer} {organiser}) (list "organizer" "organiser" "organizer" "organiser")) (new-knext-eq '({organizer} {thing}) '({organizer} {thing})) (new-knext-eq '({arranger} {thing}) '({organizer} {thing})) (new-knext-eq '({conceiver} {thing}) '({originator} {thing})) (new-knext-eq '({mastermind} {thing}) '({originator} {thing})) (new-knext-eq '({master} {thing}) '({overlord} {thing})) (new-knext-eq '({proprietor} {thing}) '({owner} {thing})) (new-knext-eq '({owner} {thing}) '({possessor} {thing})) (new-knext-eq '({bagger} {thing}) '({packer} {thing})) (new-knext-eq '({boxer} {thing}) '({packer} {thing})) (new-knext-eq '({nuisance} {thing}) '({pain in the neck} {thing})) (new-knext-type {pain} {uncountable}) (new-knext-type {pain in the neck} {uncountable}) (new-statement {pain} {consists of} {pain in the neck}) (new-knext-is-a '({pain in the neck} {countable}) '({pain} {uncountable})) (new-knext-eq '({spoiler} {thing}) '({pamperer} {thing})) (new-knext-eq '({coddler} {thing}) '({pamperer} {thing})) (new-knext-eq '({mollycoddler} {thing}) '({pamperer} {thing})) (new-knext-eq '({forgiver} {thing}) '({pardoner} {thing})) (new-knext-eq '({excuser} {thing}) '({pardoner} {thing})) (new-knext-type {parent} {countable}) (new-knext-type {child} {countable}) (new-is-not-a {parent} {child}) (new-knext-eq '({sharer} {thing}) '({partaker} {thing})) (new-knext-eq '({player} {thing}) '({participant} {thing})) (new-knext-eq '({rider} {thing}) '({passenger} {thing})) (new-knext-eq '({nationalist} {thing}) '({patriot} {thing})) (new-knext-eq '({patron} {thing}) '({sponsor} {thing})) (new-knext-eq '({supporter} {thing}) '({sponsor} {thing})) (new-knext-eq '({remunerator} {thing}) '({payer} {thing})) (add-english-names (list {pedaler} {pedaller} {pedaller}) (list "pedaler" "pedaller" "pedaller")) (new-knext-eq '({pedaler} {thing}) '({pedaler} {thing})) (new-knext-eq '({walker} {thing}) '({pedestrian} {thing})) (new-knext-eq '({footer} {thing}) '({pedestrian} {thing})) (new-knext-eq '({pensionary} {thing}) '({pensioner} {thing})) (new-knext-eq '({performing artist} {thing}) '({performer} {thing})) (new-knext-eq '({culprit} {thing}) '({perpetrator} {thing})) (new-knext-eq '({inducer} {thing}) '({persuader} {thing})) (new-knext-eq '({deviant} {thing}) '({pervert} {thing})) (new-knext-eq '({deviate} {thing}) '({pervert} {thing})) (new-knext-eq '({degenerate} {thing}) '({pervert} {thing})) (new-knext-eq '({pest} {thing}) '({blighter} {thing})) (new-knext-eq '({cuss} {thing}) '({blighter} {thing})) (new-knext-eq '({pesterer} {thing}) '({blighter} {thing})) (new-knext-eq '({gadfly} {thing}) '({blighter} {thing})) (new-knext-eq '({lensman} {thing}) '({photographer} {thing})) (new-knext-eq '({chooser} {thing}) '({picker} {thing})) (new-knext-eq '({selector} {thing}) '({picker} {thing})) (new-knext-eq '({innovator} {thing}) '({pioneer} {thing})) (new-knext-eq '({trailblazer} {thing}) '({pioneer} {thing})) (new-knext-eq '({groundbreaker} {thing}) '({pioneer} {thing})) (new-knext-eq '({complainant} {thing}) '({plaintiff} {thing})) (new-knext-type {plaintiff} {countable}) (new-knext-type {defendant} {countable}) (new-is-not-a {plaintiff} {defendant}) (new-knext-eq '({contriver} {thing}) '({planner} {thing})) (new-knext-eq '({deviser} {thing}) '({planner} {thing})) (new-knext-eq '({participant} {thing}) '({player} {thing})) (new-knext-eq '({police officer} {thing}) '({policeman} {thing})) (new-knext-eq '({officer} {thing}) '({policeman} {thing})) (new-knext-eq '({politician} {thing}) '({politico} {thing})) (new-knext-eq '({political leader} {thing}) '({politico} {thing})) (new-knext-eq '({portrait painter} {thing}) '({portraitist} {thing})) (new-knext-eq '({portrayer} {thing}) '({portraitist} {thing})) (new-knext-eq '({limner} {thing}) '({portraitist} {thing})) (new-knext-eq '({convergent thinker} {thing}) '({problem solver} {thing})) (new-knext-eq '({force} {thing}) '({power} {thing})) (new-knext-eq '({sponsor} {thing}) '({presenter} {thing})) (new-knext-eq '({president} {thing}) '({prexy} {thing})) (new-knext-eq '({president} {thing}) '({chairman} {thing})) (new-knext-eq '({chairwoman} {thing}) '({chairman} {thing})) (new-knext-eq '({chairperson} {thing}) '({chairman} {thing})) (new-knext-eq '({quarry} {thing}) '({prey} {thing})) (new-knext-eq '({target} {thing}) '({prey} {thing})) (new-knext-eq '({pressman} {thing}) '({printer} {thing})) (new-knext-eq '({captive} {thing}) '({prisoner} {thing})) (new-knext-eq '({postponer} {thing}) '({procrastinator} {thing})) (new-knext-eq '({cunctator} {thing}) '({procrastinator} {thing})) (new-knext-eq '({profligate} {thing}) '({prodigal} {thing})) (new-knext-eq '({squanderer} {thing}) '({prodigal} {thing})) (new-knext-eq '({coder} {thing}) '({programmer} {thing})) (new-knext-eq '({software engineer} {thing}) '({programmer} {thing})) (new-knext-eq '({promisor} {thing}) '({promiser} {thing})) (new-knext-eq '({booster} {thing}) '({promoter} {thing})) (new-knext-eq '({plugger} {thing}) '({promoter} {thing})) (new-knext-eq '({mover} {thing}) '({proposer} {thing})) (new-knext-eq '({sneak} {thing}) '({prowler} {thing})) (new-knext-eq '({stalker} {thing}) '({prowler} {thing})) (new-knext-eq '({publicizer} {thing}) '({publicist} {thing})) (new-knext-eq '({publiciser} {thing}) '({publicist} {thing})) (new-knext-eq '({puller} {thing}) '({tugger} {thing})) (new-knext-eq '({dragger} {thing}) '({tugger} {thing})) (new-knext-eq '({chaser} {thing}) '({pursuer} {thing})) (new-knext-eq '({quaker} {thing}) '({trembler} {thing})) (new-knext-eq '({female monarch} {thing}) '({queen regnant} {thing})) (new-knext-type {queen} {countable}) (new-knext-type {king} {countable}) (new-is-not-a {queen} {king}) (new-knext-type {female monarch} {countable}) (new-knext-type {male monarch} {countable}) (new-is-not-a {female monarch} {male monarch}) (new-knext-eq '({raver} {thing}) '({ranter} {thing})) (new-knext-eq '({ratiocinator} {thing}) '({reasoner} {thing})) (new-knext-eq '({disprover} {thing}) '({rebutter} {thing})) (new-knext-eq '({refuter} {thing}) '({rebutter} {thing})) (new-knext-eq '({confuter} {thing}) '({rebutter} {thing})) (new-knext-eq '({recruit} {thing}) '({enlistee} {thing})) (new-knext-eq '({ref} {thing}) '({referee} {thing})) (new-knext-eq '({renovator} {thing}) '({refinisher} {thing})) (new-knext-eq '({restorer} {thing}) '({refinisher} {thing})) (new-knext-eq '({preserver} {thing}) '({refinisher} {thing})) (new-knext-eq '({trustee} {thing}) '({regent} {thing})) (new-knext-eq '({maintenance man} {thing}) '({repairman} {thing})) (new-knext-eq '({service man} {thing}) '({repairman} {thing})) (new-knext-eq '({newsman} {thing}) '({reporter} {thing})) (new-knext-eq '({newsperson} {thing}) '({reporter} {thing})) (new-knext-eq '({rescuer} {thing}) '({recoverer} {thing})) (new-knext-eq '({saver} {thing}) '({recoverer} {thing})) (new-knext-eq '({researcher} {thing}) '({research worker} {thing})) (new-knext-eq '({investigator} {thing}) '({research worker} {thing})) (new-knext-eq '({occupant} {thing}) '({resident} {thing})) (new-knext-eq '({occupier} {thing}) '({resident} {thing})) (new-knext-type {resident} {countable}) (new-knext-type {nonresident} {countable}) (new-is-not-a {resident} {nonresident}) (new-knext-eq '({respondent} {thing}) '({responder} {thing})) (new-knext-eq '({answerer} {thing}) '({responder} {thing})) (new-knext-eq '({controller} {thing}) '({restrainer} {thing})) (new-knext-eq '({retail merchant} {thing}) '({retailer} {thing})) (add-english-names (list {reveler} {reveller} {reveller}) (list "reveler" "reveller" "reveller")) (new-knext-eq '({reveler} {thing}) '({reveler} {thing})) (new-knext-eq '({merrymaker} {thing}) '({reveler} {thing})) (new-knext-eq '({referee} {thing}) '({reviewer} {thing})) (new-knext-eq '({reader} {thing}) '({reviewer} {thing})) (new-knext-eq '({wealthy person} {thing}) '({rich person} {thing})) (new-knext-eq '({have} {thing}) '({rich person} {thing})) (new-knext-eq '({challenger} {thing}) '({rival} {thing})) (new-knext-eq '({competitor} {thing}) '({rival} {thing})) (new-knext-eq '({competition} {thing}) '({rival} {thing})) (new-knext-eq '({contender} {thing}) '({rival} {thing})) (new-knext-eq '({bawler} {thing}) '({roarer} {thing})) (new-knext-eq '({bellower} {thing}) '({roarer} {thing})) (new-knext-eq '({screamer} {thing}) '({roarer} {thing})) (new-knext-eq '({screecher} {thing}) '({roarer} {thing})) (new-knext-eq '({shouter} {thing}) '({roarer} {thing})) (new-knext-eq '({yeller} {thing}) '({roarer} {thing})) (new-knext-eq '({swayer} {thing}) '({ruler} {thing})) (new-knext-eq '({civil officer} {thing}) '({civil authority} {thing})) (new-knext-eq '({crewman} {thing}) '({sailor} {thing})) (new-knext-eq '({shop clerk} {thing}) '({salesclerk} {thing})) (new-knext-eq '({shop assistant} {thing}) '({salesclerk} {thing})) (new-knext-eq '({ironist} {thing}) '({satirist} {thing})) (new-knext-eq '({ridiculer} {thing}) '({satirist} {thing})) (new-knext-eq '({stroller} {thing}) '({saunterer} {thing})) (new-knext-eq '({ambler} {thing}) '({saunterer} {thing})) (new-knext-eq '({strikebreaker} {thing}) '({scab} {thing})) (new-knext-eq '({blackleg} {thing}) '({scab} {thing})) (new-knext-eq '({rat} {thing}) '({scab} {thing})) (new-knext-eq '({stirrer} {thing}) '({scaremonger} {thing})) (new-knext-eq '({bookman} {thing}) '({scholar} {thing})) (new-knext-eq '({student} {thing}) '({scholar} {thing})) (new-knext-eq '({pupil} {thing}) '({schoolchild} {thing})) (new-knext-eq '({scoffer} {thing}) '({flouter} {thing})) (new-knext-eq '({mocker} {thing}) '({flouter} {thing})) (new-knext-eq '({jeerer} {thing}) '({flouter} {thing})) (add-english-names (list {scrutinizer} {scrutiniser} {scrutinizer} {scrutiniser}) (list "scrutinizer" "scrutiniser" "scrutinizer" "scrutiniser")) (new-knext-eq '({scrutinizer} {thing}) '({scrutinizer} {thing})) (new-knext-eq '({intelligence officer} {thing}) '({secret agent} {thing})) (new-knext-eq '({intelligence agent} {thing}) '({secret agent} {thing})) (new-knext-eq '({operative} {thing}) '({secret agent} {thing})) (new-knext-eq '({secretary} {thing}) '({secretarial assistant} {thing})) (new-knext-eq '({searcher} {thing}) '({seeker} {thing})) (add-english-names (list {questor} {quaestor} {quester} {quaestor}) (list "questor" "quaestor" "quester" "quaestor")) (new-knext-eq '({questor} {thing}) '({seeker} {thing})) (new-knext-eq '({marketer} {thing}) '({seller} {thing})) (new-knext-eq '({vender} {thing}) '({seller} {thing})) (new-knext-eq '({vendor} {thing}) '({seller} {thing})) (new-knext-eq '({trafficker} {thing}) '({seller} {thing})) (new-knext-eq '({transmitter} {thing}) '({sender} {thing})) (new-knext-eq '({separationist} {thing}) '({separatist} {thing})) (new-knext-eq '({retainer} {thing}) '({servant} {thing})) (new-knext-eq '({military man} {thing}) '({serviceman} {thing})) (new-knext-eq '({military personnel} {thing}) '({serviceman} {thing})) (new-knext-type {serviceman} {countable}) (new-knext-type {civilian} {countable}) (new-is-not-a {serviceman} {civilian}) (new-knext-eq '({seizer} {thing}) '({shanghaier} {thing})) (new-knext-eq '({shot} {thing}) '({shooter} {thing})) (new-knext-eq '({showman} {thing}) '({impresario} {thing})) (new-knext-eq '({promoter} {thing}) '({impresario} {thing})) (new-knext-eq '({diseased person} {thing}) '({sick person} {thing})) (new-knext-eq '({sufferer} {thing}) '({sick person} {thing})) (new-knext-eq '({excursionist} {thing}) '({sightseer} {thing})) (new-knext-eq '({tripper} {thing}) '({sightseer} {thing})) (new-knext-eq '({rubberneck} {thing}) '({sightseer} {thing})) (new-knext-eq '({vocalist} {thing}) '({singer} {thing})) (new-knext-eq '({vocalizer} {thing}) '({singer} {thing})) (add-english-names (list {vocalizer} {vocaliser} {vocalizer} {vocaliser}) (list "vocalizer" "vocaliser" "vocalizer" "vocaliser")) (new-knext-eq '({vocalizer} {thing}) '({singer} {thing})) (new-knext-type {sister} {countable}) (new-knext-type {brother} {countable}) (new-is-not-a {sister} {brother}) (new-knext-eq '({vacillator} {thing}) '({waverer} {thing})) (new-knext-eq '({hesitator} {thing}) '({waverer} {thing})) (new-knext-eq '({hesitater} {thing}) '({waverer} {thing})) (new-knext-eq '({trained worker} {thing}) '({skilled worker} {thing})) (new-knext-eq '({skilled workman} {thing}) '({skilled worker} {thing})) (new-knext-eq '({slumberer} {thing}) '({sleeper} {thing})) (new-knext-eq '({sloven} {thing}) '({slob} {thing})) (new-knext-eq '({pig} {thing}) '({slob} {thing})) (new-knext-eq '({slovenly person} {thing}) '({slob} {thing})) (new-knext-eq '({tobacco user} {thing}) '({smoker} {thing})) (new-knext-type {smoker} {countable}) (new-knext-type {nonsmoker} {countable}) (new-is-not-a {smoker} {nonsmoker}) (new-knext-eq '({boy} {thing}) '({son} {thing})) (new-knext-type {son} {countable}) (new-knext-type {daughter} {countable}) (new-is-not-a {son} {daughter}) (new-knext-type {boy} {countable}) (new-knext-type {girl} {countable}) (new-is-not-a {boy} {girl}) (new-knext-eq '({psyche} {thing}) '({soul} {thing})) (new-knext-eq '({crowned head} {thing}) '({sovereign} {thing})) (new-knext-eq '({monarch} {thing}) '({sovereign} {thing})) (new-knext-eq '({talker} {thing}) '({speaker} {thing})) (new-knext-eq '({utterer} {thing}) '({speaker} {thing})) (new-knext-eq '({verbalizer} {thing}) '({speaker} {thing})) (add-english-names (list {verbalizer} {verbaliser} {verbalizer} {verbaliser}) (list "verbalizer" "verbaliser" "verbalizer" "verbaliser")) (new-knext-eq '({verbalizer} {thing}) '({speaker} {thing})) (new-knext-eq '({specializer} {thing}) '({specialist} {thing})) (new-knext-eq '({specialiser} {thing}) '({specialist} {thing})) (new-knext-type {specialist} {countable}) (new-knext-type {generalist} {countable}) (new-is-not-a {specialist} {generalist}) (new-knext-eq '({witness} {thing}) '({spectator} {thing})) (new-knext-eq '({viewer} {thing}) '({spectator} {thing})) (new-knext-eq '({watcher} {thing}) '({spectator} {thing})) (new-knext-eq '({looker} {thing}) '({spectator} {thing})) (new-knext-eq '({spender} {thing}) '({disburser} {thing})) (new-knext-eq '({expender} {thing}) '({disburser} {thing})) (new-knext-eq '({splitter} {thing}) '({divider} {thing})) (new-knext-type {splitter} {countable}) (new-knext-type {lumper} {countable}) (new-is-not-a {splitter} {lumper}) (new-knext-eq '({interpreter} {thing}) '({spokesperson} {thing})) (new-knext-eq '({representative} {thing}) '({spokesperson} {thing})) (new-knext-eq '({voice} {thing}) '({spokesperson} {thing})) (new-knext-eq '({partner} {thing}) '({spouse} {thing})) (new-knext-eq '({married person} {thing}) '({spouse} {thing})) (new-knext-eq '({mate} {thing}) '({spouse} {thing})) (new-knext-eq '({better half} {thing}) '({spouse} {thing})) (new-knext-eq '({undercover agent} {thing}) '({spy} {thing})) (new-knext-eq '({totterer} {thing}) '({staggerer} {thing})) (new-knext-eq '({reeler} {thing}) '({staggerer} {thing})) (new-knext-eq '({stutterer} {thing}) '({stammerer} {thing})) (new-knext-type {stander} {countable}) (new-knext-type {sitter} {countable}) (new-is-not-a {stander} {sitter}) (new-knext-eq '({loader} {thing}) '({stevedore} {thing})) (new-knext-eq '({longshoreman} {thing}) '({stevedore} {thing})) (new-knext-eq '({docker} {thing}) '({stevedore} {thing})) (new-knext-eq '({dockhand} {thing}) '({stevedore} {thing})) (new-knext-eq '({dock worker} {thing}) '({stevedore} {thing})) (new-knext-eq '({dockworker} {thing}) '({stevedore} {thing})) (new-knext-eq '({lumper} {thing}) '({stevedore} {thing})) (new-knext-eq '({steward} {thing}) '({flight attendant} {thing})) (new-knext-eq '({shareholder} {thing}) '({stockholder} {thing})) (new-knext-eq '({shareowner} {thing}) '({stockholder} {thing})) (new-knext-eq '({storyteller} {thing}) '({fibber} {thing})) (new-knext-eq '({fabricator} {thing}) '({fibber} {thing})) (new-knext-eq '({strayer} {thing}) '({straggler} {thing})) (new-knext-eq '({pupil} {thing}) '({student} {thing})) (new-knext-eq '({educatee} {thing}) '({student} {thing})) (new-knext-eq '({double} {thing}) '({stunt man} {thing})) (new-knext-eq '({stunt woman} {thing}) '({stunt man} {thing})) (new-knext-eq '({subject} {thing}) '({guinea pig} {thing})) (new-knext-eq '({case} {thing}) '({guinea pig} {thing})) (new-knext-eq '({subscriber} {thing}) '({contributor} {thing})) (new-knext-eq '({reader} {thing}) '({subscriber} {thing})) (new-knext-eq '({proposer} {thing}) '({suggester} {thing})) (new-knext-eq '({superordinate} {thing}) '({superior} {thing})) (new-knext-type {superior} {countable}) (new-knext-type {inferior} {countable}) (new-is-not-a {superior} {inferior}) (new-knext-eq '({provider} {thing}) '({supplier} {thing})) (new-knext-eq '({protagonist} {thing}) '({supporter} {thing})) (new-knext-eq '({champion} {thing}) '({supporter} {thing})) (new-knext-eq '({admirer} {thing}) '({supporter} {thing})) (new-knext-eq '({booster} {thing}) '({supporter} {thing})) (new-knext-eq '({friend} {thing}) '({supporter} {thing})) (new-knext-eq '({sawbones} {thing}) '({surgeon} {thing})) (new-knext-eq '({yielder} {thing}) '({surrenderer} {thing})) (new-knext-eq '({alternate} {thing}) '({surrogate} {thing})) (new-knext-eq '({replacement} {thing}) '({surrogate} {thing})) (new-knext-eq '({subsister} {thing}) '({survivor} {thing})) (new-knext-eq '({swimmer} {thing}) '({natator} {thing})) (new-knext-eq '({bather} {thing}) '({natator} {thing})) (new-knext-eq '({grind} {thing}) '({swot} {thing})) (new-knext-eq '({nerd} {thing}) '({swot} {thing})) (new-knext-eq '({wonk} {thing}) '({swot} {thing})) (new-knext-eq '({dweeb} {thing}) '({swot} {thing})) (new-knext-eq '({toady} {thing}) '({sycophant} {thing})) (new-knext-eq '({crawler} {thing}) '({sycophant} {thing})) (new-knext-eq '({lackey} {thing}) '({sycophant} {thing})) (new-knext-eq '({tail} {thing}) '({shadower} {thing})) (new-knext-eq '({shadow} {thing}) '({shadower} {thing})) (new-knext-eq '({taste tester} {thing}) '({taster} {thing})) (new-knext-eq '({sampler} {thing}) '({taster} {thing})) (new-knext-eq '({instructor} {thing}) '({teacher} {thing})) (new-knext-eq '({renter} {thing}) '({tenant} {thing})) (new-knext-eq '({deponent} {thing}) '({testifier} {thing})) (new-knext-eq '({deposer} {thing}) '({testifier} {thing})) (new-knext-eq '({theoretician} {thing}) '({theorist} {thing})) (new-knext-eq '({theorizer} {thing}) '({theorist} {thing})) (add-english-names (list {theorizer} {theoriser} {theorizer} {theoriser}) (list "theorizer" "theoriser" "theorizer" "theoriser")) (new-knext-eq '({theorizer} {thing}) '({theorist} {thing})) (new-knext-eq '({idealogue} {thing}) '({theorist} {thing})) (new-knext-eq '({healer} {thing}) '({therapist} {thing})) (new-knext-eq '({mind} {thing}) '({thinker} {thing})) (new-knext-eq '({timer} {thing}) '({timekeeper} {thing})) (new-knext-eq '({tormenter} {thing}) '({tormentor} {thing})) (new-knext-eq '({persecutor} {thing}) '({tormentor} {thing})) (new-knext-eq '({tourer} {thing}) '({tourist} {thing})) (new-knext-eq '({holidaymaker} {thing}) '({tourist} {thing})) (new-knext-eq '({bargainer} {thing}) '({trader} {thing})) (new-knext-eq '({dealer} {thing}) '({trader} {thing})) (new-knext-eq '({monger} {thing}) '({trader} {thing})) (new-knext-eq '({transferrer} {thing}) '({transferer} {thing})) (new-knext-eq '({financial officer} {thing}) '({treasurer} {thing})) (new-knext-eq '({trier} {thing}) '({attempter} {thing})) (new-knext-eq '({essayer} {thing}) '({attempter} {thing})) (new-knext-eq '({legal guardian} {thing}) '({trustee} {thing})) (new-knext-type {uncle} {countable}) (new-knext-type {aunt} {countable}) (new-is-not-a {uncle} {aunt}) (new-knext-eq '({undoer} {thing}) '({unfastener} {thing})) (new-knext-eq '({opener} {thing}) '({unfastener} {thing})) (new-knext-eq '({untier} {thing}) '({unfastener} {thing})) (new-knext-eq '({maintainer} {thing}) '({upholder} {thing})) (new-knext-eq '({sustainer} {thing}) '({upholder} {thing})) (new-knext-eq '({usher} {thing}) '({guide} {thing})) (new-knext-eq '({vocalizer} {thing}) '({utterer} {thing})) (add-english-names (list {vocalizer} {vocaliser} {vocalizer} {vocaliser}) (list "vocalizer" "vocaliser" "vocalizer" "vocaliser")) (new-knext-eq '({vocalizer} {thing}) '({utterer} {thing})) (new-knext-eq '({drifter} {thing}) '({vagrant} {thing})) (new-knext-eq '({floater} {thing}) '({vagrant} {thing})) (new-knext-eq '({vagabond} {thing}) '({vagrant} {thing})) (new-knext-eq '({clochard} {thing}) '({vagrant} {thing})) (new-knext-eq '({victim} {thing}) '({dupe} {thing})) (add-english-names (list {victimizer} {victimiser} {victimizer} {victimiser}) (list "victimizer" "victimiser" "victimizer" "victimiser")) (new-knext-eq '({victimizer} {thing}) '({victimizer} {thing})) (new-knext-eq '({violator} {thing}) '({debaucher} {thing})) (new-knext-eq '({ravisher} {thing}) '({debaucher} {thing})) (new-knext-eq '({visionary} {thing}) '({illusionist} {thing})) (new-knext-eq '({seer} {thing}) '({illusionist} {thing})) (new-knext-eq '({visitant} {thing}) '({visitor} {thing})) (add-english-names (list {visualizer} {visualiser} {visualizer} {visualiser}) (list "visualizer" "visualiser" "visualizer" "visualiser")) (add-english-names (list {visualizer} {visualiser} {visualizer} {visualiser}) (list "visualizer" "visualiser" "visualizer" "visualiser")) (new-knext-type {visualizer} {uncountable}) (new-knext-type {visualizer} {uncountable}) (new-statement {visualizer} {consists of} {visualizer}) (new-knext-eq '({life principle} {thing}) '({vital principle} {thing})) (new-knext-eq '({volunteer} {thing}) '({unpaid worker} {thing})) (new-knext-eq '({elector} {thing}) '({voter} {thing})) (new-knext-eq '({server} {thing}) '({waiter} {thing})) (new-knext-eq '({roamer} {thing}) '({wanderer} {thing})) (new-knext-eq '({rover} {thing}) '({wanderer} {thing})) (new-knext-eq '({bird of passage} {thing}) '({wanderer} {thing})) (new-knext-eq '({needer} {thing}) '({wanter} {thing})) (new-knext-eq '({carouser} {thing}) '({wassailer} {thing})) (new-knext-eq '({waster} {thing}) '({wastrel} {thing})) (new-knext-eq '({watcher} {thing}) '({watchman} {thing})) (new-knext-eq '({security guard} {thing}) '({watchman} {thing})) (new-knext-eq '({wayfarer} {thing}) '({journeyer} {thing})) (new-knext-eq '({crier} {thing}) '({weeper} {thing})) (new-knext-eq '({married woman} {thing}) '({wife} {thing})) (new-knext-type {wife} {countable}) (new-knext-type {husband} {countable}) (new-is-not-a {wife} {husband}) (new-knext-eq '({wriggler} {thing}) '({wiggler} {thing})) (new-knext-eq '({squirmer} {thing}) '({wiggler} {thing})) (new-knext-eq '({chicken} {thing}) '({wimp} {thing})) (new-knext-eq '({crybaby} {thing}) '({wimp} {thing})) (new-knext-type {winner} {countable}) (new-knext-type {loser} {countable}) (new-is-not-a {winner} {loser}) (new-knext-eq '({victor} {thing}) '({winner} {thing})) (new-knext-type {winner} {countable}) (new-knext-type {loser} {countable}) (new-is-not-a {winner} {loser}) (new-knext-type {withholder} {countable}) (new-knext-type {granter} {countable}) (new-is-not-a {withholder} {granter}) (new-knext-eq '({witnesser} {thing}) '({witness} {thing})) (new-knext-eq '({informant} {thing}) '({witness} {thing})) (new-knext-eq '({adult female} {thing}) '({woman} {thing})) (new-knext-type {woman} {countable}) (new-knext-type {man} {countable}) (new-is-not-a {woman} {man}) (new-knext-type {woman} {countable}) (new-knext-type {man} {countable}) (new-is-not-a {woman} {man}) (new-knext-eq '({author} {thing}) '({writer} {thing})) (new-knext-eq '({youth} {thing}) '({young person} {thing})) (new-knext-eq '({younker} {thing}) '({young person} {thing})) (new-knext-eq '({spring chicken} {thing}) '({young person} {thing})) (new-knext-eq '({effect} {thing}) '({consequence} {thing})) (new-knext-eq '({outcome} {thing}) '({consequence} {thing})) (new-knext-eq '({result} {thing}) '({consequence} {thing})) (new-knext-eq '({event} {thing}) '({consequence} {thing})) (new-knext-eq '({issue} {thing}) '({consequence} {thing})) (new-knext-eq '({upshot} {thing}) '({consequence} {thing})) (new-knext-eq '({impact} {thing}) '({wallop} {thing})) (new-knext-eq '({luck} {thing}) '({fortune} {thing})) (new-knext-eq '({chance} {thing}) '({fortune} {thing})) (new-knext-eq '({hazard} {thing}) '({fortune} {thing})) (new-knext-type {luck} {uncountable}) (new-knext-type {fortune} {uncountable}) (new-statement {luck} {consists of} {fortune}) (new-knext-is-a '({fortune} {countable}) '({luck} {uncountable})) (new-knext-eq '({distortion} {thing}) '({optical aberration} {thing})) (new-knext-eq '({actinic ray} {thing}) '({actinic radiation} {thing})) (new-knext-type {attraction} {uncountable}) (new-knext-type {repulsion} {countable}) (new-is-not-a {attraction} {repulsion}) (new-knext-type {attraction} {uncountable}) (new-knext-type {attractive force} {uncountable}) (new-statement {attraction} {consists of} {attractive force}) (new-knext-is-a '({attractive force} {countable}) '({attraction} {uncountable})) (new-knext-eq '({light beam} {thing}) '({beam of light} {thing})) (new-knext-eq '({ray} {thing}) '({beam of light} {thing})) (new-knext-eq '({ray of light} {thing}) '({beam of light} {thing})) (new-knext-eq '({shaft} {thing}) '({beam of light} {thing})) (new-knext-eq '({shaft of light} {thing}) '({beam of light} {thing})) (new-knext-eq '({zephyr} {thing}) '({breeze} {thing})) (new-knext-eq '({gentle wind} {thing}) '({breeze} {thing})) (new-knext-eq '({air} {thing}) '({breeze} {thing})) (new-knext-is-a '({freeze} {countable}) '({frost} {uncountable})) (new-knext-type {frost} {uncountable}) (new-knext-type {freeze} {uncountable}) (new-statement {frost} {consists of} {freeze}) (new-knext-eq '({decomposition} {thing}) '({decay} {thing})) (new-knext-eq '({impetus} {thing}) '({drift} {thing})) (new-knext-eq '({impulsion} {thing}) '({drift} {thing})) (new-knext-eq '({electricity} {thing}) '({electrical energy} {thing})) (new-knext-eq '({power} {thing}) '({electrical energy} {thing})) (new-knext-eq '({nonparticulate radiation} {thing}) '({electromagnetic radiation} {thing})) (new-knext-type {electromagnetic radiation} {uncountable}) (new-knext-type {electromagnetic wave} {uncountable}) (new-statement {electromagnetic radiation} {consists of} {electromagnetic wave}) (new-knext-is-a '({electromagnetic wave} {countable}) '({electromagnetic radiation} {uncountable})) (new-knext-eq '({inundation} {thing}) '({flood} {thing})) (new-knext-eq '({deluge} {thing}) '({flood} {thing})) (new-knext-eq '({alluvion} {thing}) '({flood} {thing})) (new-knext-eq '({focus} {thing}) '({focal point} {thing})) (new-knext-eq '({sunshine} {thing}) '({fair weather} {thing})) (new-knext-eq '({temperateness} {thing}) '({fair weather} {thing})) (new-knext-eq '({friction} {thing}) '({rubbing} {thing})) (new-knext-eq '({grinding} {thing}) '({detrition} {thing})) (new-knext-eq '({abrasion} {thing}) '({detrition} {thing})) (new-knext-type {attrition} {uncountable}) (new-knext-type {detrition} {uncountable}) (new-statement {attrition} {consists of} {detrition}) (new-knext-is-a '({detrition} {countable}) '({attrition} {uncountable})) (new-knext-eq '({grip} {thing}) '({traction} {thing})) (new-knext-eq '({adhesive friction} {thing}) '({traction} {thing})) (new-knext-eq '({gravitation} {thing}) '({gravity} {thing})) (new-knext-eq '({gravitational attraction} {thing}) '({gravity} {thing})) (new-knext-type {gravity} {uncountable}) (new-knext-type {gravitational force} {uncountable}) (new-statement {gravity} {consists of} {gravitational force}) (new-knext-is-a '({gravitational force} {countable}) '({gravity} {uncountable})) (new-knext-eq '({blast} {thing}) '({gust} {thing})) (new-knext-eq '({blow} {thing}) '({gust} {thing})) (new-knext-eq '({visible radiation} {thing}) '({light} {thing})) (new-knext-eq '({flight} {thing}) '({trajectory} {thing})) (new-knext-eq '({warming} {thing}) '({thawing} {thing})) (new-knext-is-a '({thaw} {countable}) '({thawing} {uncountable})) (new-knext-type {thawing} {uncountable}) (new-knext-type {thaw} {uncountable}) (new-statement {thawing} {consists of} {thaw}) (new-knext-eq '({moonshine} {thing}) '({moonlight} {thing})) (new-knext-type {moonlight} {uncountable}) (new-knext-type {moon} {uncountable}) (new-statement {moonlight} {consists of} {moon}) (new-knext-eq '({sunshine} {thing}) '({sunlight} {thing})) (add-english-names (list {polarization} {polarisation} {polarization} {polarisation}) (list "polarization" "polarisation" "polarization" "polarisation")) (new-knext-eq '({polarization} {thing}) '({polarization} {thing})) (new-knext-eq '({precipitation} {thing}) '({downfall} {thing})) (new-knext-eq '({force per unit area} {thing}) '({pressure} {thing})) (new-knext-is-a '({pressure} {uncountable}) '({pressure level} {countable})) (new-knext-is-a '({pressure level} {countable}) '({pressure} {uncountable})) (new-knext-eq '({push} {thing}) '({thrust} {thing})) (new-knext-eq '({cloudburst} {thing}) '({downpour} {thing})) (new-knext-eq '({deluge} {thing}) '({downpour} {thing})) (new-knext-eq '({waterspout} {thing}) '({downpour} {thing})) (new-knext-eq '({torrent} {thing}) '({downpour} {thing})) (new-knext-eq '({pelter} {thing}) '({downpour} {thing})) (new-knext-eq '({soaker} {thing}) '({downpour} {thing})) (new-knext-type {smoke} {uncountable}) (new-knext-type {fume} {uncountable}) (new-statement {smoke} {consists of} {fume}) (new-knext-is-a '({fume} {countable}) '({smoke} {uncountable})) (new-knext-eq '({snow mist} {thing}) '({ice crystal} {thing})) (new-knext-eq '({diamond dust} {thing}) '({ice crystal} {thing})) (new-knext-eq '({poudrin} {thing}) '({ice crystal} {thing})) (new-knext-eq '({ice needle} {thing}) '({ice crystal} {thing})) (new-knext-eq '({frost snow} {thing}) '({ice crystal} {thing})) (new-knext-eq '({frost mist} {thing}) '({ice crystal} {thing})) (new-knext-eq '({bolt of lightning} {thing}) '({thunderbolt} {thing})) (new-knext-eq '({twister} {thing}) '({tornado} {thing})) (add-english-names (list {draft} {draught} {draft}) (list "draft" "draught" "draft")) (new-knext-eq '({draft} {thing}) '({draft} {thing})) (new-knext-eq '({atmospheric condition} {thing}) '({weather condition} {thing})) (new-knext-is-a '({weather} {uncountable}) '({weather condition} {countable})) (new-knext-is-a '({weather condition} {countable}) '({weather} {uncountable})) (new-knext-eq '({air current} {thing}) '({wind} {thing})) (new-knext-eq '({current of air} {thing}) '({wind} {thing})) (new-knext-eq '({floatation} {thing}) '({flotation} {thing})) (new-knext-eq '({cap} {thing}) '({pileus} {thing})) (new-knext-eq '({flowering plant} {thing}) '({angiosperm} {thing})) (new-knext-eq '({flower} {thing}) '({blossom} {thing})) (new-knext-eq '({bloom} {thing}) '({blossom} {thing})) (new-knext-eq '({stone} {thing}) '({endocarp} {thing})) (new-knext-eq '({pit} {thing}) '({endocarp} {thing})) (new-knext-eq '({graminaceous plant} {thing}) '({gramineous plant} {thing})) (new-knext-eq '({indian corn} {thing}) '({maize} {thing})) (new-knext-eq '({zea mays} {thing}) '({maize} {thing})) (new-knext-is-a '({corn} {countable}) '({maize} {uncountable})) (new-knext-type {maize} {uncountable}) (new-knext-type {corn} {uncountable}) (new-statement {maize} {consists of} {corn}) (new-knext-type {cotton} {uncountable}) (new-knext-type {cotton plant} {uncountable}) (new-statement {cotton} {consists of} {cotton plant}) (new-knext-is-a '({cotton plant} {countable}) '({cotton} {uncountable})) (new-knext-eq '({phoenix dactylifera} {thing}) '({date palm} {thing})) (new-knext-eq '({malus pumila} {thing}) '({orchard apple tree} {thing})) (new-knext-type {white potato} {countable}) (new-knext-indv {solanum tuberosum} {white potato}) (new-knext-eq '({pepper} {thing}) '({capsicum} {thing})) (new-knext-eq '({blusher} {thing}) '({blushing mushroom} {thing})) (new-knext-eq '({amanita rubescens} {thing}) '({blushing mushroom} {thing})) (add-english-names (list {mold} {mould}) (list "mold" "mould")) (new-knext-eq '({tracheophyte} {thing}) '({vascular plant} {thing})) (new-knext-type {cultivated plant} {countable}) (new-knext-type {weed} {countable}) (new-is-not-a {cultivated plant} {weed}) (new-knext-type {weed} {countable}) (new-knext-type {cultivated plant} {countable}) (new-is-not-a {weed} {cultivated plant}) (new-knext-eq '({harvest} {thing}) '({crop} {thing})) (new-knext-eq '({plant structure} {thing}) '({plant part} {thing})) (new-knext-eq '({spine} {thing}) '({prickle} {thing})) (new-knext-eq '({thorn} {thing}) '({prickle} {thing})) (new-knext-eq '({pricker} {thing}) '({prickle} {thing})) (new-knext-eq '({sticker} {thing}) '({prickle} {thing})) (new-knext-eq '({spikelet} {thing}) '({prickle} {thing})) (new-knext-eq '({flesh} {thing}) '({pulp} {thing})) (new-knext-eq '({ligneous plant} {thing}) '({woody plant} {thing})) (new-knext-eq '({bush} {thing}) '({shrub} {thing})) (new-knext-eq '({water plant} {thing}) '({aquatic plant} {thing})) (new-knext-eq '({hydrophyte} {thing}) '({aquatic plant} {thing})) (new-knext-eq '({hydrophytic plant} {thing}) '({aquatic plant} {thing})) (new-knext-eq '({epiphyte} {thing}) '({air plant} {thing})) (new-knext-eq '({aerophyte} {thing}) '({air plant} {thing})) (new-knext-eq '({epiphytic plant} {thing}) '({air plant} {thing})) (new-knext-eq '({rootage} {thing}) '({root system} {thing})) (new-knext-eq '({stem} {thing}) '({stalk} {thing})) (new-knext-eq '({ear} {thing}) '({capitulum} {thing})) (new-knext-eq '({spike} {thing}) '({capitulum} {thing})) (new-knext-eq '({false fruit} {thing}) '({pome} {thing})) (new-knext-type {pepper} {countable}) (new-knext-indv {piper nigrum} {pepper}) (new-knext-eq '({foliage} {thing}) '({leafage} {thing})) (new-knext-type {leaf} {countable}) (new-knext-type {leafage} {countable}) (new-statement {leafage} {consists of} {leaf}) (new-knext-type {leafage} {uncountable}) (new-knext-type {leaf} {uncountable}) (new-statement {leafage} {consists of} {leaf}) (new-knext-eq '({belongings} {thing}) '({property} {thing})) (new-knext-type {property} {uncountable}) (new-knext-type {holding} {uncountable}) (new-statement {property} {consists of} {holding}) (new-knext-type {holding} {countable}) (new-knext-type {property} {countable}) (new-statement {property} {consists of} {holding}) (new-knext-eq '({real estate} {thing}) '({real property} {thing})) (new-knext-eq '({realty} {thing}) '({real property} {thing})) (new-knext-eq '({immovable} {thing}) '({real property} {thing})) (new-knext-eq '({demesne} {thing}) '({landed estate} {thing})) (new-knext-type {landed estate} {countable}) (new-knext-type {acres} {countable}) (new-statement {acres} {consists of} {landed estate}) (new-knext-type {acres} {uncountable}) (new-knext-type {landed estate} {uncountable}) (new-statement {acres} {consists of} {landed estate}) (new-knext-eq '({rental} {thing}) '({lease} {thing})) (new-knext-eq '({letting} {thing}) '({lease} {thing})) (new-knext-eq '({transferred possession} {thing}) '({transferred property} {thing})) (new-knext-eq '({bargain} {thing}) '({buy} {thing})) (new-knext-eq '({steal} {thing}) '({buy} {thing})) (new-knext-type {gain} {countable}) (new-knext-type {loss} {countable}) (new-is-not-a {gain} {loss}) (new-knext-type {income} {uncountable}) (new-knext-type {outgo} {uncountable}) (new-is-not-a {income} {outgo}) (new-knext-eq '({net profit} {thing}) '({net income} {thing})) (new-knext-eq '({lucre} {thing}) '({net income} {thing})) (new-knext-eq '({profit} {thing}) '({net income} {thing})) (new-knext-eq '({earnings} {thing}) '({profits} {thing})) (new-knext-is-a '({net income} {uncountable}) '({profits} {uncountable})) (new-knext-is-a '({profits} {uncountable}) '({net income} {uncountable})) (new-knext-eq '({win} {thing}) '({winnings} {thing})) (new-knext-eq '({profits} {thing}) '({winnings} {thing})) (new-knext-type {winnings} {uncountable}) (new-knext-type {losings} {uncountable}) (new-is-not-a {winnings} {losings}) (new-knext-eq '({booty} {thing}) '({loot} {thing})) (new-knext-eq '({pillage} {thing}) '({loot} {thing})) (new-knext-eq '({plunder} {thing}) '({loot} {thing})) (new-knext-eq '({dirty money} {thing}) '({loot} {thing})) (new-knext-eq '({swag} {thing}) '({prize} {thing})) (new-knext-type {loot} {uncountable}) (new-knext-type {prize} {uncountable}) (new-statement {loot} {consists of} {prize}) (new-knext-is-a '({prize} {countable}) '({loot} {uncountable})) (new-knext-eq '({financial aid} {thing}) '({economic aid} {thing})) (new-knext-eq '({assistance} {thing}) '({economic aid} {thing})) (new-knext-eq '({financial assistance} {thing}) '({economic aid} {thing})) (new-knext-eq '({economic assistance} {thing}) '({economic aid} {thing})) (new-knext-eq '({award} {thing}) '({prize} {thing})) (new-knext-eq '({spending} {thing}) '({outgo} {thing})) (new-knext-eq '({expenditure} {thing}) '({outgo} {thing})) (new-knext-eq '({outlay} {thing}) '({outgo} {thing})) (new-knext-type {outgo} {uncountable}) (new-knext-type {income} {uncountable}) (new-is-not-a {outgo} {income}) (new-knext-eq '({disbursal} {thing}) '({expense} {thing})) (new-knext-eq '({disbursement} {thing}) '({expense} {thing})) (new-knext-type {payment} {countable}) (new-knext-type {nonpayment} {countable}) (new-is-not-a {payment} {nonpayment}) (new-knext-eq '({pay} {thing}) '({wage} {thing})) (new-knext-eq '({earnings} {thing}) '({wage} {thing})) (new-knext-eq '({remuneration} {thing}) '({wage} {thing})) (new-knext-eq '({salary} {thing}) '({wage} {thing})) (new-knext-eq '({maintenance} {thing}) '({alimony} {thing})) (new-knext-eq '({payoff} {thing}) '({bribe} {thing})) (new-knext-eq '({portion} {thing}) '({share} {thing})) (new-knext-eq '({part} {thing}) '({share} {thing})) (new-knext-eq '({percentage} {thing}) '({share} {thing})) (new-knext-eq '({interest} {thing}) '({stake} {thing})) (new-knext-eq '({allocation} {thing}) '({allotment} {thing})) (new-knext-eq '({restitution} {thing}) '({damages} {thing})) (new-knext-eq '({redress} {thing}) '({damages} {thing})) (new-knext-eq '({indemnity} {thing}) '({indemnification} {thing})) (new-knext-is-a '({damages} {uncountable}) '({amends} {uncountable})) (new-knext-type {damages} {uncountable}) (new-knext-type {indemnification} {uncountable}) (new-statement {damages} {consists of} {indemnification}) (new-knext-is-a '({amends} {uncountable}) '({damages} {uncountable})) (new-knext-type {amends} {uncountable}) (new-knext-type {indemnification} {uncountable}) (new-statement {amends} {consists of} {indemnification}) (new-knext-is-a '({indemnification} {countable}) '({damages} {uncountable})) (new-knext-type {indemnification} {countable}) (new-knext-type {amends} {countable}) (new-statement {amends} {consists of} {indemnification}) (new-knext-eq '({tip} {thing}) '({gratuity} {thing})) (new-knext-eq '({pourboire} {thing}) '({gratuity} {thing})) (new-knext-eq '({bakshish} {thing}) '({gratuity} {thing})) (new-knext-eq '({bakshis} {thing}) '({gratuity} {thing})) (new-knext-eq '({backsheesh} {thing}) '({gratuity} {thing})) (new-knext-is-a '({gratuity} {countable}) '({baksheesh} {uncountable})) (new-knext-type {baksheesh} {uncountable}) (new-knext-type {gratuity} {uncountable}) (new-statement {baksheesh} {consists of} {gratuity}) (new-knext-eq '({quittance} {thing}) '({repayment} {thing})) (new-knext-eq '({default} {thing}) '({nonpayment} {thing})) (new-knext-eq '({nonremittal} {thing}) '({nonpayment} {thing})) (new-knext-type {nonpayment} {countable}) (new-knext-type {payment} {countable}) (new-is-not-a {nonpayment} {payment}) (new-knext-eq '({forfeiture} {thing}) '({forfeit} {thing})) (new-knext-eq '({forfeiture} {thing}) '({forfeit} {thing})) (new-knext-is-a '({fare} {countable}) '({transportation} {uncountable})) (new-knext-type {transportation} {uncountable}) (new-knext-type {fare} {uncountable}) (new-statement {transportation} {consists of} {fare}) (new-knext-eq '({revenue enhancement} {thing}) '({tax} {thing})) (new-knext-is-a '({tax} {countable}) '({taxation} {uncountable})) (new-knext-type {taxation} {uncountable}) (new-knext-type {tax} {uncountable}) (new-statement {taxation} {consists of} {tax}) (new-knext-is-a '({withholding tax} {countable}) '({withholding} {uncountable})) (new-knext-type {withholding} {uncountable}) (new-knext-type {withholding tax} {uncountable}) (new-statement {withholding} {consists of} {withholding tax}) (new-knext-is-a '({tax shelter} {countable}) '({shelter} {countable})) (new-knext-is-a '({shelter} {countable}) '({tax shelter} {countable})) (new-knext-eq '({duty} {thing}) '({tariff} {thing})) (new-knext-eq '({admission} {thing}) '({entrance fee} {thing})) (new-knext-eq '({admission charge} {thing}) '({entrance fee} {thing})) (new-knext-eq '({admission fee} {thing}) '({entrance fee} {thing})) (new-knext-eq '({admission price} {thing}) '({entrance fee} {thing})) (new-knext-eq '({price of admission} {thing}) '({entrance fee} {thing})) (new-knext-is-a '({entrance fee} {countable}) '({entrance money} {uncountable})) (new-knext-type {entrance money} {uncountable}) (new-knext-type {entrance fee} {uncountable}) (new-statement {entrance money} {consists of} {entrance fee}) (new-knext-eq '({loss} {thing}) '({red ink} {thing})) (new-knext-type {loss} {countable}) (new-knext-type {gain} {countable}) (new-is-not-a {loss} {gain}) (new-knext-eq '({losses} {thing}) '({losings} {thing})) (new-knext-type {losings} {uncountable}) (new-knext-type {winnings} {uncountable}) (new-is-not-a {losings} {winnings}) (new-knext-eq '({amount} {thing}) '({sum} {thing})) (new-knext-eq '({amount of money} {thing}) '({sum} {thing})) (new-knext-is-a '({investment} {countable}) '({investment funds} {uncountable})) (new-knext-type {investment funds} {uncountable}) (new-knext-type {investment} {uncountable}) (new-statement {investment funds} {consists of} {investment}) (new-knext-eq '({stake} {thing}) '({bet} {thing})) (new-knext-eq '({wager} {thing}) '({bet} {thing})) (new-knext-type {stakes} {uncountable}) (new-knext-type {bet} {uncountable}) (new-statement {stakes} {consists of} {bet}) (new-knext-is-a '({bet} {countable}) '({stakes} {uncountable})) (new-knext-eq '({protection} {thing}) '({security} {thing})) (new-knext-eq '({security} {thing}) '({surety} {thing})) (new-knext-eq '({deposit} {thing}) '({down payment} {thing})) (new-knext-eq '({bond} {thing}) '({bail} {thing})) (new-knext-eq '({wealth} {thing}) '({riches} {thing})) (new-knext-type {accounting} {uncountable}) (new-knext-type {account statement} {uncountable}) (new-statement {accounting} {consists of} {account statement}) (new-knext-is-a '({account statement} {countable}) '({accounting} {uncountable})) (new-knext-eq '({finances} {thing}) '({funds} {thing})) (new-knext-eq '({monetary resource} {thing}) '({funds} {thing})) (new-knext-eq '({cash in hand} {thing}) '({funds} {thing})) (new-knext-eq '({pecuniary resource} {thing}) '({funds} {thing})) (new-knext-eq '({keep} {thing}) '({bread and butter} {thing})) (new-knext-eq '({sustenance} {thing}) '({bread and butter} {thing})) (new-knext-eq '({support} {thing}) '({livelihood} {thing})) (new-knext-eq '({living} {thing}) '({livelihood} {thing})) (new-knext-is-a '({livelihood} {countable}) '({bread and butter} {uncountable})) (new-knext-type {bread and butter} {uncountable}) (new-knext-type {livelihood} {uncountable}) (new-statement {bread and butter} {consists of} {livelihood}) (new-knext-eq '({funding} {thing}) '({financial support} {thing})) (new-knext-eq '({backing} {thing}) '({financial support} {thing})) (new-knext-eq '({financial backing} {thing}) '({financial support} {thing})) (new-knext-eq '({stock} {thing}) '({store} {thing})) (new-knext-eq '({fund} {thing}) '({store} {thing})) (new-knext-eq '({reserve} {thing}) '({stockpile} {thing})) (new-knext-eq '({backlog} {thing}) '({stockpile} {thing})) (new-knext-eq '({monetary system} {thing}) '({medium of exchange} {thing})) (new-knext-eq '({credit} {thing}) '({deferred payment} {thing})) (new-knext-type {credit} {uncountable}) (new-knext-type {cash} {uncountable}) (new-is-not-a {credit} {cash}) (new-knext-eq '({charge card} {thing}) '({credit card} {thing})) (new-knext-eq '({charge plate} {thing}) '({credit card} {thing})) (add-english-names (list {check} {cheque}) (list "check" "cheque")) (new-knext-eq '({boodle} {thing}) '({dinero} {thing})) (new-knext-eq '({bread} {thing}) '({dinero} {thing})) (new-knext-eq '({cabbage} {thing}) '({dinero} {thing})) (new-knext-eq '({dough} {thing}) '({dinero} {thing})) (new-knext-eq '({gelt} {thing}) '({dinero} {thing})) (new-knext-eq '({kale} {thing}) '({dinero} {thing})) (new-knext-eq '({lettuce} {thing}) '({dinero} {thing})) (new-knext-eq '({lolly} {thing}) '({dinero} {thing})) (new-knext-eq '({lucre} {thing}) '({dinero} {thing})) (new-knext-eq '({loot} {thing}) '({dinero} {thing})) (new-knext-eq '({moolah} {thing}) '({dinero} {thing})) (new-knext-eq '({pelf} {thing}) '({dinero} {thing})) (new-knext-eq '({scratch} {thing}) '({dinero} {thing})) (new-knext-eq '({simoleons} {thing}) '({dinero} {thing})) (new-knext-eq '({sugar} {thing}) '({dinero} {thing})) (new-knext-eq '({wampum} {thing}) '({dinero} {thing})) (new-knext-eq '({clams} {thing}) '({shekels} {thing})) (new-knext-is-a '({dinero} {uncountable}) '({shekels} {uncountable})) (new-knext-is-a '({shekels} {uncountable}) '({dinero} {uncountable})) (new-knext-is-a '({cash} {uncountable}) '({hard currency} {uncountable})) (new-knext-is-a '({hard currency} {uncountable}) '({cash} {uncountable})) (new-knext-eq '({mintage} {thing}) '({coinage} {thing})) (new-knext-eq '({specie} {thing}) '({coinage} {thing})) (new-knext-eq '({metal money} {thing}) '({coinage} {thing})) (new-knext-eq '({cent} {thing}) '({penny} {thing})) (new-knext-eq '({centime} {thing}) '({penny} {thing})) (new-knext-eq '({bill} {thing}) '({government note} {thing})) (new-knext-eq '({bank bill} {thing}) '({government note} {thing})) (new-knext-eq '({bank note} {thing}) '({government note} {thing})) (new-knext-eq '({banknote} {thing}) '({government note} {thing})) (new-knext-eq '({federal reserve note} {thing}) '({government note} {thing})) (new-knext-eq '({greenback} {thing}) '({government note} {thing})) (new-knext-eq '({buck} {thing}) '({dollar bill} {thing})) (new-knext-eq '({clam} {thing}) '({dollar bill} {thing})) (new-knext-eq '({method of accounting} {thing}) '({accounting system} {thing})) (new-knext-type {accounting} {uncountable}) (new-knext-type {accounting system} {uncountable}) (new-statement {accounting} {consists of} {accounting system}) (new-knext-is-a '({accounting system} {countable}) '({accounting} {uncountable})) (new-knext-eq '({paysheet} {thing}) '({payroll} {thing})) (new-knext-eq '({soaking up} {thing}) '({absorption} {thing})) (new-knext-eq '({accumulation} {thing}) '({accretion} {thing})) (new-knext-eq '({absorption} {thing}) '({assimilation} {thing})) (new-knext-type {blooming} {uncountable}) (new-knext-type {bloom} {uncountable}) (new-statement {blooming} {consists of} {bloom}) (new-knext-is-a '({bloom} {countable}) '({blooming} {uncountable})) (new-knext-eq '({flowering} {thing}) '({blossoming} {thing})) (new-knext-eq '({florescence} {thing}) '({blossoming} {thing})) (new-knext-eq '({inflorescence} {thing}) '({blossoming} {thing})) (new-knext-eq '({anthesis} {thing}) '({blossoming} {thing})) (new-knext-eq '({efflorescence} {thing}) '({blossoming} {thing})) (new-knext-eq '({body process} {thing}) '({bodily process} {thing})) (new-knext-eq '({bodily function} {thing}) '({bodily process} {thing})) (new-knext-eq '({activity} {thing}) '({bodily process} {thing})) (new-knext-eq '({burning} {thing}) '({combustion} {thing})) (new-knext-eq '({use} {thing}) '({economic consumption} {thing})) (new-knext-eq '({use of goods and services} {thing}) '({economic consumption} {thing})) (new-knext-type {economic consumption} {uncountable}) (new-knext-type {usance} {uncountable}) (new-statement {economic consumption} {consists of} {usance}) (new-knext-is-a '({usance} {countable}) '({economic consumption} {uncountable})) (new-knext-eq '({recuperation} {thing}) '({convalescence} {thing})) (new-knext-eq '({recovery} {thing}) '({convalescence} {thing})) (new-knext-eq '({chilling} {thing}) '({cooling} {thing})) (new-knext-eq '({temperature reduction} {thing}) '({cooling} {thing})) (new-knext-eq '({decay} {thing}) '({disintegration} {thing})) (new-knext-is-a '({radioactive decay} {countable}) '({disintegration} {uncountable})) (new-knext-type {disintegration} {uncountable}) (new-knext-type {radioactive decay} {uncountable}) (new-statement {disintegration} {consists of} {radioactive decay}) (new-knext-eq '({diminution} {thing}) '({decline} {thing})) (new-knext-eq '({decrement} {thing}) '({decrease} {thing})) (new-knext-type {decrease} {countable}) (new-knext-type {increase} {countable}) (new-is-not-a {decrease} {increase}) (new-knext-type {decrement} {countable}) (new-knext-type {increment} {countable}) (new-is-not-a {decrement} {increment}) (new-knext-type {deflation} {uncountable}) (new-knext-type {inflation} {countable}) (new-is-not-a {deflation} {inflation}) (new-knext-type {deflation} {uncountable}) (new-knext-type {disinflation} {countable}) (new-is-not-a {deflation} {disinflation}) (new-knext-eq '({devolution} {thing}) '({degeneration} {thing})) (new-knext-type {devolution} {uncountable}) (new-knext-type {evolution} {uncountable}) (new-is-not-a {devolution} {evolution}) (new-knext-eq '({desiccation} {thing}) '({drying up} {thing})) (new-knext-eq '({evaporation} {thing}) '({drying up} {thing})) (new-knext-is-a '({dehydration} {countable}) '({drying up} {uncountable})) (new-knext-type {drying up} {uncountable}) (new-knext-type {dehydration} {uncountable}) (new-statement {drying up} {consists of} {dehydration}) (new-knext-type {demand} {countable}) (new-knext-type {supply} {countable}) (new-is-not-a {demand} {supply}) (new-knext-eq '({declension} {thing}) '({decline in quality} {thing})) (new-knext-eq '({worsening} {thing}) '({decline in quality} {thing})) (new-knext-type {deterioration} {uncountable}) (new-knext-type {decline in quality} {uncountable}) (new-statement {deterioration} {consists of} {decline in quality}) (new-knext-is-a '({decline in quality} {countable}) '({deterioration} {uncountable})) (new-knext-eq '({development} {thing}) '({developing} {thing})) (new-knext-eq '({development} {thing}) '({evolution} {thing})) (new-knext-type {evolution} {uncountable}) (new-knext-type {devolution} {uncountable}) (new-is-not-a {evolution} {devolution}) (new-knext-eq '({ruin} {thing}) '({dilapidation} {thing})) (new-knext-eq '({emission} {thing}) '({discharge} {thing})) (new-knext-type {discharge} {uncountable}) (new-knext-type {expelling} {uncountable}) (new-statement {discharge} {consists of} {expelling}) (new-knext-is-a '({expelling} {countable}) '({discharge} {uncountable})) (new-knext-type {disinflation} {countable}) (new-knext-type {inflation} {countable}) (new-is-not-a {disinflation} {inflation}) (new-knext-type {disinflation} {countable}) (new-knext-type {deflation} {uncountable}) (new-is-not-a {disinflation} {deflation}) (new-knext-eq '({disintegration} {thing}) '({dissolution} {thing})) (new-knext-eq '({dissolution} {thing}) '({dissolving} {thing})) (new-knext-eq '({eating away} {thing}) '({erosion} {thing})) (new-knext-eq '({wearing} {thing}) '({erosion} {thing})) (new-knext-eq '({wearing away} {thing}) '({erosion} {thing})) (new-knext-is-a '({erosion} {countable}) '({eroding} {uncountable})) (new-knext-type {eroding} {uncountable}) (new-knext-type {erosion} {uncountable}) (new-statement {eroding} {consists of} {erosion}) (new-knext-eq '({evolution} {thing}) '({phylogeny} {thing})) (new-knext-eq '({phylogenesis} {thing}) '({phylogeny} {thing})) (new-knext-type {organic evolution} {uncountable}) (new-knext-type {phylogeny} {uncountable}) (new-statement {organic evolution} {consists of} {phylogeny}) (new-knext-is-a '({phylogeny} {countable}) '({organic evolution} {uncountable})) (new-knext-eq '({fire} {thing}) '({flaming} {thing})) (new-knext-is-a '({flame} {countable}) '({flaming} {uncountable})) (new-knext-type {flaming} {uncountable}) (new-knext-type {flame} {uncountable}) (new-statement {flaming} {consists of} {flame}) (new-knext-eq '({freezing} {thing}) '({freeze} {thing})) (new-knext-eq '({geologic process} {thing}) '({geological process} {thing})) (new-knext-eq '({growing} {thing}) '({growth} {thing})) (new-knext-eq '({maturation} {thing}) '({growth} {thing})) (new-knext-eq '({development} {thing}) '({growth} {thing})) (new-knext-eq '({ontogeny} {thing}) '({growth} {thing})) (new-knext-eq '({ontogenesis} {thing}) '({growth} {thing})) (new-knext-type {development} {uncountable}) (new-knext-type {nondevelopment} {uncountable}) (new-is-not-a {development} {nondevelopment}) (new-knext-eq '({hardening} {thing}) '({solidifying} {thing})) (new-knext-eq '({solidification} {thing}) '({solidifying} {thing})) (new-knext-eq '({set} {thing}) '({solidifying} {thing})) (new-knext-is-a '({solidifying} {countable}) '({curing} {uncountable})) (new-knext-type {curing} {uncountable}) (new-knext-type {solidifying} {uncountable}) (new-statement {curing} {consists of} {solidifying}) (new-knext-eq '({warming} {thing}) '({heating} {thing})) (new-knext-eq '({increase} {thing}) '({increment} {thing})) (new-knext-eq '({growth} {thing}) '({increment} {thing})) (new-knext-type {increase} {countable}) (new-knext-type {decrease} {countable}) (new-is-not-a {increase} {decrease}) (new-knext-type {increment} {countable}) (new-knext-type {decrement} {countable}) (new-is-not-a {increment} {decrement}) (new-knext-eq '({rising prices} {thing}) '({inflation} {thing})) (new-knext-type {inflation} {countable}) (new-knext-type {disinflation} {countable}) (new-is-not-a {inflation} {disinflation}) (new-knext-type {inflation} {countable}) (new-knext-type {deflation} {uncountable}) (new-is-not-a {inflation} {deflation}) (new-knext-eq '({iteration} {thing}) '({looping} {thing})) (new-knext-eq '({loop} {thing}) '({iteration} {thing})) (new-knext-eq '({lachrymation} {thing}) '({lacrimation} {thing})) (new-knext-eq '({tearing} {thing}) '({lacrimation} {thing})) (new-knext-eq '({watering} {thing}) '({lacrimation} {thing})) (add-english-names (list {materialization} {materialisation} {materialization} {materialisation}) (list "materialization" "materialisation" "materialization" "materialisation")) (new-knext-eq '({materialization} {thing}) '({materialization} {thing})) (new-knext-eq '({ripening} {thing}) '({maturation} {thing})) (new-knext-eq '({maturement} {thing}) '({maturation} {thing})) (new-knext-eq '({molting} {thing}) '({molt} {thing})) (add-english-names (list {molt} {moult}) (list "molt" "moult")) (add-english-names (list {molting} {moulting}) (list "molting" "moulting")) (new-knext-eq '({molting} {thing}) '({molt} {thing})) (new-knext-eq '({ecdysis} {thing}) '({molt} {thing})) (new-knext-eq '({natural action} {thing}) '({natural process} {thing})) (new-knext-eq '({action} {thing}) '({natural process} {thing})) (new-knext-eq '({activity} {thing}) '({natural process} {thing})) (new-knext-type {nondevelopment} {uncountable}) (new-knext-type {development} {uncountable}) (new-is-not-a {nondevelopment} {development}) (new-knext-eq '({operation} {thing}) '({functioning} {thing})) (new-knext-eq '({performance} {thing}) '({functioning} {thing})) (new-knext-eq '({biological process} {thing}) '({organic process} {thing})) (new-knext-eq '({birth} {thing}) '({parturition} {thing})) (new-knext-eq '({birthing} {thing}) '({parturition} {thing})) (new-knext-type {parturition} {uncountable}) (new-knext-type {giving birth} {uncountable}) (new-statement {parturition} {consists of} {giving birth}) (new-knext-is-a '({giving birth} {countable}) '({parturition} {uncountable})) (new-knext-type {proliferation} {uncountable}) (new-knext-type {nonproliferation} {uncountable}) (new-is-not-a {proliferation} {nonproliferation}) (new-knext-eq '({radiation} {thing}) '({radioactivity} {thing})) (new-knext-eq '({reduction} {thing}) '({reducing} {thing})) (new-knext-eq '({search} {thing}) '({lookup} {thing})) (new-knext-eq '({sloughing} {thing}) '({shedding} {thing})) (new-knext-eq '({slack} {thing}) '({slump} {thing})) (new-knext-eq '({falloff} {thing}) '({slump} {thing})) (new-knext-eq '({falling off} {thing}) '({slump} {thing})) (new-knext-eq '({sort} {thing}) '({sorting} {thing})) (new-knext-eq '({stiffening} {thing}) '({rigidifying} {thing})) (new-knext-eq '({rigidification} {thing}) '({rigidifying} {thing})) (new-knext-type {supply} {countable}) (new-knext-type {demand} {countable}) (new-is-not-a {supply} {demand}) (new-knext-eq '({natural selection} {thing}) '({survival of the fittest} {thing})) (new-knext-type {survival of the fittest} {uncountable}) (new-knext-type {selection} {uncountable}) (new-statement {survival of the fittest} {consists of} {selection}) (new-knext-is-a '({selection} {countable}) '({survival of the fittest} {uncountable})) (new-knext-eq '({melt} {thing}) '({thaw} {thing})) (new-knext-eq '({melting} {thing}) '({thaw} {thing})) (new-knext-is-a '({thaw} {countable}) '({thawing} {uncountable})) (new-knext-type {thawing} {uncountable}) (new-knext-type {thaw} {uncountable}) (new-statement {thawing} {consists of} {thaw}) (add-english-names (list {vaporization} {vaporisation} {vaporization} {vaporisation}) (list "vaporization" "vaporisation" "vaporization" "vaporisation")) (new-knext-eq '({vaporization} {thing}) '({vaporization} {thing})) (add-english-names (list {vaporization} {vaporisation} {vaporization} {vaporisation}) (list "vaporization" "vaporisation" "vaporization" "vaporisation")) (new-knext-eq '({vapor} {thing}) '({vaporization} {thing})) (add-english-names (list {vapor} {vapour}) (list "vapor" "vapour")) (add-english-names (list {vaporization} {vaporisation} {vaporization} {vaporisation}) (list "vaporization" "vaporisation" "vaporization" "vaporisation")) (new-knext-eq '({vapor} {thing}) '({vaporization} {thing})) (add-english-names (list {vaporization} {vaporisation} {vaporization} {vaporisation}) (list "vaporization" "vaporisation" "vaporization" "vaporisation")) (add-english-names (list {vaporization} {vaporisation} {vaporization} {vaporisation}) (list "vaporization" "vaporisation" "vaporization" "vaporisation")) (new-knext-type {evaporation} {uncountable}) (new-knext-type {vaporization} {uncountable}) (new-statement {evaporation} {consists of} {vaporization}) (new-knext-eq '({fermentation} {thing}) '({zymolysis} {thing})) (new-knext-eq '({fermenting} {thing}) '({zymolysis} {thing})) (new-knext-eq '({ferment} {thing}) '({zymosis} {thing})) (new-knext-is-a '({zymosis} {countable}) '({zymolysis} {uncountable})) (new-knext-type {zymolysis} {uncountable}) (new-knext-type {zymosis} {uncountable}) (new-statement {zymolysis} {consists of} {zymosis}) (new-knext-eq '({fundamental measure} {thing}) '({fundamental quantity} {thing})) (new-knext-eq '({metric} {thing}) '({system of measurement} {thing})) (new-knext-is-a '({enough} {uncountable}) '({sufficiency} {countable})) (new-knext-is-a '({sufficiency} {countable}) '({enough} {uncountable})) (new-knext-eq '({square measure} {thing}) '({area unit} {thing})) (new-knext-eq '({linear measure} {thing}) '({linear unit} {thing})) (new-knext-eq '({nibble} {thing}) '({nybble} {thing})) (new-knext-eq '({foot} {thing}) '({ft} {thing})) (new-knext-eq '({pace} {thing}) '({yard} {thing})) (new-knext-eq '({lb} {thing}) '({pound} {thing})) (new-knext-eq '({net ton} {thing}) '({short ton} {thing})) (new-knext-eq '({gramme} {thing}) '({gram} {thing})) (new-knext-eq '({gm} {thing}) '({gram} {thing})) (new-knext-eq '({decagram} {thing}) '({dekagram} {thing})) (new-knext-eq '({dkg} {thing}) '({dekagram} {thing})) (new-knext-eq '({dag} {thing}) '({dekagram} {thing})) (new-knext-eq '({kg} {thing}) '({kilogram} {thing})) (new-knext-eq '({difference} {thing}) '({remainder} {thing})) (new-knext-eq '({square} {thing}) '({second power} {thing})) (new-knext-eq '({zippo} {thing}) '({zilch} {thing})) (new-knext-eq '({nil} {thing}) '({nothing} {thing})) (new-knext-eq '({nix} {thing}) '({nothing} {thing})) (new-knext-eq '({nada} {thing}) '({nothing} {thing})) (new-knext-eq '({null} {thing}) '({nothing} {thing})) (new-knext-eq '({aught} {thing}) '({nothing} {thing})) (new-knext-eq '({cipher} {thing}) '({nothing} {thing})) (new-knext-eq '({cypher} {thing}) '({nothing} {thing})) (new-knext-eq '({goose egg} {thing}) '({nothing} {thing})) (new-knext-eq '({naught} {thing}) '({nothing} {thing})) (new-knext-eq '({zero} {thing}) '({nothing} {thing})) (new-knext-eq '({zip} {thing}) '({nothing} {thing})) (new-knext-is-a '({nothing} {countable}) '({zilch} {uncountable})) (new-knext-is-a '({zilch} {uncountable}) '({nothing} {countable})) (new-knext-eq '({zero} {thing}) '({nought} {thing})) (new-knext-eq '({cipher} {thing}) '({nought} {thing})) (new-knext-eq '({cypher} {thing}) '({nought} {thing})) (new-knext-eq '({xii} {thing}) '({twelve} {thing})) (new-knext-eq '({dozen} {thing}) '({twelve} {thing})) (new-knext-eq '({addition} {thing}) '({increase} {thing})) (new-knext-eq '({gain} {thing}) '({increase} {thing})) (new-knext-eq '({footstep} {thing}) '({pace} {thing})) (new-knext-eq '({step} {thing}) '({pace} {thing})) (new-knext-eq '({stride} {thing}) '({pace} {thing})) (new-knext-eq '({large indefinite amount} {thing}) '({large indefinite quantity} {thing})) (new-knext-eq '({limit} {thing}) '({limitation} {thing})) (new-knext-eq '({point of accumulation} {thing}) '({limit point} {thing})) (new-knext-eq '({yield} {thing}) '({output} {thing})) (new-knext-eq '({production} {thing}) '({output} {thing})) (new-knext-eq '({pick} {thing}) '({picking} {thing})) (new-knext-eq '({small indefinite amount} {thing}) '({small indefinite quantity} {thing})) (new-knext-eq '({splash} {thing}) '({dab} {thing})) (new-knext-eq '({splatter} {thing}) '({dab} {thing})) (new-knext-eq '({sprinkling} {thing}) '({scattering} {thing})) (new-knext-eq '({lower limit} {thing}) '({minimum} {thing})) (new-knext-type {minimum} {countable}) (new-knext-type {maximum} {countable}) (new-is-not-a {minimum} {maximum}) (new-knext-eq '({basket} {thing}) '({basketful} {thing})) (new-knext-eq '({bottle} {thing}) '({bottleful} {thing})) (new-knext-eq '({cup} {thing}) '({cupful} {thing})) (new-knext-eq '({dish} {thing}) '({dishful} {thing})) (new-knext-eq '({pot} {thing}) '({potful} {thing})) (new-knext-eq '({drop} {thing}) '({drib} {thing})) (new-knext-eq '({loading} {thing}) '({load} {thing})) (new-knext-eq '({upper limit} {thing}) '({maximum} {thing})) (new-knext-type {maximum} {countable}) (new-knext-type {minimum} {countable}) (new-is-not-a {maximum} {minimum}) (new-knext-eq '({sea} {thing}) '({ocean} {thing})) (new-knext-eq '({way} {thing}) '({elbow room} {thing})) (new-knext-eq '({headway} {thing}) '({headroom} {thing})) (new-knext-eq '({clearance} {thing}) '({headroom} {thing})) (new-knext-eq '({content} {thing}) '({capacity} {thing})) (new-knext-eq '({map} {thing}) '({function} {thing})) (new-knext-eq '({mapping} {thing}) '({function} {thing})) (add-english-names (list {connection} {connexion} {connection} {connexion}) (list "connection" "connexion" "connection" "connexion")) (new-knext-eq '({connection} {thing}) '({connection} {thing})) (new-knext-type {connectedness} {uncountable}) (new-knext-type {unconnectedness} {uncountable}) (new-is-not-a {connectedness} {unconnectedness}) (new-knext-is-a '({connection} {countable}) '({connectedness} {uncountable})) (new-knext-type {connectedness} {uncountable}) (new-knext-type {connection} {uncountable}) (new-statement {connectedness} {consists of} {connection}) (new-knext-eq '({bond} {thing}) '({alliance} {thing})) (new-knext-type {unconnectedness} {uncountable}) (new-knext-type {connectedness} {uncountable}) (new-is-not-a {unconnectedness} {connectedness}) (new-knext-eq '({relevancy} {thing}) '({relevance} {thing})) (new-knext-type {relevance} {uncountable}) (new-knext-type {irrelevance} {uncountable}) (new-is-not-a {relevance} {irrelevance}) (new-knext-type {relatedness} {countable}) (new-knext-type {unrelatedness} {uncountable}) (new-is-not-a {relatedness} {unrelatedness}) (new-knext-eq '({irrelevancy} {thing}) '({irrelevance} {thing})) (new-knext-type {irrelevance} {uncountable}) (new-knext-type {relevance} {uncountable}) (new-is-not-a {irrelevance} {relevance}) (new-knext-type {unrelatedness} {countable}) (new-knext-type {relatedness} {countable}) (new-is-not-a {unrelatedness} {relatedness}) (new-knext-eq '({particular} {thing}) '({detail} {thing})) (new-knext-eq '({item} {thing}) '({detail} {thing})) (new-knext-eq '({high spot} {thing}) '({highlight} {thing})) (new-knext-eq '({balance} {thing}) '({remainder} {thing})) (new-knext-eq '({residual} {thing}) '({remainder} {thing})) (new-knext-eq '({residue} {thing}) '({remainder} {thing})) (new-knext-eq '({residuum} {thing}) '({remainder} {thing})) (new-knext-eq '({rest} {thing}) '({remainder} {thing})) (new-knext-eq '({affinity} {thing}) '({kinship} {thing})) (new-knext-eq '({kinship} {thing}) '({family relationship} {thing})) (new-knext-eq '({lineage} {thing}) '({line of descent} {thing})) (new-knext-eq '({filiation} {thing}) '({line of descent} {thing})) (new-knext-eq '({birth} {thing}) '({parentage} {thing})) (new-knext-eq '({quantitative relation} {thing}) '({magnitude relation} {thing})) (new-knext-eq '({percent} {thing}) '({percentage} {thing})) (new-knext-eq '({per centum} {thing}) '({percentage} {thing})) (new-knext-eq '({pct} {thing}) '({percentage} {thing})) (new-knext-eq '({f number} {thing}) '({focal ratio} {thing})) (new-knext-eq '({stop number} {thing}) '({focal ratio} {thing})) (new-knext-eq '({speed} {thing}) '({focal ratio} {thing})) (new-knext-type {due north} {uncountable}) (new-knext-type {northward} {uncountable}) (new-statement {due north} {consists of} {northward}) (new-knext-is-a '({northward} {countable}) '({due north} {uncountable})) (new-knext-eq '({compass north} {thing}) '({magnetic north} {thing})) (new-knext-eq '({southward} {thing}) '({due south} {thing})) (new-knext-eq '({westward} {thing}) '({due west} {thing})) (new-knext-eq '({altitude} {thing}) '({el} {thing})) (new-knext-eq '({alt} {thing}) '({el} {thing})) (new-knext-eq '({political relation} {thing}) '({politics} {thing})) (new-knext-eq '({reciprocity} {thing}) '({reciprocality} {thing})) (new-knext-eq '({correlativity} {thing}) '({correlation} {thing})) (new-knext-eq '({interrelationship} {thing}) '({interrelation} {thing})) (new-knext-eq '({interrelatedness} {thing}) '({interrelation} {thing})) (new-knext-eq '({graduated table} {thing}) '({scale} {thing})) (new-knext-eq '({ordered series} {thing}) '({scale} {thing})) (new-knext-is-a '({opposition} {countable}) '({oppositeness} {uncountable})) (new-knext-type {oppositeness} {uncountable}) (new-knext-type {opposition} {uncountable}) (new-statement {oppositeness} {consists of} {opposition}) (new-knext-type {contrast} {uncountable}) (new-knext-type {direct contrast} {uncountable}) (new-statement {contrast} {consists of} {direct contrast}) (new-knext-is-a '({direct contrast} {countable}) '({contrast} {uncountable})) (new-knext-eq '({contrary} {thing}) '({reverse} {thing})) (new-knext-eq '({opposite} {thing}) '({reverse} {thing})) (new-knext-eq '({opposite} {thing}) '({inverse} {thing})) (new-knext-eq '({conditional relation} {thing}) '({logical implication} {thing})) (new-knext-eq '({sheet} {thing}) '({plane} {thing})) (new-knext-eq '({convexity} {thing}) '({convex shape} {thing})) (new-knext-eq '({angularity} {thing}) '({angular shape} {thing})) (new-knext-eq '({concavity} {thing}) '({concave shape} {thing})) (new-knext-eq '({incurvation} {thing}) '({concave shape} {thing})) (new-knext-eq '({incurvature} {thing}) '({concave shape} {thing})) (new-knext-eq '({distortion} {thing}) '({distorted shape} {thing})) (new-knext-type {curve} {countable}) (new-knext-type {straight line} {countable}) (new-is-not-a {curve} {straight line}) (new-knext-eq '({crook} {thing}) '({bend} {thing})) (new-knext-eq '({twist} {thing}) '({bend} {thing})) (new-knext-eq '({turn} {thing}) '({bend} {thing})) (new-knext-type {straight line} {countable}) (new-knext-type {curve} {countable}) (new-is-not-a {straight line} {curve}) (add-english-names (list {connection} {connexion} {connection} {connexion}) (list "connection" "connexion" "connection" "connexion")) (new-knext-eq '({connection} {thing}) '({connection} {thing})) (add-english-names (list {connection} {connexion} {connection} {connexion}) (list "connection" "connexion" "connection" "connexion")) (new-knext-eq '({link} {thing}) '({connection} {thing})) (new-knext-eq '({recession} {thing}) '({recess} {thing})) (new-knext-eq '({niche} {thing}) '({recess} {thing})) (new-knext-eq '({corner} {thing}) '({recess} {thing})) (new-knext-eq '({disc} {thing}) '({disk} {thing})) (new-knext-eq '({saucer} {thing}) '({disk} {thing})) (new-knext-eq '({coil} {thing}) '({whorl} {thing})) (new-knext-eq '({roll} {thing}) '({whorl} {thing})) (new-knext-eq '({curl} {thing}) '({whorl} {thing})) (new-knext-eq '({curlicue} {thing}) '({whorl} {thing})) (new-knext-eq '({ringlet} {thing}) '({whorl} {thing})) (new-knext-eq '({gyre} {thing}) '({whorl} {thing})) (new-knext-eq '({scroll} {thing}) '({whorl} {thing})) (new-knext-eq '({oval} {thing}) '({ellipse} {thing})) (new-knext-eq '({trigon} {thing}) '({triangle} {thing})) (new-knext-eq '({trilateral} {thing}) '({triangle} {thing})) (new-knext-eq '({magnetic dip} {thing}) '({angle of dip} {thing})) (new-knext-eq '({magnetic inclination} {thing}) '({angle of dip} {thing})) (new-knext-eq '({inclination} {thing}) '({angle of dip} {thing})) (new-knext-eq '({bump} {thing}) '({bulge} {thing})) (new-knext-eq '({hump} {thing}) '({bulge} {thing})) (new-knext-eq '({swelling} {thing}) '({bulge} {thing})) (new-knext-eq '({gibbosity} {thing}) '({bulge} {thing})) (new-knext-eq '({jut} {thing}) '({bulge} {thing})) (new-knext-eq '({prominence} {thing}) '({bulge} {thing})) (new-knext-eq '({protuberance} {thing}) '({bulge} {thing})) (new-knext-eq '({protrusion} {thing}) '({bulge} {thing})) (new-knext-eq '({extrusion} {thing}) '({bulge} {thing})) (new-knext-eq '({excrescence} {thing}) '({bulge} {thing})) (new-knext-eq '({bow} {thing}) '({arc} {thing})) (new-knext-eq '({depression} {thing}) '({imprint} {thing})) (new-knext-eq '({impression} {thing}) '({imprint} {thing})) (new-knext-eq '({balance} {thing}) '({equipoise} {thing})) (new-knext-eq '({equilibrium} {thing}) '({equipoise} {thing})) (new-knext-eq '({counterbalance} {thing}) '({equipoise} {thing})) (new-knext-eq '({ball} {thing}) '({globe} {thing})) (new-knext-eq '({orb} {thing}) '({globe} {thing})) (new-knext-eq '({drum} {thing}) '({barrel} {thing})) (new-knext-eq '({tube} {thing}) '({pipe} {thing})) (new-knext-eq '({bead} {thing}) '({drop} {thing})) (new-knext-eq '({pearl} {thing}) '({drop} {thing})) (new-knext-eq '({point} {thing}) '({tip} {thing})) (new-knext-eq '({peak} {thing}) '({tip} {thing})) (new-knext-eq '({boundary} {thing}) '({bound} {thing})) (new-knext-eq '({edge} {thing}) '({bound} {thing})) (new-knext-eq '({threshold} {thing}) '({brink} {thing})) (new-knext-eq '({verge} {thing}) '({brink} {thing})) (new-knext-eq '({scratch} {thing}) '({incision} {thing})) (new-knext-eq '({prick} {thing}) '({incision} {thing})) (new-knext-eq '({slit} {thing}) '({incision} {thing})) (new-knext-eq '({dent} {thing}) '({incision} {thing})) (new-knext-eq '({incisura} {thing}) '({incisure} {thing})) (new-knext-eq '({furrow} {thing}) '({wrinkle} {thing})) (new-knext-eq '({crease} {thing}) '({wrinkle} {thing})) (new-knext-eq '({crinkle} {thing}) '({wrinkle} {thing})) (new-knext-eq '({seam} {thing}) '({wrinkle} {thing})) (new-knext-eq '({cranny} {thing}) '({crevice} {thing})) (new-knext-eq '({crack} {thing}) '({crevice} {thing})) (new-knext-eq '({fissure} {thing}) '({crevice} {thing})) (new-knext-eq '({chap} {thing}) '({crevice} {thing})) (new-knext-eq '({crease} {thing}) '({fold} {thing})) (new-knext-eq '({plication} {thing}) '({fold} {thing})) (new-knext-eq '({flexure} {thing}) '({fold} {thing})) (new-knext-eq '({crimp} {thing}) '({fold} {thing})) (new-knext-eq '({bend} {thing}) '({fold} {thing})) (new-knext-eq '({vacancy} {thing}) '({void} {thing})) (new-knext-eq '({vacuum} {thing}) '({void} {thing})) (new-knext-is-a '({void} {countable}) '({emptiness} {uncountable})) (new-knext-type {emptiness} {uncountable}) (new-knext-type {void} {uncountable}) (new-statement {emptiness} {consists of} {void}) (new-knext-eq '({articulation} {thing}) '({join} {thing})) (new-knext-eq '({juncture} {thing}) '({join} {thing})) (new-knext-eq '({junction} {thing}) '({join} {thing})) (new-knext-eq '({point} {thing}) '({dot} {thing})) (new-knext-eq '({cast} {thing}) '({mold} {thing})) (add-english-names (list {mold} {mould}) (list "mold" "mould")) (new-knext-eq '({stamp} {thing}) '({mold} {thing})) (new-knext-eq '({block} {thing}) '({cube} {thing})) (new-knext-eq '({status} {thing}) '({condition} {thing})) (new-knext-eq '({involvement} {thing}) '({participation} {thing})) (add-english-names (list {regularization} {regularisation} {regularization} {regularisation}) (list "regularization" "regularisation" "regularization" "regularisation")) (new-knext-eq '({regularization} {thing}) '({regularization} {thing})) (new-knext-eq '({state of affairs} {thing}) '({situation} {thing})) (new-knext-eq '({account} {thing}) '({business relationship} {thing})) (new-knext-eq '({company} {thing}) '({companionship} {thing})) (new-knext-eq '({fellowship} {thing}) '({companionship} {thing})) (new-knext-eq '({society} {thing}) '({companionship} {thing})) (new-knext-eq '({trust} {thing}) '({confidence} {thing})) (new-knext-is-a '({acquaintance} {countable}) '({acquaintanceship} {uncountable})) (new-knext-type {acquaintanceship} {uncountable}) (new-knext-type {acquaintance} {uncountable}) (new-statement {acquaintanceship} {consists of} {acquaintance}) (new-knext-eq '({association} {thing}) '({affiliation} {thing})) (new-knext-eq '({tie} {thing}) '({affiliation} {thing})) (new-knext-eq '({friendly relationship} {thing}) '({friendship} {thing})) (new-knext-eq '({romance} {thing}) '({love affair} {thing})) (new-knext-eq '({affair} {thing}) '({liaison} {thing})) (new-knext-eq '({affaire} {thing}) '({liaison} {thing})) (new-knext-eq '({intimacy} {thing}) '({liaison} {thing})) (new-knext-eq '({amour} {thing}) '({liaison} {thing})) (new-knext-is-a '({liaison} {countable}) '({involvement} {uncountable})) (new-knext-type {involvement} {uncountable}) (new-knext-type {liaison} {uncountable}) (new-statement {involvement} {consists of} {liaison}) (new-knext-type {equilibrium} {countable}) (new-knext-type {disequilibrium} {uncountable}) (new-is-not-a {equilibrium} {disequilibrium}) (new-knext-eq '({pass} {thing}) '({strait} {thing})) (new-knext-type {strait} {countable}) (new-knext-type {straits} {countable}) (new-statement {straits} {consists of} {strait}) (new-knext-type {straits} {uncountable}) (new-knext-type {strait} {uncountable}) (new-statement {straits} {consists of} {strait}) (new-knext-eq '({scene} {thing}) '({picture} {thing})) (new-knext-eq '({natural state} {thing}) '({wild} {thing})) (new-knext-eq '({state of nature} {thing}) '({wild} {thing})) (new-knext-eq '({level} {thing}) '({degree} {thing})) (new-knext-eq '({stage} {thing}) '({degree} {thing})) (new-knext-eq '({point} {thing}) '({degree} {thing})) (new-knext-eq '({height} {thing}) '({acme} {thing})) (new-knext-eq '({elevation} {thing}) '({acme} {thing})) (new-knext-eq '({peak} {thing}) '({acme} {thing})) (new-knext-eq '({pinnacle} {thing}) '({acme} {thing})) (new-knext-eq '({summit} {thing}) '({acme} {thing})) (new-knext-eq '({superlative} {thing}) '({acme} {thing})) (new-knext-eq '({meridian} {thing}) '({acme} {thing})) (new-knext-eq '({tiptop} {thing}) '({acme} {thing})) (new-knext-eq '({top} {thing}) '({acme} {thing})) (new-knext-eq '({end point} {thing}) '({resultant} {thing})) (new-knext-eq '({case} {thing}) '({event} {thing})) (new-knext-is-a '({office} {countable}) '({power} {uncountable})) (new-knext-type {power} {uncountable}) (new-knext-type {office} {uncountable}) (new-statement {power} {consists of} {office}) (new-knext-eq '({position} {thing}) '({status} {thing})) (new-knext-eq '({equality} {thing}) '({equivalence} {thing})) (new-knext-eq '({equation} {thing}) '({equivalence} {thing})) (new-knext-eq '({par} {thing}) '({equivalence} {thing})) (new-knext-eq '({social status} {thing}) '({social station} {thing})) (new-knext-eq '({social rank} {thing}) '({social station} {thing})) (new-knext-eq '({rank} {thing}) '({social station} {thing})) (new-knext-eq '({title} {thing}) '({championship} {thing})) (new-knext-eq '({priority} {thing}) '({precedency} {thing})) (new-knext-type {precedence} {uncountable}) (new-knext-type {precedency} {uncountable}) (new-statement {precedence} {consists of} {precedency}) (new-knext-is-a '({precedency} {countable}) '({precedence} {uncountable})) (new-knext-eq '({beingness} {thing}) '({being} {thing})) (new-knext-eq '({existence} {thing}) '({being} {thing})) (new-knext-eq '({face of the earth} {thing}) '({being} {thing})) (new-knext-type {being} {uncountable}) (new-knext-type {nonbeing} {uncountable}) (new-is-not-a {being} {nonbeing}) (new-knext-type {existence} {uncountable}) (new-knext-type {nonexistence} {uncountable}) (new-is-not-a {existence} {nonexistence}) (new-knext-eq '({reality} {thing}) '({realness} {thing})) (new-knext-eq '({realism} {thing}) '({realness} {thing})) (new-knext-type {reality} {uncountable}) (new-knext-type {unreality} {uncountable}) (new-is-not-a {reality} {unreality}) (new-knext-eq '({truth} {thing}) '({the true} {thing})) (new-knext-eq '({verity} {thing}) '({the true} {thing})) (new-knext-eq '({trueness} {thing}) '({the true} {thing})) (new-knext-type {truth} {uncountable}) (new-knext-type {falsity} {uncountable}) (new-is-not-a {truth} {falsity}) (new-knext-type {presence} {countable}) (new-knext-type {absence} {countable}) (new-is-not-a {presence} {absence}) (new-knext-type {nonbeing} {uncountable}) (new-knext-type {being} {uncountable}) (new-is-not-a {nonbeing} {being}) (new-knext-eq '({nonentity} {thing}) '({nonexistence} {thing})) (new-knext-type {nonexistence} {uncountable}) (new-knext-type {existence} {uncountable}) (new-is-not-a {nonexistence} {existence}) (new-knext-type {absence} {countable}) (new-knext-type {presence} {uncountable}) (new-is-not-a {absence} {presence}) (new-knext-eq '({life} {thing}) '({animation} {thing})) (new-knext-eq '({living} {thing}) '({animation} {thing})) (new-knext-eq '({aliveness} {thing}) '({animation} {thing})) (new-knext-eq '({endurance} {thing}) '({survival} {thing})) (new-knext-eq '({matrimony} {thing}) '({marriage} {thing})) (new-knext-eq '({union} {thing}) '({marriage} {thing})) (new-knext-eq '({spousal relationship} {thing}) '({marriage} {thing})) (new-knext-eq '({wedlock} {thing}) '({marriage} {thing})) (new-knext-eq '({employ} {thing}) '({employment} {thing})) (new-knext-type {employment} {uncountable}) (new-knext-type {unemployment} {uncountable}) (new-is-not-a {employment} {unemployment}) (new-knext-type {unemployment} {uncountable}) (new-knext-type {employment} {uncountable}) (new-is-not-a {unemployment} {employment}) (new-knext-type {order} {uncountable}) (new-knext-type {disorder} {uncountable}) (new-is-not-a {order} {disorder}) (new-knext-eq '({harmony} {thing}) '({concordance} {thing})) (new-knext-eq '({concord} {thing}) '({concordance} {thing})) (new-knext-type {peace} {countable}) (new-knext-type {war} {countable}) (new-is-not-a {peace} {war}) (new-knext-type {agreement} {uncountable}) (new-knext-type {disagreement} {countable}) (new-is-not-a {agreement} {disagreement}) (new-knext-type {agreement} {uncountable}) (new-knext-type {accord} {uncountable}) (new-statement {agreement} {consists of} {accord}) (new-knext-is-a '({accord} {countable}) '({agreement} {uncountable})) (new-knext-type {disorder} {uncountable}) (new-knext-type {order} {uncountable}) (new-is-not-a {disorder} {order}) (new-knext-eq '({pandemonium} {thing}) '({chaos} {thing})) (new-knext-eq '({bedlam} {thing}) '({chaos} {thing})) (new-knext-eq '({disturbance} {thing}) '({commotion} {thing})) (new-knext-eq '({disruption} {thing}) '({commotion} {thing})) (new-knext-eq '({flutter} {thing}) '({commotion} {thing})) (new-knext-eq '({hurly burly} {thing}) '({commotion} {thing})) (new-knext-eq '({kerfuffle} {thing}) '({commotion} {thing})) (new-knext-eq '({hostility} {thing}) '({enmity} {thing})) (new-knext-eq '({antagonism} {thing}) '({enmity} {thing})) (new-knext-type {latent hostility} {uncountable}) (new-knext-type {tension} {uncountable}) (new-statement {latent hostility} {consists of} {tension}) (new-knext-is-a '({tension} {countable}) '({latent hostility} {uncountable})) (new-knext-eq '({clash} {thing}) '({friction} {thing})) (new-knext-type {war} {countable}) (new-knext-type {peace} {uncountable}) (new-is-not-a {war} {peace}) (new-knext-eq '({dissonance} {thing}) '({disagreement} {thing})) (new-knext-type {disagreement} {countable}) (new-knext-type {agreement} {uncountable}) (new-is-not-a {disagreement} {agreement}) (new-knext-is-a '({disagreement} {countable}) '({dissension} {uncountable})) (new-knext-type {dissension} {uncountable}) (new-knext-type {disagreement} {uncountable}) (new-statement {dissension} {consists of} {disagreement}) (new-knext-eq '({light} {thing}) '({lighting} {thing})) (new-knext-type {light} {uncountable}) (new-knext-type {dark} {uncountable}) (new-is-not-a {light} {dark}) (new-knext-eq '({darkness} {thing}) '({dark} {thing})) (new-knext-type {dark} {uncountable}) (new-knext-type {light} {uncountable}) (new-is-not-a {dark} {light}) (new-knext-eq '({blackness} {thing}) '({total darkness} {thing})) (new-knext-eq '({pitch blackness} {thing}) '({total darkness} {thing})) (new-knext-eq '({black} {thing}) '({total darkness} {thing})) (new-knext-is-a '({total darkness} {countable}) '({lightlessness} {uncountable})) (new-knext-type {lightlessness} {uncountable}) (new-knext-type {total darkness} {uncountable}) (new-statement {lightlessness} {consists of} {total darkness}) (new-knext-is-a '({emotional state} {countable}) '({spirit} {uncountable})) (new-knext-is-a '({spirit} {uncountable}) '({emotional state} {countable})) (new-knext-eq '({rapture} {thing}) '({ecstasy} {thing})) (new-knext-eq '({transport} {thing}) '({ecstasy} {thing})) (new-knext-eq '({exaltation} {thing}) '({ecstasy} {thing})) (new-knext-eq '({raptus} {thing}) '({ecstasy} {thing})) (new-knext-eq '({felicity} {thing}) '({happiness} {thing})) (new-knext-type {happiness} {uncountable}) (new-knext-type {unhappiness} {uncountable}) (new-is-not-a {happiness} {unhappiness}) (new-knext-type {unhappiness} {uncountable}) (new-knext-type {happiness} {uncountable}) (new-is-not-a {unhappiness} {happiness}) (new-knext-eq '({sadness} {thing}) '({sorrowfulness} {thing})) (new-knext-eq '({sorrow} {thing}) '({sorrowfulness} {thing})) (new-knext-eq '({bereavement} {thing}) '({mourning} {thing})) (new-knext-type {innocence} {uncountable}) (new-knext-type {guilt} {uncountable}) (new-is-not-a {innocence} {guilt}) (new-knext-type {guilt} {uncountable}) (new-knext-type {innocence} {uncountable}) (new-is-not-a {guilt} {innocence}) (new-knext-eq '({liberty} {thing}) '({autonomy} {thing})) (new-knext-eq '({subjection} {thing}) '({subjugation} {thing})) (new-knext-eq '({restraint} {thing}) '({constraint} {thing})) (new-knext-eq '({detainment} {thing}) '({detention} {thing})) (new-knext-eq '({hold} {thing}) '({detention} {thing})) (new-knext-eq '({custody} {thing}) '({detention} {thing})) (new-knext-eq '({representation} {thing}) '({delegacy} {thing})) (new-knext-eq '({agency} {thing}) '({delegacy} {thing})) (new-knext-type {balance} {uncountable}) (new-knext-type {imbalance} {uncountable}) (new-is-not-a {balance} {imbalance}) (new-knext-type {motion} {uncountable}) (new-knext-type {motionlessness} {uncountable}) (new-is-not-a {motion} {motionlessness}) (new-knext-eq '({shaking} {thing}) '({trembling} {thing})) (new-knext-eq '({quiver} {thing}) '({trembling} {thing})) (new-knext-eq '({quivering} {thing}) '({trembling} {thing})) (new-knext-eq '({vibration} {thing}) '({trembling} {thing})) (new-knext-eq '({palpitation} {thing}) '({trembling} {thing})) (new-knext-type {shakiness} {uncountable}) (new-knext-type {trembling} {uncountable}) (new-statement {shakiness} {consists of} {trembling}) (new-knext-is-a '({trembling} {countable}) '({shakiness} {uncountable})) (new-knext-eq '({flow} {thing}) '({stream} {thing})) (new-knext-eq '({stillness} {thing}) '({motionlessness} {thing})) (new-knext-eq '({lifelessness} {thing}) '({motionlessness} {thing})) (new-knext-type {motionlessness} {uncountable}) (new-knext-type {motion} {uncountable}) (new-is-not-a {motionlessness} {motion}) (new-knext-eq '({action} {thing}) '({activeness} {thing})) (new-knext-eq '({activity} {thing}) '({activeness} {thing})) (new-knext-type {action} {uncountable}) (new-knext-type {inaction} {uncountable}) (new-is-not-a {action} {inaction}) (new-knext-type {activity} {uncountable}) (new-knext-type {inactivity} {uncountable}) (new-is-not-a {activity} {inactivity}) (new-knext-type {activeness} {uncountable}) (new-knext-type {inactiveness} {uncountable}) (new-is-not-a {activeness} {inactiveness}) (add-english-names (list {behavior} {behaviour}) (list "behavior" "behaviour")) (new-knext-eq '({eruption} {thing}) '({eructation} {thing})) (new-knext-eq '({extravasation} {thing}) '({eructation} {thing})) (new-knext-eq '({inactivity} {thing}) '({inaction} {thing})) (new-knext-eq '({inactiveness} {thing}) '({inaction} {thing})) (new-knext-type {inaction} {uncountable}) (new-knext-type {action} {uncountable}) (new-is-not-a {inaction} {action}) (new-knext-type {inactivity} {uncountable}) (new-knext-type {activity} {uncountable}) (new-is-not-a {inactivity} {activity}) (new-knext-type {inactiveness} {uncountable}) (new-knext-type {activeness} {uncountable}) (new-is-not-a {inactiveness} {activeness}) (new-knext-eq '({tiredness} {thing}) '({weariness} {thing})) (new-knext-is-a '({fatigue} {countable}) '({weariness} {uncountable})) (new-knext-type {weariness} {uncountable}) (new-knext-type {fatigue} {uncountable}) (new-statement {weariness} {consists of} {fatigue}) (new-knext-type {sleep} {uncountable}) (new-knext-type {slumber} {uncountable}) (new-statement {sleep} {consists of} {slumber}) (new-knext-is-a '({slumber} {countable}) '({sleep} {uncountable})) (new-knext-eq '({imminency} {thing}) '({imminence} {thing})) (new-knext-eq '({imminentness} {thing}) '({imminence} {thing})) (new-knext-eq '({impendence} {thing}) '({imminence} {thing})) (new-knext-eq '({impendency} {thing}) '({imminence} {thing})) (new-knext-eq '({forthcomingness} {thing}) '({imminence} {thing})) (new-knext-eq '({preparedness} {thing}) '({readiness} {thing})) (new-knext-eq '({preparation} {thing}) '({readiness} {thing})) (new-knext-eq '({qui vive} {thing}) '({alert} {thing})) (new-knext-eq '({physiological state} {thing}) '({physical condition} {thing})) (new-knext-eq '({physiological condition} {thing}) '({physical condition} {thing})) (new-knext-eq '({anger} {thing}) '({angriness} {thing})) (new-knext-eq '({excitement} {thing}) '({excitation} {thing})) (new-knext-eq '({inflammation} {thing}) '({excitation} {thing})) (new-knext-eq '({fervor} {thing}) '({excitation} {thing})) (add-english-names (list {fervor} {fervour}) (list "fervor" "fervour")) (new-knext-eq '({fervor} {thing}) '({excitation} {thing})) (new-knext-eq '({hungriness} {thing}) '({hunger} {thing})) (new-knext-eq '({suffocation} {thing}) '({asphyxiation} {thing})) (new-knext-eq '({gestation} {thing}) '({pregnancy} {thing})) (new-knext-eq '({maternity} {thing}) '({pregnancy} {thing})) (new-knext-eq '({healthiness} {thing}) '({good health} {thing})) (new-knext-type {good health} {uncountable}) (new-knext-type {ill health} {uncountable}) (new-is-not-a {good health} {ill health}) (new-knext-eq '({energy} {thing}) '({vitality} {thing})) (new-knext-is-a '({vim} {countable}) '({vitality} {uncountable})) (new-knext-type {vitality} {uncountable}) (new-knext-type {vim} {uncountable}) (new-statement {vitality} {consists of} {vim}) (new-knext-eq '({bloom} {thing}) '({blush} {thing})) (new-knext-eq '({flush} {thing}) '({blush} {thing})) (new-knext-is-a '({blush} {countable}) '({rosiness} {uncountable})) (new-knext-type {rosiness} {uncountable}) (new-knext-type {blush} {uncountable}) (new-statement {rosiness} {consists of} {blush}) (new-knext-eq '({unhealthiness} {thing}) '({ill health} {thing})) (new-knext-type {ill health} {uncountable}) (new-knext-type {good health} {uncountable}) (new-is-not-a {ill health} {good health}) (new-knext-type {ill health} {uncountable}) (new-knext-type {health problem} {uncountable}) (new-statement {ill health} {consists of} {health problem}) (new-knext-is-a '({health problem} {countable}) '({ill health} {uncountable})) (new-knext-eq '({upset} {thing}) '({disorder} {thing})) (new-knext-eq '({complaint} {thing}) '({ailment} {thing})) (new-knext-eq '({ill} {thing}) '({ailment} {thing})) (new-knext-eq '({unwellness} {thing}) '({illness} {thing})) (new-knext-eq '({sickness} {thing}) '({illness} {thing})) (new-knext-type {illness} {uncountable}) (new-knext-type {wellness} {uncountable}) (new-is-not-a {illness} {wellness}) (new-knext-type {unwellness} {uncountable}) (new-knext-type {wellness} {uncountable}) (new-is-not-a {unwellness} {wellness}) (new-knext-is-a '({illness} {uncountable}) '({malady} {countable})) (new-knext-is-a '({malady} {countable}) '({illness} {uncountable})) (add-english-names (list {dependance} {dependence} {dependence}) (list "dependance" "dependence" "dependence")) (new-knext-eq '({dependance} {thing}) '({addiction} {thing})) (new-knext-eq '({dependance} {thing}) '({addiction} {thing})) (new-knext-eq '({dependency} {thing}) '({addiction} {thing})) (new-knext-is-a '({addiction} {countable}) '({habituation} {uncountable})) (new-knext-type {habituation} {uncountable}) (new-knext-type {addiction} {uncountable}) (new-statement {habituation} {consists of} {addiction}) (new-knext-eq '({prostration} {thing}) '({collapse} {thing})) (new-knext-eq '({stroke} {thing}) '({cerebrovascular accident} {thing})) (new-knext-eq '({cva} {thing}) '({cerebrovascular accident} {thing})) (new-knext-is-a '({apoplexy} {countable}) '({cerebrovascular accident} {countable})) (new-knext-is-a '({cerebrovascular accident} {countable}) '({apoplexy} {countable})) (new-knext-eq '({convulsion} {thing}) '({paroxysm} {thing})) (new-knext-is-a '({paroxysm} {countable}) '({fit} {countable})) (new-knext-is-a '({fit} {countable}) '({paroxysm} {countable})) (new-knext-eq '({mental disturbance} {thing}) '({mental disorder} {thing})) (new-knext-eq '({disturbance} {thing}) '({mental disorder} {thing})) (new-knext-eq '({psychological disorder} {thing}) '({mental disorder} {thing})) (new-knext-eq '({folie} {thing}) '({mental disorder} {thing})) (new-knext-eq '({grippe} {thing}) '({influenza} {thing})) (new-knext-type {scabies} {uncountable}) (new-knext-type {itch} {uncountable}) (new-statement {scabies} {consists of} {itch}) (new-knext-is-a '({itch} {countable}) '({scabies} {uncountable})) (new-knext-eq '({focus} {thing}) '({nidus} {thing})) (new-knext-eq '({focal point} {thing}) '({nidus} {thing})) (new-knext-eq '({ulceration} {thing}) '({ulcer} {thing})) (add-english-names (list {tumor} {tumour} {tumour}) (list "tumor" "tumour" "tumour")) (new-knext-eq '({tumor} {thing}) '({tumor} {thing})) (new-knext-eq '({neoplasm} {thing}) '({tumor} {thing})) (new-knext-eq '({malignant neoplastic disease} {thing}) '({cancer} {thing})) (new-knext-eq '({hurt} {thing}) '({injury} {thing})) (new-knext-eq '({harm} {thing}) '({injury} {thing})) (new-knext-eq '({trauma} {thing}) '({injury} {thing})) (new-knext-eq '({scratch} {thing}) '({abrasion} {thing})) (new-knext-eq '({scrape} {thing}) '({abrasion} {thing})) (new-knext-eq '({excoriation} {thing}) '({abrasion} {thing})) (new-knext-eq '({cut} {thing}) '({gash} {thing})) (new-knext-eq '({slash} {thing}) '({gash} {thing})) (new-knext-eq '({slice} {thing}) '({gash} {thing})) (new-knext-eq '({sunburn} {thing}) '({tan} {thing})) (new-knext-eq '({burn} {thing}) '({tan} {thing})) (new-knext-eq '({break} {thing}) '({fracture} {thing})) (new-knext-eq '({sting} {thing}) '({insect bite} {thing})) (new-knext-eq '({lesion} {thing}) '({wound} {thing})) (new-knext-eq '({twist} {thing}) '({wrench} {thing})) (new-knext-eq '({pull} {thing}) '({wrench} {thing})) (new-knext-eq '({puffiness} {thing}) '({swelling} {thing})) (new-knext-type {swelling} {uncountable}) (new-knext-type {lump} {uncountable}) (new-statement {swelling} {consists of} {lump}) (new-knext-is-a '({lump} {countable}) '({swelling} {uncountable})) (new-knext-type {intumescence} {uncountable}) (new-knext-type {intumescency} {uncountable}) (new-statement {intumescence} {consists of} {intumescency}) (new-knext-is-a '({intumescency} {countable}) '({intumescence} {uncountable})) (new-knext-eq '({hurting} {thing}) '({pain} {thing})) (new-knext-is-a '({ache} {countable}) '({aching} {uncountable})) (new-knext-type {aching} {uncountable}) (new-knext-type {ache} {uncountable}) (new-statement {aching} {consists of} {ache}) (new-knext-eq '({agony} {thing}) '({suffering} {thing})) (new-knext-eq '({excruciation} {thing}) '({suffering} {thing})) (new-knext-eq '({stinging} {thing}) '({sting} {thing})) (new-knext-eq '({redness} {thing}) '({inflammation} {thing})) (new-knext-eq '({rubor} {thing}) '({inflammation} {thing})) (new-knext-eq '({chill} {thing}) '({shivering} {thing})) (new-knext-eq '({sickness} {thing}) '({nausea} {thing})) (new-knext-eq '({febrility} {thing}) '({fever} {thing})) (new-knext-eq '({febricity} {thing}) '({fever} {thing})) (new-knext-eq '({pyrexia} {thing}) '({fever} {thing})) (new-knext-eq '({feverishness} {thing}) '({fever} {thing})) (new-knext-eq '({irregularity} {thing}) '({constipation} {thing})) (new-knext-eq '({psychological condition} {thing}) '({psychological state} {thing})) (new-knext-eq '({mental state} {thing}) '({psychological state} {thing})) (new-knext-eq '({mental condition} {thing}) '({psychological state} {thing})) (new-knext-eq '({anxiousness} {thing}) '({anxiety} {thing})) (new-knext-eq '({stress} {thing}) '({tension} {thing})) (new-knext-type {tension} {uncountable}) (new-knext-type {tenseness} {uncountable}) (new-statement {tension} {consists of} {tenseness}) (new-knext-is-a '({tenseness} {countable}) '({tension} {uncountable})) (new-knext-eq '({psychotic belief} {thing}) '({delusion} {thing})) (new-knext-type {mental health} {uncountable}) (new-knext-type {mental illness} {countable}) (new-is-not-a {mental health} {mental illness}) (new-knext-eq '({saneness} {thing}) '({sanity} {thing})) (new-knext-type {sanity} {uncountable}) (new-knext-type {insanity} {uncountable}) (new-is-not-a {sanity} {insanity}) (new-knext-eq '({reason} {thing}) '({rationality} {thing})) (new-knext-eq '({reasonableness} {thing}) '({rationality} {thing})) (new-knext-eq '({mental disease} {thing}) '({mental illness} {thing})) (new-knext-eq '({psychopathy} {thing}) '({mental illness} {thing})) (new-knext-type {mental illness} {countable}) (new-knext-type {mental health} {uncountable}) (new-is-not-a {mental illness} {mental health}) (new-knext-eq '({clinical depression} {thing}) '({depressive disorder} {thing})) (new-knext-eq '({depression} {thing}) '({depressive disorder} {thing})) (new-knext-eq '({craze} {thing}) '({delirium} {thing})) (new-knext-eq '({frenzy} {thing}) '({delirium} {thing})) (new-knext-eq '({fury} {thing}) '({delirium} {thing})) (new-knext-is-a '({delirium} {countable}) '({hysteria} {uncountable})) (new-knext-type {hysteria} {uncountable}) (new-knext-type {delirium} {uncountable}) (new-statement {hysteria} {consists of} {delirium}) (new-knext-is-a '({neurosis} {countable}) '({neuroticism} {uncountable})) (new-knext-type {neuroticism} {uncountable}) (new-knext-type {neurosis} {uncountable}) (new-statement {neuroticism} {consists of} {neurosis}) (new-knext-type {insanity} {uncountable}) (new-knext-type {sanity} {uncountable}) (new-is-not-a {insanity} {sanity}) (new-knext-eq '({stutter} {thing}) '({stammer} {thing})) (new-knext-eq '({disturbance} {thing}) '({perturbation} {thing})) (new-knext-eq '({upset} {thing}) '({perturbation} {thing})) (new-knext-type {elation} {uncountable}) (new-knext-type {depression} {uncountable}) (new-is-not-a {elation} {depression}) (new-knext-eq '({tantrum} {thing}) '({fit} {thing})) (new-knext-eq '({scene} {thing}) '({fit} {thing})) (new-knext-eq '({conniption} {thing}) '({fit} {thing})) (new-knext-eq '({enchantment} {thing}) '({spell} {thing})) (new-knext-eq '({trance} {thing}) '({spell} {thing})) (new-knext-eq '({hole} {thing}) '({fix} {thing})) (new-knext-eq '({jam} {thing}) '({fix} {thing})) (new-knext-eq '({mess} {thing}) '({fix} {thing})) (new-knext-eq '({muddle} {thing}) '({fix} {thing})) (new-knext-eq '({pickle} {thing}) '({fix} {thing})) (new-knext-eq '({kettle of fish} {thing}) '({fix} {thing})) (new-knext-eq '({acknowledgement} {thing}) '({acknowledgment} {thing})) (new-knext-type {recognition} {uncountable}) (new-knext-type {acknowledgment} {uncountable}) (new-statement {recognition} {consists of} {acknowledgment}) (new-knext-is-a '({acknowledgment} {countable}) '({recognition} {uncountable})) (new-knext-type {separation} {uncountable}) (new-knext-type {union} {uncountable}) (new-is-not-a {separation} {union}) (new-knext-eq '({privacy} {thing}) '({privateness} {thing})) (new-knext-eq '({secrecy} {thing}) '({privateness} {thing})) (new-knext-eq '({concealment} {thing}) '({privateness} {thing})) (new-knext-type {discontinuity} {uncountable}) (new-knext-type {continuity} {uncountable}) (new-is-not-a {discontinuity} {continuity}) (new-knext-eq '({disjuncture} {thing}) '({disjunction} {thing})) (new-knext-eq '({disconnection} {thing}) '({disjunction} {thing})) (new-knext-type {disconnectedness} {uncountable}) (new-knext-type {connectedness} {uncountable}) (new-is-not-a {disconnectedness} {connectedness}) (new-knext-is-a '({disjunction} {countable}) '({disconnectedness} {uncountable})) (new-knext-type {disconnectedness} {uncountable}) (new-knext-type {disjunction} {uncountable}) (new-statement {disconnectedness} {consists of} {disjunction}) (new-knext-eq '({incoherency} {thing}) '({incoherence} {thing})) (new-knext-type {incoherence} {uncountable}) (new-knext-type {coherence} {uncountable}) (new-is-not-a {incoherence} {coherence}) (new-knext-eq '({union} {thing}) '({unification} {thing})) (new-knext-type {union} {uncountable}) (new-knext-type {separation} {uncountable}) (new-is-not-a {union} {separation}) (new-knext-eq '({fusion} {thing}) '({coalition} {thing})) (new-knext-eq '({confederation} {thing}) '({alliance} {thing})) (new-knext-eq '({connection} {thing}) '({connectedness} {thing})) (new-knext-eq '({link} {thing}) '({connectedness} {thing})) (new-knext-type {connectedness} {uncountable}) (new-knext-type {disconnectedness} {uncountable}) (new-is-not-a {connectedness} {disconnectedness}) (new-knext-eq '({coherency} {thing}) '({coherence} {thing})) (new-knext-eq '({cohesion} {thing}) '({coherence} {thing})) (new-knext-eq '({cohesiveness} {thing}) '({coherence} {thing})) (new-knext-type {coherence} {uncountable}) (new-knext-type {incoherence} {uncountable}) (new-is-not-a {coherence} {incoherence}) (new-knext-eq '({junction} {thing}) '({conjugation} {thing})) (new-knext-eq '({conjunction} {thing}) '({conjugation} {thing})) (new-knext-eq '({colligation} {thing}) '({conjugation} {thing})) (new-knext-type {association} {uncountable}) (new-knext-type {disassociation} {uncountable}) (new-is-not-a {association} {disassociation}) (new-knext-type {disassociation} {uncountable}) (new-knext-type {association} {uncountable}) (new-is-not-a {disassociation} {association}) (new-knext-type {continuity} {uncountable}) (new-knext-type {discontinuity} {uncountable}) (new-is-not-a {continuity} {discontinuity}) (new-knext-eq '({improvement} {thing}) '({melioration} {thing})) (new-knext-type {improvement} {countable}) (new-knext-type {decline} {countable}) (new-is-not-a {improvement} {decline}) (new-knext-eq '({decline} {thing}) '({declination} {thing})) (new-knext-type {decline} {countable}) (new-knext-type {improvement} {countable}) (new-is-not-a {decline} {improvement}) (new-knext-eq '({renovation} {thing}) '({refurbishment} {thing})) (new-knext-eq '({restoration} {thing}) '({refurbishment} {thing})) (new-knext-eq '({maturity} {thing}) '({matureness} {thing})) (new-knext-type {maturity} {uncountable}) (new-knext-type {immaturity} {uncountable}) (new-is-not-a {maturity} {immaturity}) (new-knext-eq '({immatureness} {thing}) '({immaturity} {thing})) (new-knext-type {immaturity} {uncountable}) (new-knext-type {maturity} {uncountable}) (new-is-not-a {immaturity} {maturity}) (new-knext-eq '({childhood} {thing}) '({puerility} {thing})) (new-knext-eq '({grade} {thing}) '({tier} {thing})) (new-knext-eq '({level} {thing}) '({tier} {thing})) (new-knext-eq '({step} {thing}) '({gradation} {thing})) (new-knext-eq '({nobility} {thing}) '({noblesse} {thing})) (new-knext-eq '({accent} {thing}) '({emphasis} {thing})) (new-knext-type {stress} {uncountable}) (new-knext-type {focus} {uncountable}) (new-statement {stress} {consists of} {focus}) (new-knext-is-a '({focus} {countable}) '({stress} {uncountable})) (new-knext-eq '({prestigiousness} {thing}) '({prestige} {thing})) (add-english-names (list {honor} {honour}) (list "honor" "honour")) (new-knext-type {honor} {uncountable}) (new-knext-type {dishonor} {uncountable}) (new-is-not-a {honor} {dishonor}) (add-english-names (list {honor} {honour}) (list "honor" "honour")) (add-english-names (list {honor} {honour}) (list "honor" "honour")) (new-knext-eq '({glorification} {thing}) '({glory} {thing})) (new-knext-eq '({celebrity} {thing}) '({fame} {thing})) (new-knext-eq '({renown} {thing}) '({fame} {thing})) (new-knext-type {fame} {uncountable}) (new-knext-type {infamy} {uncountable}) (new-is-not-a {fame} {infamy}) (new-knext-eq '({regard} {thing}) '({esteem} {thing})) (new-knext-eq '({respect} {thing}) '({esteem} {thing})) (new-knext-type {esteem} {uncountable}) (new-knext-type {disesteem} {uncountable}) (new-is-not-a {esteem} {disesteem}) (new-knext-eq '({reputation} {thing}) '({repute} {thing})) (new-knext-type {repute} {uncountable}) (new-knext-type {disrepute} {uncountable}) (new-is-not-a {repute} {disrepute}) (add-english-names (list {dishonor} {dishonour}) (list "dishonor" "dishonour")) (new-knext-type {dishonor} {uncountable}) (new-knext-type {honor} {uncountable}) (new-is-not-a {dishonor} {honor}) (new-knext-eq '({shame} {thing}) '({disgrace} {thing})) (new-knext-eq '({ignominy} {thing}) '({disgrace} {thing})) (new-knext-eq '({degradation} {thing}) '({abasement} {thing})) (new-knext-eq '({abjection} {thing}) '({abasement} {thing})) (new-knext-eq '({degeneration} {thing}) '({degeneracy} {thing})) (new-knext-eq '({decadence} {thing}) '({degeneracy} {thing})) (new-knext-eq '({decadency} {thing}) '({degeneracy} {thing})) (new-knext-eq '({opprobrium} {thing}) '({infamy} {thing})) (new-knext-type {infamy} {uncountable}) (new-knext-type {fame} {uncountable}) (new-is-not-a {infamy} {fame}) (new-knext-eq '({dominance} {thing}) '({ascendancy} {thing})) (new-knext-eq '({control} {thing}) '({ascendancy} {thing})) (new-knext-eq '({ascendence} {thing}) '({ascendance} {thing})) (new-knext-eq '({ascendency} {thing}) '({ascendance} {thing})) (new-knext-is-a '({ascendance} {countable}) '({ascendancy} {uncountable})) (new-knext-type {ascendancy} {uncountable}) (new-knext-type {ascendance} {uncountable}) (new-statement {ascendancy} {consists of} {ascendance}) (new-knext-eq '({domination} {thing}) '({supremacy} {thing})) (new-knext-eq '({mastery} {thing}) '({supremacy} {thing})) (new-knext-type {dominion} {uncountable}) (new-knext-type {rule} {uncountable}) (new-statement {dominion} {consists of} {rule}) (new-knext-is-a '({rule} {countable}) '({dominion} {uncountable})) (new-knext-eq '({comfortableness} {thing}) '({comfort} {thing})) (new-knext-type {comfort} {uncountable}) (new-knext-type {discomfort} {uncountable}) (new-is-not-a {comfort} {discomfort}) (new-knext-eq '({ease} {thing}) '({relief} {thing})) (new-knext-eq '({uncomfortableness} {thing}) '({discomfort} {thing})) (new-knext-type {discomfort} {uncountable}) (new-knext-type {comfort} {uncountable}) (new-is-not-a {discomfort} {comfort}) (add-english-names (list {eudemonia} {eudaemonia} {eudemonia} {eudaemonia}) (list "eudemonia" "eudaemonia" "eudemonia" "eudaemonia")) (new-knext-eq '({eudemonia} {thing}) '({wellbeing} {thing})) (new-knext-eq '({wellness} {thing}) '({health} {thing})) (new-knext-type {wellness} {uncountable}) (new-knext-type {illness} {uncountable}) (new-is-not-a {wellness} {illness}) (new-knext-type {wellness} {uncountable}) (new-knext-type {unwellness} {uncountable}) (new-is-not-a {wellness} {unwellness}) (new-knext-eq '({wretchedness} {thing}) '({misery} {thing})) (new-knext-eq '({miserableness} {thing}) '({misery} {thing})) (new-knext-eq '({suffering} {thing}) '({woe} {thing})) (new-knext-eq '({demand} {thing}) '({need} {thing})) (new-knext-eq '({deficiency} {thing}) '({lack} {thing})) (new-knext-eq '({want} {thing}) '({lack} {thing})) (new-knext-eq '({famine} {thing}) '({dearth} {thing})) (new-knext-eq '({shortage} {thing}) '({dearth} {thing})) (new-knext-eq '({tightness} {thing}) '({stringency} {thing})) (new-knext-eq '({insistence} {thing}) '({imperativeness} {thing})) (new-knext-eq '({insistency} {thing}) '({imperativeness} {thing})) (new-knext-eq '({press} {thing}) '({imperativeness} {thing})) (new-knext-eq '({pressure} {thing}) '({imperativeness} {thing})) (new-knext-eq '({void} {thing}) '({nothingness} {thing})) (new-knext-eq '({nullity} {thing}) '({nothingness} {thing})) (new-knext-eq '({nihility} {thing}) '({nothingness} {thing})) (new-knext-eq '({nudity} {thing}) '({nakedness} {thing})) (new-knext-eq '({nudeness} {thing}) '({nakedness} {thing})) (new-knext-type {grace} {uncountable}) (new-knext-type {state of grace} {uncountable}) (new-statement {grace} {consists of} {state of grace}) (new-knext-is-a '({state of grace} {countable}) '({grace} {uncountable})) (new-knext-eq '({flawlessness} {thing}) '({perfection} {thing})) (new-knext-eq '({ne plus ultra} {thing}) '({perfection} {thing})) (new-knext-type {perfection} {countable}) (new-knext-type {imperfection} {countable}) (new-is-not-a {perfection} {imperfection}) (new-knext-eq '({polish} {thing}) '({refinement} {thing})) (new-knext-eq '({cultivation} {thing}) '({refinement} {thing})) (new-knext-eq '({finish} {thing}) '({refinement} {thing})) (new-knext-type {refinement} {uncountable}) (new-knext-type {culture} {uncountable}) (new-statement {refinement} {consists of} {culture}) (new-knext-is-a '({culture} {countable}) '({refinement} {uncountable})) (new-knext-eq '({unity} {thing}) '({integrity} {thing})) (new-knext-eq '({wholeness} {thing}) '({integrity} {thing})) (new-knext-type {imperfection} {countable}) (new-knext-type {perfection} {uncountable}) (new-is-not-a {imperfection} {perfection}) (new-knext-is-a '({imperfection} {countable}) '({imperfectness} {uncountable})) (new-knext-type {imperfectness} {uncountable}) (new-knext-type {imperfection} {uncountable}) (new-statement {imperfectness} {consists of} {imperfection}) (new-knext-eq '({weakness} {thing}) '({failing} {thing})) (new-knext-eq '({defect} {thing}) '({flaw} {thing})) (new-knext-eq '({fault} {thing}) '({flaw} {thing})) (new-knext-eq '({fortune} {thing}) '({luck} {thing})) (new-knext-eq '({destiny} {thing}) '({luck} {thing})) (new-knext-eq '({fate} {thing}) '({luck} {thing})) (new-knext-eq '({lot} {thing}) '({luck} {thing})) (new-knext-eq '({portion} {thing}) '({luck} {thing})) (new-knext-type {luck} {countable}) (new-knext-type {circumstances} {countable}) (new-statement {circumstances} {consists of} {luck}) (new-knext-type {circumstances} {uncountable}) (new-knext-type {luck} {uncountable}) (new-statement {circumstances} {consists of} {luck}) (new-knext-eq '({hardship} {thing}) '({adversity} {thing})) (new-knext-eq '({hard knocks} {thing}) '({adversity} {thing})) (new-knext-type {failure} {countable}) (new-knext-type {success} {uncountable}) (new-is-not-a {failure} {success}) (new-knext-type {solvency} {uncountable}) (new-knext-type {insolvency} {countable}) (new-is-not-a {solvency} {insolvency}) (new-knext-type {insolvency} {countable}) (new-knext-type {solvency} {uncountable}) (new-is-not-a {insolvency} {solvency}) (new-knext-type {bankruptcy} {uncountable}) (new-knext-type {failure} {uncountable}) (new-statement {bankruptcy} {consists of} {failure}) (new-knext-is-a '({failure} {countable}) '({bankruptcy} {uncountable})) (new-knext-eq '({possibility} {thing}) '({possibleness} {thing})) (new-knext-type {possibility} {countable}) (new-knext-type {impossibility} {uncountable}) (new-is-not-a {possibility} {impossibility}) (new-knext-eq '({potentiality} {thing}) '({potential} {thing})) (new-knext-eq '({potency} {thing}) '({potential} {thing})) (new-knext-eq '({impossibleness} {thing}) '({impossibility} {thing})) (new-knext-type {impossibility} {uncountable}) (new-knext-type {possibility} {countable}) (new-is-not-a {impossibility} {possibility}) (new-knext-eq '({chance} {thing}) '({opportunity} {thing})) (new-knext-eq '({audience} {thing}) '({hearing} {thing})) (new-knext-eq '({crack} {thing}) '({shot} {thing})) (new-knext-eq '({anticipation} {thing}) '({expectation} {thing})) (new-knext-eq '({depression} {thing}) '({economic crisis} {thing})) (new-knext-eq '({slump} {thing}) '({economic crisis} {thing})) (new-knext-type {wealth} {uncountable}) (new-knext-type {poverty} {uncountable}) (new-is-not-a {wealth} {poverty}) (new-knext-eq '({richness} {thing}) '({affluence} {thing})) (new-knext-eq '({comfort} {thing}) '({ease} {thing})) (new-knext-eq '({luxury} {thing}) '({luxuriousness} {thing})) (new-knext-eq '({opulence} {thing}) '({luxuriousness} {thing})) (new-knext-eq '({sumptuousness} {thing}) '({luxuriousness} {thing})) (new-knext-eq '({poorness} {thing}) '({poverty} {thing})) (new-knext-eq '({impoverishment} {thing}) '({poverty} {thing})) (new-knext-type {poverty} {uncountable}) (new-knext-type {wealth} {uncountable}) (new-is-not-a {poverty} {wealth}) (new-knext-eq '({want} {thing}) '({privation} {thing})) (new-knext-eq '({neediness} {thing}) '({privation} {thing})) (new-knext-eq '({need} {thing}) '({indigence} {thing})) (new-knext-eq '({penury} {thing}) '({indigence} {thing})) (new-knext-eq '({pauperism} {thing}) '({indigence} {thing})) (new-knext-eq '({pauperization} {thing}) '({indigence} {thing})) (new-knext-type {cleanness} {uncountable}) (new-knext-type {dirtiness} {uncountable}) (new-is-not-a {cleanness} {dirtiness}) (new-knext-eq '({order} {thing}) '({orderliness} {thing})) (new-knext-type {orderliness} {uncountable}) (new-knext-type {disorderliness} {uncountable}) (new-is-not-a {orderliness} {disorderliness}) (new-knext-type {order} {uncountable}) (new-knext-type {disorder} {uncountable}) (new-is-not-a {order} {disorder}) (new-knext-eq '({uncleanness} {thing}) '({dirtiness} {thing})) (new-knext-type {dirtiness} {uncountable}) (new-knext-type {cleanness} {uncountable}) (new-is-not-a {dirtiness} {cleanness}) (new-knext-eq '({dirt} {thing}) '({grime} {thing})) (new-knext-eq '({filth} {thing}) '({grime} {thing})) (new-knext-eq '({soil} {thing}) '({grime} {thing})) (new-knext-eq '({stain} {thing}) '({grime} {thing})) (new-knext-eq '({grease} {thing}) '({grime} {thing})) (new-knext-eq '({grunge} {thing}) '({grime} {thing})) (new-knext-eq '({disorder} {thing}) '({disorderliness} {thing})) (new-knext-type {disorderliness} {uncountable}) (new-knext-type {orderliness} {uncountable}) (new-is-not-a {disorderliness} {orderliness}) (new-knext-type {disorder} {uncountable}) (new-knext-type {order} {uncountable}) (new-is-not-a {disorder} {order}) (new-knext-eq '({muss} {thing}) '({mess} {thing})) (new-knext-eq '({mussiness} {thing}) '({mess} {thing})) (new-knext-eq '({normalcy} {thing}) '({normality} {thing})) (new-knext-type {normality} {countable}) (new-knext-type {abnormality} {countable}) (new-is-not-a {normality} {abnormality}) (new-knext-eq '({abnormalcy} {thing}) '({abnormality} {thing})) (new-knext-type {abnormality} {countable}) (new-knext-type {normality} {uncountable}) (new-is-not-a {abnormality} {normality}) (new-knext-eq '({circumstance} {thing}) '({context} {thing})) (new-knext-eq '({setting} {thing}) '({context} {thing})) (new-knext-eq '({background} {thing}) '({setting} {thing})) (new-knext-eq '({scope} {thing}) '({setting} {thing})) (new-knext-eq '({land} {thing}) '({kingdom} {thing})) (new-knext-eq '({realm} {thing}) '({kingdom} {thing})) (new-knext-eq '({clime} {thing}) '({climate} {thing})) (new-knext-eq '({depression} {thing}) '({low} {thing})) (new-knext-eq '({murk} {thing}) '({fogginess} {thing})) (new-knext-eq '({murkiness} {thing}) '({fogginess} {thing})) (new-knext-is-a '({fog} {countable}) '({fogginess} {uncountable})) (new-knext-type {fogginess} {uncountable}) (new-knext-type {fog} {uncountable}) (new-statement {fogginess} {consists of} {fog}) (new-knext-eq '({ambiance} {thing}) '({atmosphere} {thing})) (new-knext-eq '({ambience} {thing}) '({atmosphere} {thing})) (new-knext-eq '({gloom} {thing}) '({gloominess} {thing})) (new-knext-eq '({glumness} {thing}) '({gloominess} {thing})) (new-knext-eq '({spirit} {thing}) '({flavor} {thing})) (new-knext-eq '({tone} {thing}) '({flavor} {thing})) (new-knext-eq '({feel} {thing}) '({flavor} {thing})) (new-knext-eq '({feeling} {thing}) '({flavor} {thing})) (add-english-names (list {flavor} {flavour}) (list "flavor" "flavour")) (new-knext-eq '({look} {thing}) '({flavor} {thing})) (new-knext-eq '({smell} {thing}) '({flavor} {thing})) (new-knext-eq '({immunity} {thing}) '({unsusceptibility} {thing})) (new-knext-type {unsusceptibility} {uncountable}) (new-knext-type {susceptibility} {uncountable}) (new-is-not-a {unsusceptibility} {susceptibility}) (new-knext-eq '({susceptibleness} {thing}) '({susceptibility} {thing})) (new-knext-type {susceptibility} {uncountable}) (new-knext-type {unsusceptibility} {uncountable}) (new-is-not-a {susceptibility} {unsusceptibility}) (new-knext-type {wetness} {uncountable}) (new-knext-type {dryness} {uncountable}) (new-is-not-a {wetness} {dryness}) (new-knext-type {moisture} {uncountable}) (new-knext-type {wet} {uncountable}) (new-statement {moisture} {consists of} {wet}) (new-knext-is-a '({wet} {countable}) '({moisture} {uncountable})) (new-knext-eq '({waterlessness} {thing}) '({dryness} {thing})) (new-knext-eq '({xerotes} {thing}) '({dryness} {thing})) (new-knext-type {dryness} {uncountable}) (new-knext-type {wetness} {uncountable}) (new-is-not-a {dryness} {wetness}) (new-knext-type {safety} {countable}) (new-knext-type {danger} {countable}) (new-is-not-a {safety} {danger}) (new-knext-type {security} {uncountable}) (new-knext-type {insecurity} {uncountable}) (new-is-not-a {security} {insecurity}) (new-knext-eq '({insurance} {thing}) '({indemnity} {thing})) (new-knext-type {protection} {uncountable}) (new-knext-type {shelter} {uncountable}) (new-statement {protection} {consists of} {shelter}) (new-knext-is-a '({shelter} {countable}) '({protection} {uncountable})) (new-knext-eq '({killer} {thing}) '({cause of death} {thing})) (new-knext-type {danger} {countable}) (new-knext-type {safety} {uncountable}) (new-is-not-a {danger} {safety}) (new-knext-type {insecurity} {uncountable}) (new-knext-type {security} {uncountable}) (new-is-not-a {insecurity} {security}) (new-knext-eq '({jeopardy} {thing}) '({hazard} {thing})) (new-knext-eq '({peril} {thing}) '({hazard} {thing})) (new-knext-eq '({risk} {thing}) '({hazard} {thing})) (new-knext-eq '({endangerment} {thing}) '({hazard} {thing})) (new-knext-eq '({threat} {thing}) '({menace} {thing})) (new-knext-eq '({peril} {thing}) '({riskiness} {thing})) (new-knext-eq '({tension} {thing}) '({tensity} {thing})) (new-knext-eq '({tenseness} {thing}) '({tensity} {thing})) (new-knext-eq '({tautness} {thing}) '({tensity} {thing})) (new-knext-type {fitness} {uncountable}) (new-knext-type {unfitness} {countable}) (new-is-not-a {fitness} {unfitness}) (new-knext-type {soundness} {uncountable}) (new-knext-type {unsoundness} {uncountable}) (new-is-not-a {soundness} {unsoundness}) (new-knext-eq '({frailty} {thing}) '({infirmity} {thing})) (new-knext-eq '({debility} {thing}) '({infirmity} {thing})) (new-knext-eq '({feebleness} {thing}) '({infirmity} {thing})) (new-knext-eq '({frailness} {thing}) '({infirmity} {thing})) (new-knext-eq '({valetudinarianism} {thing}) '({infirmity} {thing})) (new-knext-eq '({disablement} {thing}) '({disability} {thing})) (new-knext-eq '({handicap} {thing}) '({disability} {thing})) (new-knext-eq '({impairment} {thing}) '({disability} {thing})) (new-knext-type {unsoundness} {uncountable}) (new-knext-type {soundness} {uncountable}) (new-is-not-a {unsoundness} {soundness}) (new-knext-eq '({decomposition} {thing}) '({disintegration} {thing})) (new-knext-eq '({impairment} {thing}) '({deterioration} {thing})) (new-knext-eq '({ruination} {thing}) '({ruin} {thing})) (new-knext-eq '({end} {thing}) '({destruction} {thing})) (new-knext-eq '({death} {thing}) '({destruction} {thing})) (new-knext-eq '({darkness} {thing}) '({wickedness} {thing})) (new-knext-eq '({dark} {thing}) '({wickedness} {thing})) (new-knext-eq '({atom} {thing}) '({particle} {thing})) (new-knext-eq '({molecule} {thing}) '({particle} {thing})) (new-knext-eq '({corpuscle} {thing}) '({particle} {thing})) (new-knext-eq '({mote} {thing}) '({particle} {thing})) (new-knext-eq '({speck} {thing}) '({particle} {thing})) (new-knext-eq '({metal} {thing}) '({alloy} {thing})) (new-knext-eq '({staple} {thing}) '({raw material} {thing})) (new-knext-eq '({group} {thing}) '({radical} {thing})) (new-knext-eq '({chemical group} {thing}) '({radical} {thing})) (add-english-names (list {aluminum} {aluminium}) (list "aluminum" "aluminium")) (add-english-names (list {sulfur} {sulphur} {sulphur}) (list "sulfur" "sulphur" "sulphur")) (new-knext-eq '({sulfur} {thing}) '({sulfur} {thing})) (new-knext-eq '({peacock ore} {thing}) '({bornite} {thing})) (new-knext-eq '({white lead ore} {thing}) '({cerussite} {thing})) (new-knext-eq '({copper glance} {thing}) '({chalcocite} {thing})) (new-knext-eq '({copper pyrites} {thing}) '({chalcopyrite} {thing})) (new-knext-eq '({gasolene} {thing}) '({gasoline} {thing})) (new-knext-eq '({petrol} {thing}) '({gasoline} {thing})) (new-knext-eq '({coal oil} {thing}) '({lamp oil} {thing})) (new-knext-eq '({kerosine} {thing}) '({kerosene} {thing})) (new-knext-is-a '({kerosene} {countable}) '({lamp oil} {uncountable})) (new-knext-type {lamp oil} {uncountable}) (new-knext-type {kerosene} {uncountable}) (new-statement {lamp oil} {consists of} {kerosene}) (new-knext-eq '({propellent} {thing}) '({propellant} {thing})) (new-knext-eq '({stone} {thing}) '({rock} {thing})) (new-knext-eq '({crushed rock} {thing}) '({gravel} {thing})) (new-knext-eq '({adhesive agent} {thing}) '({adhesive material} {thing})) (new-knext-eq '({gum} {thing}) '({glue} {thing})) (new-knext-eq '({mucilage} {thing}) '({glue} {thing})) (new-knext-type {ivory} {uncountable}) (new-knext-type {tusk} {uncountable}) (new-statement {ivory} {consists of} {tusk}) (new-knext-is-a '({tusk} {countable}) '({ivory} {uncountable})) (new-knext-eq '({pelt} {thing}) '({fur} {thing})) (new-knext-eq '({drying agent} {thing}) '({desiccant} {thing})) (new-knext-eq '({drier} {thing}) '({desiccant} {thing})) (new-knext-eq '({siccative} {thing}) '({desiccant} {thing})) (new-knext-eq '({reducer} {thing}) '({reducing agent} {thing})) (new-knext-eq '({reductant} {thing}) '({reducing agent} {thing})) (new-knext-eq '({husk} {thing}) '({chaff} {thing})) (new-knext-eq '({shuck} {thing}) '({chaff} {thing})) (new-knext-eq '({stalk} {thing}) '({chaff} {thing})) (new-knext-eq '({straw} {thing}) '({chaff} {thing})) (new-knext-eq '({stubble} {thing}) '({chaff} {thing})) (new-knext-eq '({complex} {thing}) '({coordination compound} {thing})) (new-knext-type {conductor} {countable}) (new-knext-type {insulator} {countable}) (new-is-not-a {conductor} {insulator}) (new-knext-eq '({dielectric} {thing}) '({insulator} {thing})) (new-knext-eq '({nonconductor} {thing}) '({insulator} {thing})) (new-knext-type {insulator} {countable}) (new-knext-type {conductor} {countable}) (new-is-not-a {insulator} {conductor}) (new-knext-eq '({ground} {thing}) '({earth} {thing})) (new-knext-eq '({soil} {thing}) '({dirt} {thing})) (new-knext-eq '({piss} {thing}) '({urine} {thing})) (new-knext-eq '({pee} {thing}) '({urine} {thing})) (new-knext-eq '({piddle} {thing}) '({urine} {thing})) (new-knext-eq '({weewee} {thing}) '({urine} {thing})) (new-knext-eq '({water} {thing}) '({urine} {thing})) (new-knext-eq '({waste product} {thing}) '({waste material} {thing})) (new-knext-type {waste} {uncountable}) (new-knext-type {waste material} {uncountable}) (new-statement {waste} {consists of} {waste material}) (new-knext-is-a '({waste material} {countable}) '({waste} {uncountable})) (new-knext-eq '({refuse} {thing}) '({garbage} {thing})) (new-knext-eq '({food waste} {thing}) '({garbage} {thing})) (new-knext-is-a '({garbage} {uncountable}) '({scraps} {uncountable})) (new-knext-is-a '({scraps} {uncountable}) '({garbage} {uncountable})) (new-knext-eq '({trash} {thing}) '({rubbish} {thing})) (new-knext-eq '({scrap} {thing}) '({rubbish} {thing})) (add-english-names (list {fiber} {fibre}) (list "fiber" "fibre")) (new-knext-eq '({fill} {thing}) '({filling} {thing})) (new-knext-eq '({preparation} {thing}) '({formulation} {thing})) (new-knext-eq '({lechatelierite} {thing}) '({vitreous silica} {thing})) (new-knext-eq '({crystal} {thing}) '({vitreous silica} {thing})) (new-knext-type {quartz glass} {uncountable}) (new-knext-type {vitreous silica} {uncountable}) (new-statement {quartz glass} {consists of} {vitreous silica}) (new-knext-is-a '({vitreous silica} {countable}) '({quartz glass} {uncountable})) (new-knext-eq '({lubricator} {thing}) '({lubricant} {thing})) (new-knext-eq '({lubricating substance} {thing}) '({lubricant} {thing})) (new-knext-eq '({lube} {thing}) '({lubricant} {thing})) (new-knext-eq '({leavening} {thing}) '({leaven} {thing})) (new-knext-eq '({lipide} {thing}) '({lipid} {thing})) (new-knext-eq '({lipoid} {thing}) '({lipid} {thing})) (new-knext-eq '({timber} {thing}) '({lumber} {thing})) (new-knext-eq '({supermolecule} {thing}) '({macromolecule} {thing})) (new-knext-eq '({alkane series} {thing}) '({methane series} {thing})) (new-knext-eq '({alkane} {thing}) '({methane series} {thing})) (new-knext-eq '({paraffin series} {thing}) '({methane series} {thing})) (new-knext-eq '({paraffin} {thing}) '({methane series} {thing})) (new-knext-eq '({clay} {thing}) '({mud} {thing})) (new-knext-eq '({sludge} {thing}) '({slime} {thing})) (new-knext-eq '({goo} {thing}) '({slime} {thing})) (new-knext-eq '({goop} {thing}) '({slime} {thing})) (new-knext-eq '({gook} {thing}) '({slime} {thing})) (new-knext-eq '({guck} {thing}) '({slime} {thing})) (new-knext-eq '({gunk} {thing}) '({slime} {thing})) (new-knext-eq '({muck} {thing}) '({slime} {thing})) (new-knext-eq '({ooze} {thing}) '({slime} {thing})) (new-knext-eq '({crude oil} {thing}) '({petroleum} {thing})) (new-knext-eq '({crude} {thing}) '({petroleum} {thing})) (new-knext-eq '({rock oil} {thing}) '({petroleum} {thing})) (new-knext-eq '({fossil oil} {thing}) '({petroleum} {thing})) (new-knext-eq '({oil} {thing}) '({petroleum} {thing})) (new-knext-eq '({colouring material} {thing}) '({coloring material} {thing})) (add-english-names (list {color} {colour}) (list "color" "colour")) (add-english-names (list {color} {colour}) (list "color" "colour")) (new-knext-is-a '({coloring material} {uncountable}) '({color} {countable})) (add-english-names (list {color} {colour}) (list "color" "colour")) (new-knext-eq '({plant substance} {thing}) '({plant material} {thing})) (new-knext-eq '({pulverization} {thing}) '({powder} {thing})) (add-english-names (list {pulverization} {pulverisation} {pulverization} {pulverisation}) (list "pulverization" "pulverisation" "pulverization" "pulverisation")) (new-knext-type {powder} {uncountable}) (new-knext-type {pulverization} {uncountable}) (new-statement {powder} {consists of} {pulverization}) (add-english-names (list {pulverization} {pulverisation} {pulverization} {pulverisation}) (list "pulverization" "pulverisation" "pulverization" "pulverisation")) (new-knext-eq '({toxicant} {thing}) '({poison} {thing})) (new-knext-eq '({dissolver} {thing}) '({solvent} {thing})) (new-knext-eq '({dissolving agent} {thing}) '({solvent} {thing})) (add-english-names (list {vapor} {vapour}) (list "vapor" "vapour")) (add-english-names (list {sulfide} {sulphide} {sulphide}) (list "sulfide" "sulphide" "sulphide")) (new-knext-eq '({sulfide} {thing}) '({sulfide} {thing})) (new-knext-eq '({graphic tellurium} {thing}) '({sylvanite} {thing})) (new-knext-eq '({sulfuric acid} {thing}) '({vitriol} {thing})) (new-knext-eq '({sulphuric acid} {thing}) '({vitriol} {thing})) (new-knext-eq '({board} {thing}) '({plank} {thing})) (new-knext-eq '({period of time} {thing}) '({time period} {thing})) (new-knext-eq '({geologic time} {thing}) '({geological time} {thing})) (new-knext-type {work time} {uncountable}) (new-knext-type {time off} {uncountable}) (new-is-not-a {work time} {time off}) (new-knext-type {time off} {uncountable}) (new-knext-type {work time} {uncountable}) (new-is-not-a {time off} {work time}) (new-knext-type {past} {countable}) (new-knext-type {future} {countable}) (new-is-not-a {past} {future}) (new-knext-type {future} {countable}) (new-knext-type {past} {countable}) (new-is-not-a {future} {past}) (new-knext-type {clock time} {uncountable}) (new-knext-type {time} {uncountable}) (new-statement {clock time} {consists of} {time}) (new-knext-is-a '({time} {countable}) '({clock time} {uncountable})) (new-knext-eq '({continuance} {thing}) '({duration} {thing})) (new-knext-eq '({stretch} {thing}) '({stint} {thing})) (new-knext-eq '({working day} {thing}) '({workday} {thing})) (new-knext-eq '({holiday} {thing}) '({vacation} {thing})) (new-knext-is-a '({leave} {uncountable}) '({leave of absence} {countable})) (new-knext-is-a '({leave of absence} {countable}) '({leave} {uncountable})) (new-knext-eq '({lifespan} {thing}) '({lifetime} {thing})) (new-knext-eq '({millenary} {thing}) '({millennium} {thing})) (new-knext-type {birth} {countable}) (new-knext-type {death} {countable}) (new-is-not-a {birth} {death}) (new-knext-eq '({death} {thing}) '({last} {thing})) (new-knext-is-a '({age} {countable}) '({eld} {uncountable})) (new-knext-is-a '({eld} {uncountable}) '({age} {countable})) (new-knext-eq '({pubescence} {thing}) '({puberty} {thing})) (new-knext-type {majority} {countable}) (new-knext-type {minority} {countable}) (new-is-not-a {majority} {minority}) (new-knext-eq '({age} {thing}) '({eld} {thing})) (new-knext-eq '({geezerhood} {thing}) '({eld} {thing})) (new-knext-is-a '({old age} {uncountable}) '({years} {uncountable})) (new-knext-is-a '({old age} {uncountable}) '({eld} {countable})) (new-knext-is-a '({years} {uncountable}) '({old age} {uncountable})) (new-knext-is-a '({years} {uncountable}) '({eld} {countable})) (new-knext-is-a '({eld} {countable}) '({old age} {uncountable})) (new-knext-type {eld} {countable}) (new-knext-type {years} {countable}) (new-statement {years} {consists of} {eld}) (new-knext-eq '({unit of time} {thing}) '({time unit} {thing})) (new-knext-eq '({civil day} {thing}) '({calendar day} {thing})) (new-knext-eq '({day of the month} {thing}) '({date} {thing})) (new-knext-eq '({dominicus} {thing}) '({sunday} {thing})) (new-knext-eq '({daylight} {thing}) '({daytime} {thing})) (new-knext-type {day} {uncountable}) (new-knext-type {night} {uncountable}) (new-is-not-a {day} {night}) (new-knext-eq '({morn} {thing}) '({morning} {thing})) (new-knext-eq '({forenoon} {thing}) '({morning} {thing})) (new-knext-eq '({midday} {thing}) '({noon} {thing})) (new-knext-eq '({eve} {thing}) '({evening} {thing})) (new-knext-eq '({even} {thing}) '({evening} {thing})) (new-knext-eq '({eventide} {thing}) '({evening} {thing})) (new-knext-eq '({dark} {thing}) '({nighttime} {thing})) (new-knext-type {night} {uncountable}) (new-knext-type {day} {uncountable}) (new-is-not-a {night} {day}) (new-knext-is-a '({night} {uncountable}) '({nighttime} {countable})) (new-knext-is-a '({nighttime} {countable}) '({night} {uncountable})) (new-knext-eq '({dawning} {thing}) '({dawn} {thing})) (new-knext-eq '({morning} {thing}) '({dawn} {thing})) (new-knext-eq '({aurora} {thing}) '({dawn} {thing})) (new-knext-eq '({first light} {thing}) '({dawn} {thing})) (new-knext-eq '({daybreak} {thing}) '({dawn} {thing})) (new-knext-eq '({break of day} {thing}) '({dawn} {thing})) (new-knext-eq '({break of the day} {thing}) '({dawn} {thing})) (new-knext-eq '({dayspring} {thing}) '({dawn} {thing})) (new-knext-eq '({sunrise} {thing}) '({dawn} {thing})) (new-knext-eq '({sunup} {thing}) '({dawn} {thing})) (new-knext-eq '({cockcrow} {thing}) '({dawn} {thing})) (new-knext-type {sunrise} {countable}) (new-knext-type {sunset} {countable}) (new-is-not-a {sunrise} {sunset}) (new-knext-eq '({dusk} {thing}) '({twilight} {thing})) (new-knext-eq '({gloaming} {thing}) '({twilight} {thing})) (new-knext-eq '({gloam} {thing}) '({twilight} {thing})) (new-knext-eq '({nightfall} {thing}) '({twilight} {thing})) (new-knext-eq '({fall} {thing}) '({twilight} {thing})) (new-knext-eq '({crepuscule} {thing}) '({twilight} {thing})) (new-knext-eq '({crepuscle} {thing}) '({twilight} {thing})) (new-knext-is-a '({twilight} {countable}) '({evenfall} {uncountable})) (new-knext-type {evenfall} {uncountable}) (new-knext-type {twilight} {uncountable}) (new-statement {evenfall} {consists of} {twilight}) (new-knext-eq '({hebdomad} {thing}) '({week} {thing})) (new-knext-eq '({civil year} {thing}) '({calendar year} {thing})) (new-knext-eq '({academic year} {thing}) '({school year} {thing})) (new-knext-eq '({twelvemonth} {thing}) '({year} {thing})) (new-knext-eq '({yr} {thing}) '({year} {thing})) (new-knext-eq '({decennary} {thing}) '({decade} {thing})) (new-knext-eq '({decennium} {thing}) '({decade} {thing})) (new-knext-eq '({moon} {thing}) '({lunar month} {thing})) (new-knext-eq '({lunation} {thing}) '({lunar month} {thing})) (new-knext-eq '({synodic month} {thing}) '({lunar month} {thing})) (new-knext-eq '({academic term} {thing}) '({school term} {thing})) (new-knext-eq '({academic session} {thing}) '({school term} {thing})) (new-knext-eq '({session} {thing}) '({school term} {thing})) (new-knext-eq '({hr} {thing}) '({hour} {thing})) (new-knext-eq '({hour} {thing}) '({time of day} {thing})) (new-knext-eq '({season} {thing}) '({time of year} {thing})) (new-knext-eq '({autumn} {thing}) '({fall} {thing})) (new-knext-eq '({age} {thing}) '({long time} {thing})) (new-knext-is-a '({long time} {countable}) '({years} {uncountable})) (new-knext-is-a '({years} {uncountable}) '({long time} {countable})) (new-knext-eq '({minute} {thing}) '({moment} {thing})) (new-knext-eq '({second} {thing}) '({moment} {thing})) (new-knext-eq '({instant} {thing}) '({moment} {thing})) (new-knext-eq '({flash} {thing}) '({blink of an eye} {thing})) (new-knext-eq '({heartbeat} {thing}) '({blink of an eye} {thing})) (new-knext-eq '({instant} {thing}) '({blink of an eye} {thing})) (new-knext-eq '({jiffy} {thing}) '({blink of an eye} {thing})) (new-knext-eq '({split second} {thing}) '({blink of an eye} {thing})) (new-knext-eq '({trice} {thing}) '({blink of an eye} {thing})) (new-knext-eq '({twinkling} {thing}) '({blink of an eye} {thing})) (new-knext-eq '({wink} {thing}) '({blink of an eye} {thing})) (new-knext-eq '({new york minute} {thing}) '({blink of an eye} {thing})) (new-knext-eq '({epoch} {thing}) '({era} {thing})) (new-knext-eq '({day of remembrance} {thing}) '({anniversary} {thing})) (new-knext-eq '({age} {thing}) '({historic period} {thing})) (new-knext-eq '({prehistoric culture} {thing}) '({prehistory} {thing})) (new-knext-eq '({frame} {thing}) '({inning} {thing})) (new-knext-eq '({turn} {thing}) '({bout} {thing})) (new-knext-eq '({round} {thing}) '({bout} {thing})) (new-knext-eq '({period of play} {thing}) '({playing period} {thing})) (new-knext-is-a '({playing period} {countable}) '({play} {uncountable})) (new-knext-is-a '({play} {uncountable}) '({playing period} {countable})) (new-knext-eq '({beginning} {thing}) '({commencement} {thing})) (new-knext-eq '({first} {thing}) '({commencement} {thing})) (new-knext-eq '({outset} {thing}) '({commencement} {thing})) (new-knext-eq '({start} {thing}) '({commencement} {thing})) (new-knext-eq '({kickoff} {thing}) '({commencement} {thing})) (new-knext-eq '({starting time} {thing}) '({commencement} {thing})) (new-knext-eq '({showtime} {thing}) '({commencement} {thing})) (new-knext-eq '({offset} {thing}) '({commencement} {thing})) (new-knext-type {beginning} {countable}) (new-knext-type {end} {countable}) (new-is-not-a {beginning} {end}) (new-knext-type {beginning} {countable}) (new-knext-type {middle} {countable}) (new-is-not-a {beginning} {middle}) (new-knext-type {youth} {countable}) (new-knext-type {early days} {countable}) (new-statement {early days} {consists of} {youth}) (new-knext-is-a '({early days} {uncountable}) '({youth} {countable})) (new-knext-eq '({presidential term} {thing}) '({presidency} {thing})) (new-knext-eq '({administration} {thing}) '({presidency} {thing})) (new-knext-type {middle} {countable}) (new-knext-type {end} {countable}) (new-is-not-a {middle} {end}) (new-knext-type {middle} {countable}) (new-knext-type {beginning} {countable}) (new-is-not-a {middle} {beginning}) (new-knext-eq '({ending} {thing}) '({end} {thing})) (new-knext-type {end} {countable}) (new-knext-type {middle} {countable}) (new-is-not-a {end} {middle}) (new-knext-type {end} {countable}) (new-knext-type {beginning} {countable}) (new-is-not-a {end} {beginning}) (new-knext-eq '({finale} {thing}) '({stopping point} {thing})) (new-knext-eq '({finis} {thing}) '({stopping point} {thing})) (new-knext-eq '({finish} {thing}) '({stopping point} {thing})) (new-knext-eq '({last} {thing}) '({stopping point} {thing})) (new-knext-eq '({conclusion} {thing}) '({stopping point} {thing})) (new-knext-eq '({close} {thing}) '({stopping point} {thing})) (new-knext-eq '({intermission} {thing}) '({pause} {thing})) (new-knext-eq '({break} {thing}) '({pause} {thing})) (new-knext-eq '({interruption} {thing}) '({pause} {thing})) (new-knext-eq '({suspension} {thing}) '({pause} {thing})) (new-knext-eq '({hold} {thing}) '({delay} {thing})) (new-knext-eq '({time lag} {thing}) '({delay} {thing})) (new-knext-eq '({postponement} {thing}) '({delay} {thing})) (new-knext-eq '({wait} {thing}) '({delay} {thing})) (new-knext-is-a '({sleep} {uncountable}) '({nap} {countable})) (new-knext-is-a '({nap} {countable}) '({sleep} {uncountable})) (new-knext-eq '({relief} {thing}) '({respite} {thing})) (new-knext-is-a '({respite} {uncountable}) '({rest period} {countable})) (new-knext-is-a '({rest period} {countable}) '({respite} {uncountable})) (new-knext-eq '({lull} {thing}) '({letup} {thing})) (new-knext-eq '({lease} {thing}) '({term of a contract} {thing})) (new-knext-eq '({death rate} {thing}) '({deathrate} {thing})) (new-knext-eq '({mortality rate} {thing}) '({deathrate} {thing})) (new-knext-eq '({fatality rate} {thing}) '({deathrate} {thing})) (new-knext-is-a '({deathrate} {countable}) '({mortality} {uncountable})) (new-knext-is-a '({mortality} {uncountable}) '({deathrate} {countable})) (new-knext-eq '({rate of flow} {thing}) '({flow rate} {thing})) (new-knext-eq '({frequence} {thing}) '({frequency} {thing})) (new-knext-eq '({heart rate} {thing}) '({pulse rate} {thing})) (new-knext-eq '({velocity} {thing}) '({speed} {thing})) (new-knext-eq '({pace} {thing}) '({tempo} {thing})) (new-knext-eq '({stage} {thing}) '({phase} {thing})) (new-knext-eq '({duty period} {thing}) '({work shift} {thing})) (new-knext-eq '({hitch} {thing}) '({enlistment} {thing})) (new-knext-eq '({tour of duty} {thing}) '({enlistment} {thing})) (new-knext-eq '({duty tour} {thing}) '({enlistment} {thing})) (new-knext-eq '({tour} {thing}) '({enlistment} {thing})) (new-knext-is-a '({whole} {countable}) '({object} {countable})) (new-knext-is-a '({living thing} {countable}) '({whole} {countable})) (new-knext-is-a '({organism} {countable}) '({living thing} {countable})) (new-knext-is-a '({cell} {countable}) '({living thing} {countable})) (new-knext-is-a '({person} {countable}) '({organism} {countable})) (new-knext-is-a '({person} {countable}) '({causal agent} {countable})) (new-knext-is-a '({animal} {countable}) '({organism} {countable})) (new-knext-is-a '({plant} {countable}) '({organism} {countable})) (new-knext-type {plant life} {uncountable}) (new-knext-type {organism} {uncountable}) (new-statement {plant life} {consists of} {organism}) (new-knext-is-a '({natural object} {countable}) '({whole} {countable})) (new-knext-is-a '({artifact} {countable}) '({whole} {countable})) (new-knext-is-a '({article} {countable}) '({artifact} {countable})) (new-knext-is-a '({motivation} {countable}) '({psychological feature} {countable})) (new-knext-is-a '({feeling} {countable}) '({state} {countable})) (new-knext-is-a '({location} {countable}) '({object} {countable})) (new-knext-is-a '({event} {countable}) '({psychological feature} {countable})) (new-knext-is-a '({human action} {countable}) '({event} {countable})) (new-knext-is-a '({phenomenon} {countable}) '({physical process} {countable})) (new-knext-is-a '({benignity} {countable}) '({action} {countable})) (new-knext-is-a '({accomplishment} {countable}) '({action} {countable})) (new-knext-is-a '({feat} {countable}) '({accomplishment} {countable})) (new-knext-is-a '({action} {countable}) '({human action} {countable})) (new-knext-is-a '({course of action} {countable}) '({action} {countable})) (new-knext-is-a '({interaction} {uncountable}) '({action} {countable})) (new-knext-is-a '({contact} {countable}) '({interaction} {countable})) (new-knext-is-a '({interchange} {countable}) '({interaction} {countable})) (new-knext-is-a '({playing} {uncountable}) '({action} {countable})) (new-knext-is-a '({swordplay} {uncountable}) '({action} {countable})) (new-knext-is-a '({bowling} {uncountable}) '({playing} {uncountable})) (new-knext-is-a '({acquiring} {uncountable}) '({human action} {countable})) (new-knext-is-a '({causing} {uncountable}) '({human action} {countable})) (new-knext-is-a '({obstetrical delivery} {countable}) '({human action} {countable})) (new-knext-is-a '({departure} {countable}) '({human action} {countable})) (new-knext-is-a '({leaving} {uncountable}) '({human action} {countable})) (new-knext-is-a '({discovery} {uncountable}) '({human action} {countable})) (new-knext-is-a '({disposal} {uncountable}) '({human action} {countable})) (new-knext-is-a '({hit} {countable}) '({feat} {countable})) (new-knext-is-a '({implementation} {uncountable}) '({human action} {countable})) (new-knext-is-a '({equalization} {uncountable}) '({human action} {countable})) (new-knext-is-a '({leveling} {uncountable}) '({human action} {countable})) (new-knext-is-a '({propulsion} {uncountable}) '({human action} {countable})) (new-knext-is-a '({actuation} {uncountable}) '({human action} {countable})) (new-knext-is-a '({recovery} {uncountable}) '({human action} {countable})) (new-knext-is-a '({running away} {countable}) '({human action} {countable})) (new-knext-is-a '({stunt} {countable}) '({feat} {countable})) (new-knext-is-a '({touching} {uncountable}) '({human action} {countable})) (new-knext-is-a '({arrival} {countable}) '({accomplishment} {countable})) (new-knext-is-a '({arrival} {countable}) '({action} {countable})) (new-knext-is-a '({attainment} {countable}) '({arrival} {countable})) (new-knext-is-a '({advent} {countable}) '({arrival} {countable})) (new-knext-is-a '({entry} {countable}) '({arrival} {countable})) (new-knext-is-a '({incoming} {countable}) '({arrival} {countable})) (new-knext-is-a '({registration} {countable}) '({entry} {countable})) (new-knext-is-a '({registration} {countable}) '({incoming} {countable})) (new-knext-is-a '({return} {countable}) '({arrival} {countable})) (new-knext-is-a '({parting} {countable}) '({departure} {countable})) (new-knext-is-a '({parting} {countable}) '({leaving} {countable})) (new-knext-is-a '({disappearance} {countable}) '({departure} {countable})) (new-knext-is-a '({disappearance} {countable}) '({leaving} {countable})) (new-knext-is-a '({withdrawal} {countable}) '({departure} {countable})) (new-knext-is-a '({withdrawal} {countable}) '({leaving} {countable})) (new-knext-is-a '({emigration} {countable}) '({migration} {countable})) (new-knext-is-a '({immigration} {countable}) '({migration} {countable})) (new-knext-is-a '({exit} {countable}) '({departure} {countable})) (new-knext-is-a '({exit} {countable}) '({leaving} {countable})) (new-knext-is-a '({escape} {countable}) '({running away} {countable})) (new-knext-is-a '({flight} {countable}) '({running away} {countable})) (new-knext-is-a '({getaway} {countable}) '({escape} {countable})) (new-knext-is-a '({getaway} {countable}) '({flight} {countable})) (new-knext-is-a '({dispatch} {countable}) '({departure} {countable})) (new-knext-is-a '({dispatch} {countable}) '({leaving} {countable})) (new-knext-is-a '({shipment} {countable}) '({departure} {countable})) (new-knext-is-a '({shipment} {countable}) '({leaving} {countable})) (new-knext-is-a '({attainment} {countable}) '({accomplishment} {countable})) (new-knext-is-a '({record} {countable}) '({attainment} {countable})) (new-knext-is-a '({success} {countable}) '({attainment} {countable})) (new-knext-is-a '({winning} {uncountable}) '({success} {countable})) (new-knext-is-a '({hit} {countable}) '({success} {countable})) (new-knext-is-a '({passing} {uncountable}) '({success} {countable})) (new-knext-is-a '({qualifying} {countable}) '({success} {countable})) (new-knext-is-a '({course credit} {countable}) '({attainment} {countable})) (new-knext-is-a '({nonaccomplishment} {countable}) '({human action} {countable})) (new-knext-is-a '({failure} {countable}) '({nonaccomplishment} {countable})) (new-knext-is-a '({loss} {countable}) '({failure} {countable})) (new-knext-is-a '({capitulation} {countable}) '({loss} {countable})) (new-knext-is-a '({fall} {countable}) '({loss} {countable})) (new-knext-is-a '({mistake} {countable}) '({nonaccomplishment} {countable})) (new-knext-is-a '({blot} {countable}) '({mistake} {countable})) (new-knext-is-a '({smirch} {countable}) '({mistake} {countable})) (new-knext-type {confusion} {uncountable}) (new-knext-type {mistake} {uncountable}) (new-statement {confusion} {consists of} {mistake}) (new-knext-is-a '({distortion} {countable}) '({mistake} {countable})) (new-knext-is-a '({slip} {countable}) '({mistake} {countable})) (new-knext-is-a '({oversight} {countable}) '({mistake} {countable})) (new-knext-is-a '({lapse} {countable}) '({mistake} {countable})) (new-knext-is-a '({omission} {countable}) '({mistake} {countable})) (new-knext-is-a '({blunder} {countable}) '({mistake} {countable})) (new-knext-is-a '({bungle} {countable}) '({mistake} {countable})) (new-knext-is-a '({ballup} {countable}) '({mistake} {countable})) (new-knext-is-a '({fluff} {countable}) '({blunder} {countable})) (new-knext-is-a '({fluff} {countable}) '({bungle} {countable})) (new-knext-is-a '({faux pas} {countable}) '({blunder} {countable})) (new-knext-is-a '({faux pas} {countable}) '({bungle} {countable})) (new-knext-is-a '({gaucherie} {countable}) '({blunder} {countable})) (new-knext-is-a '({gaucherie} {countable}) '({bungle} {countable})) (new-knext-is-a '({acquisition} {uncountable}) '({acquiring} {uncountable})) (new-knext-is-a '({obtainment} {countable}) '({acquiring} {uncountable})) (new-knext-is-a '({purchase} {countable}) '({acquisition} {countable})) (new-knext-is-a '({buying} {countable}) '({purchase} {countable})) (new-knext-is-a '({shopping} {countable}) '({buying} {countable})) (new-knext-is-a '({acceptance} {countable}) '({acquisition} {countable})) (new-knext-is-a '({assumption} {uncountable}) '({human action} {countable})) (new-knext-is-a '({inheritance} {countable}) '({acquisition} {countable})) (new-knext-is-a '({restitution} {countable}) '({acquisition} {countable})) (new-knext-is-a '({regaining} {countable}) '({acquisition} {countable})) (new-knext-is-a '({receipt} {countable}) '({acquiring} {uncountable})) (new-knext-is-a '({giving} {countable}) '({disposal} {countable})) (new-knext-is-a '({abandonment} {countable}) '({disposal} {countable})) (new-knext-is-a '({discard} {countable}) '({abandonment} {countable})) (new-knext-is-a '({throwing away} {countable}) '({abandonment} {countable})) (new-knext-is-a '({auction} {countable}) '({sale} {countable})) (new-knext-is-a '({auction sale} {countable}) '({sale} {countable})) (new-knext-is-a '({rescue} {countable}) '({recovery} {countable})) (new-knext-is-a '({deliverance} {countable}) '({recovery} {countable})) (new-knext-is-a '({carrying out} {uncountable}) '({action} {countable})) (new-knext-is-a '({carrying into action} {uncountable}) '({action} {countable})) (new-knext-is-a '({mechanism} {uncountable}) '({carrying out} {uncountable})) (new-knext-is-a '({mechanism} {countable}) '({carrying into action} {countable})) (new-knext-is-a '({extemporization} {countable}) '({performance} {countable})) (add-english-names (list {improvization} {improvisation} {improvization} {improvisation}) (list "improvization" "improvisation" "improvization" "improvisation")) (new-knext-is-a '({improvization} {countable}) '({performance} {countable})) (new-knext-is-a '({magic trick} {countable}) '({performance} {countable})) (new-knext-is-a '({conjuration} {countable}) '({performance} {countable})) (new-knext-is-a '({drive} {uncountable}) '({propulsion} {uncountable})) (new-knext-is-a '({drive} {countable}) '({actuation} {countable})) (new-knext-is-a '({driving force} {countable}) '({propulsion} {uncountable})) (new-knext-is-a '({driving force} {countable}) '({actuation} {countable})) (new-knext-is-a '({impulsion} {countable}) '({drive} {countable})) (new-knext-is-a '({impulsion} {countable}) '({driving force} {countable})) (new-knext-is-a '({bowl} {countable}) '({propulsion} {uncountable})) (new-knext-is-a '({bowl} {countable}) '({actuation} {countable})) (new-knext-is-a '({throw} {countable}) '({propulsion} {uncountable})) (new-knext-is-a '({throw} {countable}) '({actuation} {countable})) (new-knext-is-a '({fling} {countable}) '({throw} {countable})) (new-knext-is-a '({leaner} {countable}) '({throw} {countable})) (new-knext-is-a '({push} {countable}) '({propulsion} {uncountable})) (new-knext-is-a '({push} {countable}) '({actuation} {countable})) (new-knext-is-a '({pushing} {uncountable}) '({propulsion} {uncountable})) (new-knext-is-a '({pushing} {countable}) '({actuation} {countable})) (new-knext-is-a '({pressing} {countable}) '({push} {countable})) (new-knext-is-a '({pressing} {countable}) '({pushing} {countable})) (new-knext-is-a '({pull} {countable}) '({propulsion} {uncountable})) (new-knext-is-a '({pull} {countable}) '({actuation} {countable})) (new-knext-is-a '({pulling} {uncountable}) '({propulsion} {uncountable})) (new-knext-is-a '({pulling} {countable}) '({actuation} {countable})) (new-knext-is-a '({drag} {countable}) '({pull} {countable})) (new-knext-is-a '({drag} {countable}) '({pulling} {countable})) (new-knext-is-a '({draw} {countable}) '({pull} {countable})) (new-knext-is-a '({draw} {countable}) '({pulling} {countable})) (new-knext-is-a '({haul} {countable}) '({pull} {countable})) (new-knext-is-a '({haul} {countable}) '({pulling} {countable})) (add-english-names (list {draft} {draught} {draft}) (list "draft" "draught" "draft")) (add-english-names (list {draft} {draught} {draft}) (list "draft" "draught" "draft")) (new-knext-is-a '({draft} {countable}) '({pulling} {countable})) (new-knext-is-a '({drawing} {countable}) '({pull} {countable})) (new-knext-is-a '({drawing} {countable}) '({pulling} {countable})) (new-knext-is-a '({raise} {uncountable}) '({propulsion} {uncountable})) (new-knext-is-a '({raise} {countable}) '({actuation} {countable})) (new-knext-is-a '({heave} {countable}) '({propulsion} {uncountable})) (new-knext-is-a '({heave} {countable}) '({actuation} {countable})) (new-knext-is-a '({ejection} {uncountable}) '({propulsion} {uncountable})) (new-knext-is-a '({ejection} {countable}) '({actuation} {countable})) (new-knext-is-a '({forcing out} {countable}) '({propulsion} {uncountable})) (new-knext-is-a '({forcing out} {countable}) '({actuation} {countable})) (new-knext-is-a '({jumping} {uncountable}) '({propulsion} {uncountable})) (new-knext-is-a '({jumping} {countable}) '({actuation} {countable})) (new-knext-is-a '({sending} {uncountable}) '({causing} {uncountable})) (new-knext-is-a '({transmission} {countable}) '({sending} {countable})) (new-knext-is-a '({transmittal} {countable}) '({sending} {countable})) (new-knext-is-a '({mailing} {countable}) '({transmission} {countable})) (new-knext-is-a '({mailing} {countable}) '({transmittal} {countable})) (new-knext-is-a '({wheeling} {uncountable}) '({propulsion} {uncountable})) (new-knext-is-a '({wheeling} {countable}) '({actuation} {countable})) (new-knext-is-a '({shooting} {uncountable}) '({propulsion} {uncountable})) (new-knext-is-a '({shooting} {countable}) '({actuation} {countable})) (new-knext-is-a '({shoot} {countable}) '({shooting} {countable})) (new-knext-is-a '({physical contact} {countable}) '({touching} {countable})) (new-knext-is-a '({wipe} {countable}) '({physical contact} {countable})) (new-knext-is-a '({dab} {countable}) '({touching} {countable})) (new-knext-is-a '({hit} {countable}) '({touching} {countable})) (new-knext-is-a '({hitting} {countable}) '({touching} {countable})) (new-knext-is-a '({base on balls} {countable}) '({accomplishment} {countable})) (new-knext-is-a '({punch} {countable}) '({blow} {countable})) (new-knext-is-a '({lick} {countable}) '({blow} {countable})) (new-knext-is-a '({jab} {countable}) '({touching} {countable})) (new-knext-is-a '({kick} {countable}) '({blow} {countable})) (new-knext-is-a '({kicking} {countable}) '({blow} {countable})) (new-knext-is-a '({kiss} {countable}) '({touching} {countable})) (new-knext-is-a '({snap} {countable}) '({touching} {countable})) (new-knext-is-a '({meshing} {uncountable}) '({snap} {uncountable})) (new-knext-is-a '({interlock} {countable}) '({snap} {countable})) (new-knext-is-a '({interlocking} {countable}) '({snap} {countable})) (new-knext-is-a '({handling} {countable}) '({touching} {countable})) (new-knext-is-a '({fingering} {countable}) '({touching} {countable})) (new-knext-is-a '({checkout} {countable}) '({inspection} {countable})) (new-knext-is-a '({comparison} {countable}) '({examination} {countable})) (new-knext-is-a '({comparing} {uncountable}) '({examination} {uncountable})) (new-knext-is-a '({reexamination} {countable}) '({examination} {countable})) (new-knext-is-a '({tickle} {countable}) '({touching} {countable})) (new-knext-is-a '({tickling} {uncountable}) '({touching} {uncountable})) (new-knext-is-a '({stroke} {countable}) '({touching} {countable})) (new-knext-is-a '({stroking} {countable}) '({touching} {countable})) (new-knext-is-a '({caress} {countable}) '({stroke} {countable})) (new-knext-is-a '({caress} {countable}) '({stroking} {countable})) (new-knext-is-a '({joining} {countable}) '({change of integrity} {countable})) (new-knext-is-a '({adjunction} {countable}) '({joining} {countable})) (new-knext-is-a '({fastening} {countable}) '({joining} {countable})) (new-knext-is-a '({attachment} {countable}) '({joining} {countable})) (new-knext-is-a '({loosening} {countable}) '({modification} {countable})) (new-knext-is-a '({tightening} {countable}) '({modification} {countable})) (new-knext-is-a '({tying} {countable}) '({fastening} {countable})) (new-knext-is-a '({tying} {countable}) '({attachment} {countable})) (new-knext-is-a '({grazing} {uncountable}) '({touching} {uncountable})) (new-knext-is-a '({shaving} {countable}) '({touching} {countable})) (new-knext-is-a '({detection} {countable}) '({discovery} {countable})) (new-knext-is-a '({catching} {uncountable}) '({discovery} {uncountable})) (new-knext-is-a '({determination} {countable}) '({discovery} {countable})) (new-knext-is-a '({identification} {countable}) '({determination} {countable})) (new-knext-is-a '({diagnosis} {countable}) '({identification} {countable})) (new-knext-is-a '({diagnosing} {uncountable}) '({identification} {uncountable})) (new-knext-is-a '({resolution} {countable}) '({determination} {countable})) (new-knext-is-a '({solving} {uncountable}) '({determination} {uncountable})) (new-knext-is-a '({trigger} {countable}) '({causing} {uncountable})) (new-knext-is-a '({initiation} {uncountable}) '({causing} {uncountable})) (new-knext-is-a '({coercion} {uncountable}) '({causing} {uncountable})) (new-knext-is-a '({influence} {uncountable}) '({causing} {uncountable})) (new-knext-is-a '({impingement} {countable}) '({influence} {countable})) (new-knext-is-a '({encroachment} {countable}) '({influence} {countable})) (new-knext-is-a '({inducement} {countable}) '({causing} {uncountable})) (new-knext-is-a '({inducing} {uncountable}) '({causing} {uncountable})) (new-knext-type {corruption} {uncountable}) (new-knext-type {inducement} {uncountable}) (new-statement {corruption} {consists of} {inducement}) (new-knext-is-a '({corruption} {uncountable}) '({inducing} {uncountable})) (new-knext-is-a '({enticement} {countable}) '({influence} {countable})) (new-knext-is-a '({temptation} {countable}) '({influence} {countable})) (new-knext-is-a '({wheedling} {countable}) '({enticement} {countable})) (new-knext-is-a '({wheedling} {countable}) '({temptation} {countable})) (new-knext-is-a '({selection} {uncountable}) '({action} {countable})) (new-knext-is-a '({option} {countable}) '({action} {countable})) (new-knext-is-a '({coloration} {countable}) '({selection} {countable})) (new-knext-is-a '({coloration} {countable}) '({option} {countable})) (new-knext-is-a '({decision} {countable}) '({selection} {countable})) (new-knext-is-a '({decision} {countable}) '({option} {countable})) (new-knext-is-a '({reversal} {countable}) '({change} {countable})) (new-knext-is-a '({appointment} {countable}) '({decision} {countable})) (new-knext-is-a '({designation} {countable}) '({decision} {countable})) (new-knext-is-a '({nomination} {countable}) '({appointment} {countable})) (new-knext-is-a '({nomination} {countable}) '({designation} {countable})) (new-knext-is-a '({delegacy} {countable}) '({appointment} {countable})) (new-knext-is-a '({delegacy} {countable}) '({designation} {countable})) (new-knext-is-a '({move} {countable}) '({decision} {countable})) (new-knext-is-a '({move} {countable}) '({turn} {countable})) (new-knext-is-a '({tactical maneuver} {countable}) '({move} {countable})) (new-knext-is-a '({parking} {countable}) '({tactical maneuver} {countable})) (new-knext-is-a '({move} {countable}) '({change} {countable})) (new-knext-is-a '({means} {uncountable}) '({implementation} {uncountable})) (new-knext-is-a '({way} {countable}) '({implementation} {countable})) (new-knext-type {escape} {countable}) (new-knext-type {means} {countable}) (new-statement {means} {consists of} {escape}) (new-knext-is-a '({escape} {countable}) '({way} {countable})) (new-knext-is-a '({measure} {countable}) '({tactical maneuver} {countable})) (new-knext-is-a '({adoption} {uncountable}) '({blessing} {uncountable})) (new-knext-is-a '({adoption} {countable}) '({approval} {countable})) (new-knext-is-a '({acceptation} {countable}) '({blessing} {uncountable})) (new-knext-is-a '({acceptation} {countable}) '({approval} {countable})) (new-knext-is-a '({election} {countable}) '({selection} {countable})) (new-knext-is-a '({election} {countable}) '({option} {countable})) (new-knext-is-a '({election} {countable}) '({vote} {countable})) (new-knext-is-a '({vote} {countable}) '({group action} {countable})) (new-knext-is-a '({primary} {countable}) '({election} {countable})) (new-knext-is-a '({vote} {countable}) '({selection} {countable})) (new-knext-is-a '({vote} {countable}) '({option} {countable})) (new-knext-is-a '({voting} {countable}) '({selection} {countable})) (new-knext-is-a '({voting} {countable}) '({option} {countable})) (new-knext-is-a '({balloting} {uncountable}) '({selection} {uncountable})) (new-knext-type {balloting} {uncountable}) (new-knext-type {option} {uncountable}) (new-statement {balloting} {consists of} {option}) (new-knext-is-a '({equation} {countable}) '({equalization} {countable})) (new-knext-is-a '({equation} {uncountable}) '({leveling} {uncountable})) (new-knext-is-a '({equating} {uncountable}) '({equalization} {uncountable})) (new-knext-is-a '({equating} {uncountable}) '({leveling} {uncountable})) (new-knext-is-a '({solution} {countable}) '({success} {countable})) (new-knext-is-a '({change} {uncountable}) '({action} {countable})) (new-knext-is-a '({saving} {countable}) '({action} {countable})) (new-knext-is-a '({habituation} {uncountable}) '({adjustment} {uncountable})) (new-knext-is-a '({turning} {countable}) '({change} {countable})) (new-knext-is-a '({switch} {countable}) '({change} {countable})) (new-knext-is-a '({switching} {countable}) '({change} {countable})) (new-knext-is-a '({substitution} {countable}) '({change} {countable})) (new-knext-is-a '({replacement} {countable}) '({substitution} {countable})) (new-knext-is-a '({replacing} {uncountable}) '({substitution} {uncountable})) (new-knext-is-a '({promotion} {countable}) '({change} {countable})) (new-knext-is-a '({demotion} {countable}) '({change} {countable})) (new-knext-is-a '({change of state} {countable}) '({change} {countable})) (new-knext-is-a '({modification} {countable}) '({change} {countable})) (new-knext-is-a '({passage} {countable}) '({change of state} {countable})) (new-knext-is-a '({transfer} {countable}) '({change of state} {countable})) (new-knext-is-a '({transference} {countable}) '({change of state} {countable})) (new-knext-is-a '({resistance} {uncountable}) '({action} {countable})) (new-knext-is-a '({reaction} {countable}) '({resistance} {countable})) (new-knext-is-a '({rejection} {uncountable}) '({human action} {countable})) (new-knext-is-a '({abandonment} {countable}) '({rejection} {countable})) (new-knext-is-a '({forsaking} {countable}) '({rejection} {countable})) (new-knext-is-a '({forfeit} {uncountable}) '({human action} {countable})) (new-knext-is-a '({sacrifice} {countable}) '({human action} {countable})) (new-knext-is-a '({ending} {countable}) '({change of state} {countable})) (new-knext-is-a '({finishing} {countable}) '({completion} {countable})) (new-knext-is-a '({finishing} {countable}) '({windup} {countable})) (new-knext-is-a '({closing curtain} {countable}) '({finishing} {countable})) (new-knext-is-a '({completion} {countable}) '({ending} {countable})) (new-knext-is-a '({windup} {countable}) '({ending} {countable})) (new-knext-is-a '({finalization} {countable}) '({completion} {countable})) (new-knext-is-a '({finalization} {countable}) '({windup} {countable})) (new-knext-is-a '({retirement} {countable}) '({ending} {countable})) (new-knext-is-a '({relinquishment} {countable}) '({ending} {countable})) (new-knext-is-a '({relinquishing} {uncountable}) '({ending} {uncountable})) (new-knext-is-a '({cession} {countable}) '({relinquishment} {countable})) (new-knext-is-a '({cession} {uncountable}) '({relinquishing} {uncountable})) (new-knext-is-a '({ceding} {countable}) '({relinquishment} {countable})) (new-knext-is-a '({ceding} {countable}) '({relinquishing} {uncountable})) (new-knext-is-a '({handover} {countable}) '({relinquishment} {countable})) (new-knext-is-a '({handover} {countable}) '({relinquishing} {uncountable})) (new-knext-is-a '({surrender} {countable}) '({legal transfer} {countable})) (new-knext-is-a '({waiver} {countable}) '({relinquishment} {countable})) (new-knext-is-a '({waiver} {countable}) '({relinquishing} {uncountable})) (new-knext-is-a '({discharge} {countable}) '({relinquishment} {countable})) (new-knext-is-a '({discharge} {uncountable}) '({relinquishing} {uncountable})) (new-knext-is-a '({granting immunity} {countable}) '({waiver} {countable})) (new-knext-is-a '({granting immunity} {countable}) '({discharge} {countable})) (new-knext-is-a '({dissolution} {countable}) '({ending} {countable})) (new-knext-is-a '({breakup} {countable}) '({ending} {countable})) (new-knext-is-a '({dismission} {countable}) '({ending} {countable})) (new-knext-is-a '({sacking} {countable}) '({ending} {countable})) (new-knext-is-a '({destruction} {countable}) '({ending} {countable})) (new-knext-is-a '({laying waste} {uncountable}) '({destruction} {uncountable})) (new-knext-is-a '({ruination} {countable}) '({destruction} {countable})) (new-knext-is-a '({wrecking} {countable}) '({destruction} {countable})) (new-knext-is-a '({annihilation} {countable}) '({destruction} {countable})) (new-knext-is-a '({obliteration} {uncountable}) '({destruction} {uncountable})) (new-knext-is-a '({decimation} {countable}) '({destruction} {countable})) (new-knext-is-a '({kill} {countable}) '({ending} {countable})) (new-knext-is-a '({putting to death} {uncountable}) '({ending} {uncountable})) (new-knext-is-a '({death} {countable}) '({kill} {countable})) (new-knext-is-a '({death} {uncountable}) '({putting to death} {uncountable})) (new-knext-is-a '({homicide} {countable}) '({kill} {countable})) (new-knext-is-a '({homicide} {countable}) '({putting to death} {uncountable})) (new-knext-is-a '({murder} {countable}) '({homicide} {countable})) (new-knext-is-a '({slaying} {countable}) '({homicide} {countable})) (new-knext-is-a '({bloodshed} {countable}) '({murder} {countable})) (new-knext-is-a '({bloodshed} {countable}) '({slaying} {countable})) (new-knext-is-a '({dispatch} {countable}) '({kill} {countable})) (new-knext-is-a '({dispatch} {uncountable}) '({putting to death} {uncountable})) (new-knext-is-a '({despatch} {countable}) '({kill} {countable})) (new-knext-is-a '({despatch} {countable}) '({putting to death} {uncountable})) (new-knext-is-a '({fell} {countable}) '({kill} {countable})) (new-knext-is-a '({fell} {countable}) '({putting to death} {uncountable})) (new-knext-is-a '({suicide} {countable}) '({kill} {countable})) (new-knext-is-a '({suicide} {countable}) '({putting to death} {uncountable})) (new-knext-is-a '({elimination} {uncountable}) '({murder} {uncountable})) (new-knext-type {elimination} {uncountable}) (new-knext-type {slaying} {uncountable}) (new-statement {elimination} {consists of} {slaying}) (new-knext-is-a '({liquidation} {countable}) '({murder} {countable})) (new-knext-is-a '({liquidation} {countable}) '({slaying} {countable})) (new-knext-is-a '({slaughter} {countable}) '({murder} {countable})) (new-knext-is-a '({slaughter} {countable}) '({slaying} {countable})) (new-knext-is-a '({massacre} {countable}) '({murder} {countable})) (new-knext-is-a '({massacre} {countable}) '({slaying} {countable})) (new-knext-is-a '({carnage} {uncountable}) '({murder} {uncountable})) (new-knext-type {carnage} {uncountable}) (new-knext-type {slaying} {uncountable}) (new-statement {carnage} {consists of} {slaying}) (new-knext-is-a '({shooting} {countable}) '({homicide} {countable})) (new-knext-is-a '({suffocation} {countable}) '({kill} {countable})) (new-knext-is-a '({suffocation} {uncountable}) '({putting to death} {uncountable})) (new-knext-is-a '({asphyxiation} {countable}) '({kill} {countable})) (new-knext-is-a '({asphyxiation} {countable}) '({putting to death} {uncountable})) (new-knext-is-a '({strangling} {countable}) '({suffocation} {countable})) (new-knext-is-a '({strangling} {countable}) '({asphyxiation} {countable})) (new-knext-is-a '({strangulation} {countable}) '({suffocation} {countable})) (new-knext-is-a '({strangulation} {countable}) '({asphyxiation} {countable})) (new-knext-is-a '({ritual killing} {countable}) '({kill} {countable})) (new-knext-is-a '({ritual killing} {countable}) '({putting to death} {uncountable})) (new-knext-is-a '({liquidation} {countable}) '({ending} {countable})) (new-knext-is-a '({fade} {countable}) '({ending} {countable})) (new-knext-is-a '({abortion} {countable}) '({ending} {countable})) (new-knext-is-a '({spontaneous abortion} {countable}) '({abortion} {countable})) (new-knext-is-a '({nullification} {countable}) '({change of state} {countable})) (new-knext-is-a '({override} {countable}) '({change of state} {countable})) (add-english-names (list {cancelation} {cancellation} {cancellation}) (list "cancelation" "cancellation" "cancellation")) (new-knext-is-a '({cancelation} {countable}) '({nullification} {countable})) (add-english-names (list {cancelation} {cancellation} {cancellation}) (list "cancelation" "cancellation" "cancellation")) (new-knext-is-a '({cancelation} {countable}) '({override} {countable})) (new-knext-is-a '({reversal} {countable}) '({change of state} {countable})) (new-knext-is-a '({beginning} {countable}) '({change of state} {countable})) (new-knext-is-a '({commencement} {countable}) '({change of state} {countable})) (new-knext-is-a '({establishment} {countable}) '({beginning} {countable})) (new-knext-is-a '({establishment} {countable}) '({commencement} {countable})) (add-english-names (list {organization} {organisation} {organization} {organisation}) (list "organization" "organisation" "organization" "organisation")) (new-knext-is-a '({organization} {countable}) '({beginning} {countable})) (add-english-names (list {organization} {organisation} {organization} {organisation}) (list "organization" "organisation" "organization" "organisation")) (new-knext-is-a '({first step} {countable}) '({beginning} {countable})) (new-knext-is-a '({first step} {countable}) '({commencement} {countable})) (new-knext-is-a '({initiative} {countable}) '({beginning} {countable})) (new-knext-is-a '({initiative} {countable}) '({commencement} {countable})) (new-knext-is-a '({inauguration} {countable}) '({beginning} {countable})) (new-knext-is-a '({inauguration} {countable}) '({commencement} {countable})) (new-knext-is-a '({startup} {countable}) '({beginning} {countable})) (new-knext-is-a '({startup} {countable}) '({commencement} {countable})) (new-knext-is-a '({founding} {countable}) '({beginning} {countable})) (new-knext-is-a '({founding} {countable}) '({commencement} {countable})) (new-knext-is-a '({instauration} {countable}) '({beginning} {countable})) (new-knext-is-a '({instauration} {countable}) '({commencement} {countable})) (add-english-names (list {instillment} {instilment} {installation} {instilment}) (list "instillment" "instilment" "installation" "instilment")) (new-knext-is-a '({instillment} {countable}) '({beginning} {countable})) (add-english-names (list {instillment} {instilment} {installation} {instilment}) (list "instillment" "instilment" "installation" "instilment")) (new-knext-is-a '({instillment} {countable}) '({commencement} {countable})) (new-knext-is-a '({installing} {uncountable}) '({beginning} {uncountable})) (new-knext-type {installing} {uncountable}) (new-knext-type {commencement} {uncountable}) (new-statement {installing} {consists of} {commencement}) (new-knext-is-a '({installment} {countable}) '({beginning} {countable})) (new-knext-is-a '({installment} {countable}) '({commencement} {countable})) (new-knext-type {cooking} {uncountable}) (new-knext-type {change of state} {uncountable}) (new-statement {cooking} {consists of} {change of state}) (new-knext-is-a '({preparation} {countable}) '({change of state} {countable})) (new-knext-is-a '({toasting} {uncountable}) '({cooking} {uncountable})) (new-knext-is-a '({toasting} {countable}) '({preparation} {countable})) (new-knext-is-a '({frying} {uncountable}) '({cooking} {uncountable})) (new-knext-is-a '({frying} {countable}) '({preparation} {countable})) (new-knext-is-a '({improvement} {countable}) '({change of state} {countable})) (new-knext-is-a '({progress} {countable}) '({development} {countable})) (new-knext-is-a '({forwarding} {uncountable}) '({progress} {uncountable})) (new-knext-is-a '({furtherance} {countable}) '({progress} {countable})) (new-knext-is-a '({development} {countable}) '({improvement} {countable})) (new-knext-is-a '({cleaning} {countable}) '({improvement} {countable})) (new-knext-is-a '({cleansing} {countable}) '({improvement} {countable})) (new-knext-is-a '({sweeping} {countable}) '({cleaning} {countable})) (new-knext-is-a '({sweeping} {countable}) '({cleansing} {countable})) (new-knext-is-a '({wash} {uncountable}) '({work} {uncountable})) (new-knext-is-a '({washing} {uncountable}) '({work} {uncountable})) (new-knext-is-a '({correction} {countable}) '({improvement} {countable})) (new-knext-is-a '({rectification} {countable}) '({improvement} {countable})) (new-knext-is-a '({recompense} {countable}) '({correction} {countable})) (new-knext-is-a '({recompense} {countable}) '({rectification} {countable})) (new-knext-is-a '({indemnification} {countable}) '({recompense} {countable})) (new-knext-is-a '({perfection} {countable}) '({improvement} {countable})) (new-knext-is-a '({reform} {countable}) '({improvement} {countable})) (new-knext-is-a '({amelioration} {countable}) '({improvement} {countable})) (new-knext-is-a '({betterment} {countable}) '({improvement} {countable})) (new-knext-is-a '({beautification} {countable}) '({change of state} {countable})) (new-knext-is-a '({decoration} {countable}) '({change of state} {countable})) (new-knext-is-a '({ornamentation} {countable}) '({decoration} {countable})) (new-knext-is-a '({marking} {countable}) '({decoration} {countable})) (new-knext-is-a '({lineation} {countable}) '({marking} {countable})) (new-knext-is-a '({clearing} {countable}) '({improvement} {countable})) (new-knext-is-a '({clarification} {countable}) '({improvement} {countable})) (new-knext-is-a '({worsening} {countable}) '({change of state} {countable})) (new-knext-is-a '({repair} {countable}) '({improvement} {countable})) (new-knext-is-a '({fix} {countable}) '({improvement} {countable})) (new-knext-is-a '({mending} {uncountable}) '({improvement} {uncountable})) (new-knext-is-a '({patching} {uncountable}) '({repair} {uncountable})) (new-knext-type {patching} {uncountable}) (new-knext-type {fix} {uncountable}) (new-statement {patching} {consists of} {fix}) (new-knext-is-a '({patching} {uncountable}) '({mending} {uncountable})) (new-knext-is-a '({maintenance} {countable}) '({repair} {countable})) (new-knext-is-a '({maintenance} {countable}) '({fix} {countable})) (new-knext-is-a '({maintenance} {uncountable}) '({mending} {uncountable})) (new-knext-is-a '({upkeep} {uncountable}) '({repair} {uncountable})) (new-knext-type {upkeep} {uncountable}) (new-knext-type {fix} {uncountable}) (new-statement {upkeep} {consists of} {fix}) (new-knext-is-a '({upkeep} {uncountable}) '({mending} {uncountable})) (new-knext-is-a '({overhaul} {countable}) '({maintenance} {countable})) (new-knext-is-a '({overhaul} {countable}) '({upkeep} {uncountable})) (new-knext-is-a '({restoration} {countable}) '({repair} {countable})) (new-knext-is-a '({restoration} {countable}) '({fix} {countable})) (new-knext-is-a '({restoration} {uncountable}) '({mending} {uncountable})) (new-knext-is-a '({coaching} {uncountable}) '({employment} {countable})) (new-knext-is-a '({degradation} {countable}) '({change of state} {countable})) (new-knext-is-a '({debasement} {countable}) '({change of state} {countable})) (new-knext-is-a '({corruption} {uncountable}) '({degradation} {uncountable})) (new-knext-type {corruption} {uncountable}) (new-knext-type {debasement} {uncountable}) (new-statement {corruption} {consists of} {debasement}) (new-knext-is-a '({subversion} {countable}) '({degradation} {countable})) (new-knext-is-a '({subversion} {countable}) '({debasement} {countable})) (new-knext-is-a '({demoralization} {uncountable}) '({degradation} {uncountable})) (new-knext-type {demoralization} {uncountable}) (new-knext-type {debasement} {uncountable}) (new-statement {demoralization} {consists of} {debasement}) (new-knext-is-a '({stultification} {countable}) '({degradation} {countable})) (new-knext-is-a '({stultification} {countable}) '({debasement} {countable})) (new-knext-is-a '({impairment} {countable}) '({degradation} {countable})) (new-knext-is-a '({impairment} {countable}) '({debasement} {countable})) (new-knext-is-a '({deadening} {uncountable}) '({degradation} {uncountable})) (new-knext-type {deadening} {uncountable}) (new-knext-type {debasement} {uncountable}) (new-statement {deadening} {consists of} {debasement}) (new-knext-is-a '({profanation} {countable}) '({degradation} {countable})) (new-knext-is-a '({profanation} {countable}) '({debasement} {countable})) (new-knext-is-a '({abasement} {countable}) '({degradation} {countable})) (new-knext-is-a '({abasement} {countable}) '({debasement} {countable})) (new-knext-is-a '({soiling} {countable}) '({change of state} {countable})) (new-knext-is-a '({contamination} {countable}) '({soiling} {countable})) (new-knext-is-a '({wetting} {countable}) '({change of state} {countable})) (new-knext-is-a '({splash} {countable}) '({wetting} {countable})) (new-knext-is-a '({splashing} {countable}) '({wetting} {countable})) (new-knext-type {chewing} {uncountable}) (new-knext-type {change of state} {uncountable}) (new-statement {chewing} {consists of} {change of state}) (new-knext-is-a '({mastication} {countable}) '({change of state} {countable})) (new-knext-is-a '({movement} {countable}) '({change} {countable})) (new-knext-is-a '({move} {countable}) '({change} {countable})) (new-knext-is-a '({approach} {countable}) '({movement} {countable})) (new-knext-is-a '({approach} {countable}) '({move} {countable})) (new-knext-is-a '({coming} {countable}) '({movement} {countable})) (new-knext-is-a '({coming} {countable}) '({move} {countable})) (new-knext-is-a '({progress} {countable}) '({movement} {countable})) (new-knext-is-a '({progress} {countable}) '({move} {countable})) (new-knext-is-a '({advancement} {countable}) '({movement} {countable})) (new-knext-is-a '({advancement} {countable}) '({move} {countable})) (new-knext-is-a '({forward motion} {uncountable}) '({movement} {uncountable})) (new-knext-type {forward motion} {uncountable}) (new-knext-type {move} {uncountable}) (new-statement {forward motion} {consists of} {move}) (new-knext-is-a '({locomotion} {countable}) '({movement} {countable})) (new-knext-is-a '({locomotion} {countable}) '({move} {countable})) (new-knext-is-a '({walk} {countable}) '({locomotion} {countable})) (new-knext-is-a '({walking} {countable}) '({locomotion} {countable})) (new-knext-is-a '({amble} {countable}) '({walk} {countable})) (new-knext-is-a '({saunter} {countable}) '({walk} {countable})) (new-knext-is-a '({walk} {countable}) '({travel} {countable})) (add-english-names (list {traveling} {travelling} {travelling}) (list "traveling" "travelling" "travelling")) (new-knext-is-a '({step} {countable}) '({locomotion} {countable})) (new-knext-is-a '({stride} {countable}) '({step} {countable})) (new-knext-is-a '({tread} {countable}) '({step} {countable})) (new-knext-is-a '({hike} {countable}) '({walk} {countable})) (new-knext-type {hiking} {uncountable}) (new-knext-type {walk} {uncountable}) (new-statement {hiking} {consists of} {walk}) (new-knext-is-a '({march} {countable}) '({walk} {countable})) (new-knext-is-a '({march} {countable}) '({walking} {countable})) (new-knext-is-a '({marching} {countable}) '({walk} {countable})) (new-knext-is-a '({marching} {countable}) '({walking} {countable})) (new-knext-type {wading} {uncountable}) (new-knext-type {walk} {uncountable}) (new-statement {wading} {consists of} {walk}) (new-knext-is-a '({wading} {uncountable}) '({walking} {uncountable})) (new-knext-is-a '({run} {countable}) '({locomotion} {countable})) (new-knext-is-a '({running} {countable}) '({locomotion} {countable})) (new-knext-is-a '({sprint} {countable}) '({run} {countable})) (new-knext-is-a '({sprint} {countable}) '({running} {countable})) (new-knext-is-a '({crawl} {countable}) '({locomotion} {countable})) (new-knext-is-a '({crawling} {uncountable}) '({locomotion} {uncountable})) (new-knext-is-a '({travel} {countable}) '({movement} {countable})) (new-knext-is-a '({travel} {countable}) '({move} {countable})) (add-english-names (list {traveling} {travelling} {travelling}) (list "traveling" "travelling" "travelling")) (add-english-names (list {traveling} {travelling} {travelling}) (list "traveling" "travelling" "travelling")) (new-knext-type {traveling} {uncountable}) (new-knext-type {move} {uncountable}) (new-statement {traveling} {consists of} {move}) (new-knext-is-a '({procession} {uncountable}) '({collection} {countable})) (new-knext-is-a '({procession} {countable}) '({group action} {countable})) (new-knext-is-a '({traversal} {countable}) '({travel} {countable})) (add-english-names (list {traveling} {travelling} {travelling}) (list "traveling" "travelling" "travelling")) (new-knext-is-a '({traverse} {countable}) '({travel} {countable})) (add-english-names (list {traveling} {travelling} {travelling}) (list "traveling" "travelling" "travelling")) (new-knext-is-a '({wandering} {countable}) '({travel} {countable})) (add-english-names (list {traveling} {travelling} {travelling}) (list "traveling" "travelling" "travelling")) (new-knext-is-a '({roving} {countable}) '({travel} {countable})) (add-english-names (list {traveling} {travelling} {travelling}) (list "traveling" "travelling" "travelling")) (new-knext-type {drifting} {uncountable}) (new-knext-type {wandering} {uncountable}) (new-statement {drifting} {consists of} {wandering}) (new-knext-is-a '({drifting} {uncountable}) '({roving} {uncountable})) (new-knext-is-a '({crossing} {countable}) '({travel} {countable})) (add-english-names (list {traveling} {travelling} {travelling}) (list "traveling" "travelling" "travelling")) (new-knext-is-a '({tourism} {uncountable}) '({business enterprise} {countable})) (new-knext-is-a '({tourism} {uncountable}) '({business} {uncountable})) (new-knext-is-a '({driving} {uncountable}) '({steering} {uncountable})) (new-knext-is-a '({driving} {uncountable}) '({travel} {uncountable})) (add-english-names (list {traveling} {travelling} {travelling}) (list "traveling" "travelling" "travelling")) (new-knext-is-a '({motoring} {uncountable}) '({driving} {uncountable})) (new-knext-is-a '({riding} {countable}) '({travel} {countable})) (add-english-names (list {traveling} {travelling} {travelling}) (list "traveling" "travelling" "travelling")) (new-knext-is-a '({horseback riding} {uncountable}) '({travel} {uncountable})) (add-english-names (list {traveling} {travelling} {travelling}) (list "traveling" "travelling" "travelling")) (new-knext-is-a '({air travel} {uncountable}) '({travel} {uncountable})) (add-english-names (list {traveling} {travelling} {travelling}) (list "traveling" "travelling" "travelling")) (new-knext-is-a '({flight} {countable}) '({trip} {countable})) (new-knext-is-a '({flight} {uncountable}) '({air travel} {uncountable})) (new-knext-is-a '({flying} {uncountable}) '({air travel} {uncountable})) (new-knext-is-a '({jump} {countable}) '({descent} {countable})) (new-knext-is-a '({parachuting} {uncountable}) '({descent} {uncountable})) (new-knext-is-a '({takeoff} {countable}) '({departure} {countable})) (new-knext-is-a '({takeoff} {countable}) '({leaving} {countable})) (new-knext-is-a '({journey} {countable}) '({travel} {countable})) (add-english-names (list {traveling} {travelling} {travelling}) (list "traveling" "travelling" "travelling")) (new-knext-is-a '({journeying} {countable}) '({travel} {countable})) (add-english-names (list {traveling} {travelling} {travelling}) (list "traveling" "travelling" "travelling")) (new-knext-is-a '({stage} {countable}) '({travel} {countable})) (add-english-names (list {traveling} {travelling} {travelling}) (list "traveling" "travelling" "travelling")) (new-knext-is-a '({drive} {countable}) '({journey} {countable})) (new-knext-is-a '({drive} {countable}) '({journeying} {countable})) (new-knext-is-a '({ride} {countable}) '({journey} {countable})) (new-knext-is-a '({ride} {countable}) '({journeying} {countable})) (new-knext-is-a '({trip} {countable}) '({journey} {countable})) (new-knext-is-a '({trip} {countable}) '({journeying} {countable})) (new-knext-is-a '({excursion} {countable}) '({journey} {countable})) (new-knext-is-a '({excursion} {countable}) '({journeying} {countable})) (new-knext-is-a '({outing} {countable}) '({journey} {countable})) (new-knext-is-a '({outing} {countable}) '({journeying} {countable})) (new-knext-is-a '({voyage} {countable}) '({journey} {countable})) (new-knext-is-a '({voyage} {countable}) '({journeying} {countable})) (new-knext-is-a '({crossing} {countable}) '({voyage} {countable})) (new-knext-is-a '({airlift} {countable}) '({transportation} {uncountable})) (new-knext-is-a '({airlift} {countable}) '({transfer} {countable})) (add-english-names (list {transferal} {transferral} {transferral}) (list "transferal" "transferral" "transferral")) (new-knext-is-a '({airlift} {countable}) '({transferal} {countable})) (add-english-names (list {connection} {connexion} {connection} {connexion}) (list "connection" "connexion" "connection" "connexion")) (add-english-names (list {connection} {connexion} {connection} {connexion}) (list "connection" "connexion" "connection" "connexion")) (new-knext-is-a '({connection} {countable}) '({transfer} {countable})) (add-english-names (list {connection} {connexion} {connection} {connexion}) (list "connection" "connexion" "connection" "connexion")) (add-english-names (list {transferal} {transferral} {transferral}) (list "transferal" "transferral" "transferral")) (new-knext-is-a '({connection} {countable}) '({transferal} {countable})) (new-knext-is-a '({delivery} {countable}) '({transportation} {uncountable})) (new-knext-is-a '({delivery} {countable}) '({transfer} {countable})) (add-english-names (list {transferal} {transferral} {transferral}) (list "transferal" "transferral" "transferral")) (new-knext-is-a '({delivery} {countable}) '({transferal} {countable})) (new-knext-is-a '({bringing} {uncountable}) '({transportation} {uncountable})) (new-knext-type {bringing} {uncountable}) (new-knext-type {transfer} {uncountable}) (new-statement {bringing} {consists of} {transfer}) (add-english-names (list {transferal} {transferral} {transferral}) (list "transferal" "transferral" "transferral")) (new-knext-is-a '({handing over} {countable}) '({delivery} {countable})) (new-knext-is-a '({handing over} {countable}) '({bringing} {uncountable})) (new-knext-is-a '({carry} {countable}) '({transportation} {uncountable})) (new-knext-is-a '({carry} {countable}) '({transfer} {countable})) (add-english-names (list {transferal} {transferral} {transferral}) (list "transferal" "transferral" "transferral")) (new-knext-is-a '({carry} {countable}) '({transferal} {countable})) (new-knext-is-a '({pursuit} {countable}) '({movement} {countable})) (new-knext-is-a '({pursuit} {countable}) '({move} {countable})) (new-knext-is-a '({pursual} {countable}) '({movement} {countable})) (new-knext-is-a '({pursual} {countable}) '({move} {countable})) (new-knext-is-a '({trailing} {uncountable}) '({pursuit} {uncountable})) (new-knext-type {trailing} {uncountable}) (new-knext-type {pursual} {uncountable}) (new-statement {trailing} {consists of} {pursual}) (new-knext-is-a '({shadowing} {countable}) '({pursuit} {countable})) (new-knext-is-a '({shadowing} {countable}) '({pursual} {countable})) (new-knext-is-a '({enclosure} {countable}) '({insertion} {countable})) (new-knext-is-a '({enclosure} {countable}) '({intromission} {countable})) (new-knext-is-a '({enclosing} {countable}) '({insertion} {countable})) (new-knext-is-a '({enclosing} {countable}) '({intromission} {countable})) (new-knext-is-a '({packing} {countable}) '({enclosure} {countable})) (new-knext-is-a '({packing} {countable}) '({enclosing} {countable})) (new-knext-is-a '({injection} {countable}) '({insertion} {countable})) (new-knext-is-a '({injection} {countable}) '({intromission} {countable})) (new-knext-is-a '({rise} {countable}) '({movement} {countable})) (new-knext-is-a '({rise} {countable}) '({move} {countable})) (new-knext-is-a '({ascent} {countable}) '({movement} {countable})) (new-knext-is-a '({ascent} {countable}) '({move} {countable})) (new-knext-is-a '({ascending} {uncountable}) '({movement} {uncountable})) (new-knext-type {ascending} {uncountable}) (new-knext-type {move} {uncountable}) (new-statement {ascending} {consists of} {move}) (new-knext-is-a '({mount} {countable}) '({rise} {countable})) (new-knext-is-a '({mount} {countable}) '({ascent} {countable})) (new-knext-is-a '({mount} {countable}) '({ascending} {uncountable})) (new-knext-is-a '({descent} {countable}) '({movement} {countable})) (new-knext-is-a '({descent} {countable}) '({move} {countable})) (new-knext-is-a '({drop} {countable}) '({descent} {countable})) (new-knext-is-a '({swinging} {uncountable}) '({movement} {uncountable})) (new-knext-type {swinging} {uncountable}) (new-knext-type {move} {uncountable}) (new-statement {swinging} {consists of} {move}) (new-knext-is-a '({vacillation} {countable}) '({movement} {countable})) (new-knext-is-a '({vacillation} {countable}) '({move} {countable})) (new-knext-is-a '({return} {countable}) '({movement} {countable})) (new-knext-is-a '({return} {countable}) '({move} {countable})) (new-knext-is-a '({glide} {countable}) '({movement} {countable})) (new-knext-is-a '({glide} {countable}) '({move} {countable})) (new-knext-is-a '({coast} {countable}) '({movement} {countable})) (new-knext-is-a '({coast} {countable}) '({move} {countable})) (new-knext-is-a '({slippage} {countable}) '({movement} {countable})) (new-knext-is-a '({slippage} {countable}) '({move} {countable})) (new-knext-is-a '({skid} {countable}) '({glide} {countable})) (new-knext-is-a '({skid} {countable}) '({coast} {countable})) (new-knext-is-a '({sideslip} {countable}) '({glide} {countable})) (new-knext-is-a '({sideslip} {countable}) '({coast} {countable})) (new-knext-is-a '({flow} {countable}) '({movement} {countable})) (new-knext-is-a '({flow} {countable}) '({move} {countable})) (new-knext-is-a '({stream} {countable}) '({movement} {countable})) (new-knext-is-a '({stream} {countable}) '({move} {countable})) (new-knext-is-a '({flood} {countable}) '({flow} {countable})) (new-knext-is-a '({flood} {countable}) '({stream} {countable})) (new-knext-is-a '({overflow} {countable}) '({flow} {countable})) (new-knext-is-a '({overflow} {countable}) '({stream} {countable})) (new-knext-is-a '({crawl} {countable}) '({movement} {countable})) (new-knext-is-a '({crawl} {countable}) '({move} {countable})) (new-knext-is-a '({speed} {countable}) '({movement} {countable})) (new-knext-is-a '({speed} {countable}) '({move} {countable})) (new-knext-is-a '({speeding} {uncountable}) '({movement} {uncountable})) (new-knext-type {speeding} {uncountable}) (new-knext-type {move} {uncountable}) (new-statement {speeding} {consists of} {move}) (new-knext-is-a '({acceleration} {uncountable}) '({speed} {uncountable})) (new-knext-is-a '({acceleration} {uncountable}) '({speeding} {uncountable})) (new-knext-is-a '({speedup} {countable}) '({speed} {countable})) (new-knext-is-a '({speedup} {countable}) '({speeding} {uncountable})) (new-knext-is-a '({movement} {countable}) '({change} {countable})) (new-knext-is-a '({move} {countable}) '({change} {countable})) (new-knext-is-a '({agitation} {countable}) '({movement} {countable})) (new-knext-is-a '({agitation} {countable}) '({move} {countable})) (new-knext-is-a '({disturbance} {countable}) '({movement} {countable})) (new-knext-is-a '({disturbance} {countable}) '({move} {countable})) (new-knext-is-a '({flit} {countable}) '({movement} {countable})) (new-knext-is-a '({flit} {countable}) '({move} {countable})) (new-knext-is-a '({gesture} {countable}) '({movement} {countable})) (new-knext-is-a '({gesture} {countable}) '({move} {countable})) (new-knext-is-a '({jab} {countable}) '({gesture} {countable})) (new-knext-is-a '({poking} {uncountable}) '({gesture} {countable})) (new-knext-is-a '({thrusting} {uncountable}) '({gesture} {countable})) (new-knext-is-a '({inclination} {countable}) '({movement} {countable})) (new-knext-is-a '({inclination} {countable}) '({move} {countable})) (new-knext-is-a '({inclining} {uncountable}) '({movement} {uncountable})) (new-knext-type {inclining} {uncountable}) (new-knext-type {move} {uncountable}) (new-statement {inclining} {consists of} {move}) (new-knext-is-a '({nod} {countable}) '({inclination} {countable})) (new-knext-is-a '({nod} {countable}) '({inclining} {uncountable})) (new-knext-is-a '({kick} {countable}) '({movement} {countable})) (new-knext-is-a '({kick} {countable}) '({move} {countable})) (new-knext-is-a '({kicking} {countable}) '({movement} {countable})) (new-knext-is-a '({kicking} {countable}) '({move} {countable})) (new-knext-is-a '({opening} {countable}) '({movement} {countable})) (new-knext-is-a '({opening} {countable}) '({move} {countable})) (new-knext-is-a '({rotation} {countable}) '({movement} {countable})) (new-knext-is-a '({rotation} {countable}) '({move} {countable})) (new-knext-is-a '({spin} {countable}) '({rotation} {countable})) (new-knext-is-a '({twist} {countable}) '({rotation} {countable})) (new-knext-is-a '({shutting} {uncountable}) '({movement} {uncountable})) (new-knext-type {shutting} {uncountable}) (new-knext-type {move} {uncountable}) (new-statement {shutting} {consists of} {move}) (new-knext-is-a '({closing} {countable}) '({movement} {countable})) (new-knext-is-a '({closing} {countable}) '({move} {countable})) (new-knext-is-a '({sitting} {countable}) '({movement} {countable})) (new-knext-is-a '({sitting} {countable}) '({move} {countable})) (new-knext-is-a '({sweep} {countable}) '({movement} {countable})) (new-knext-is-a '({sweep} {countable}) '({move} {countable})) (new-knext-is-a '({turn} {countable}) '({rotation} {countable})) (new-knext-is-a '({wind} {countable}) '({rotation} {countable})) (new-knext-is-a '({winding} {countable}) '({rotation} {countable})) (new-knext-is-a '({wave} {countable}) '({movement} {countable})) (new-knext-is-a '({wave} {countable}) '({move} {countable})) (new-knext-is-a '({change of direction} {countable}) '({change} {countable})) (new-knext-is-a '({turn} {countable}) '({change of direction} {countable})) (new-knext-is-a '({turnabout} {countable}) '({change of direction} {countable})) (new-knext-is-a '({turnaround} {countable}) '({change of direction} {countable})) (new-knext-is-a '({shaking} {countable}) '({agitation} {countable})) (new-knext-is-a '({waggle} {countable}) '({agitation} {countable})) (new-knext-is-a '({shake} {countable}) '({agitation} {countable})) (new-knext-is-a '({standing} {countable}) '({movement} {countable})) (new-knext-is-a '({standing} {countable}) '({move} {countable})) (new-knext-is-a '({wiggle} {countable}) '({movement} {countable})) (new-knext-is-a '({wiggle} {countable}) '({move} {countable})) (new-knext-is-a '({diversion} {countable}) '({turn} {countable})) (new-knext-is-a '({diversion} {countable}) '({turning} {countable})) (new-knext-is-a '({deviation} {countable}) '({turn} {countable})) (new-knext-is-a '({deviation} {countable}) '({turning} {countable})) (new-knext-is-a '({change of magnitude} {countable}) '({change} {countable})) (new-knext-is-a '({reduction} {countable}) '({change of magnitude} {countable})) (new-knext-is-a '({cutback} {countable}) '({reduction} {countable})) (new-knext-is-a '({easing} {uncountable}) '({reduction} {uncountable})) (new-knext-is-a '({easement} {countable}) '({reduction} {countable})) (new-knext-is-a '({palliation} {uncountable}) '({easing} {uncountable})) (new-knext-is-a '({palliation} {countable}) '({easement} {countable})) (new-knext-is-a '({minimization} {countable}) '({reduction} {countable})) (new-knext-is-a '({depletion} {countable}) '({reduction} {countable})) (new-knext-is-a '({using up} {uncountable}) '({depletion} {uncountable})) (new-knext-is-a '({expenditure} {countable}) '({depletion} {countable})) (new-knext-is-a '({exhaustion} {uncountable}) '({depletion} {uncountable})) (new-knext-is-a '({compression} {countable}) '({pressing} {countable})) (new-knext-is-a '({compressing} {uncountable}) '({pressing} {uncountable})) (new-knext-is-a '({squeeze} {countable}) '({compression} {countable})) (new-knext-is-a '({squeeze} {uncountable}) '({compressing} {uncountable})) (new-knext-is-a '({tweak} {countable}) '({squeeze} {countable})) (new-knext-is-a '({decompressing} {uncountable}) '({easing} {uncountable})) (new-knext-is-a '({decompressing} {uncountable}) '({easement} {uncountable})) (new-knext-is-a '({crunch} {countable}) '({compression} {countable})) (new-knext-is-a '({crunch} {countable}) '({compressing} {uncountable})) (new-knext-is-a '({compaction} {countable}) '({compression} {countable})) (new-knext-is-a '({compaction} {uncountable}) '({compressing} {uncountable})) (new-knext-is-a '({grind} {countable}) '({crunch} {countable})) (new-knext-is-a '({grind} {countable}) '({compaction} {countable})) (new-knext-type {pulverization} {uncountable}) (new-knext-type {crunch} {uncountable}) (new-statement {pulverization} {consists of} {crunch}) (new-knext-is-a '({pulverization} {uncountable}) '({compaction} {uncountable})) (add-english-names (list {pulverization} {pulverisation} {pulverization} {pulverisation}) (list "pulverization" "pulverisation" "pulverization" "pulverisation")) (add-english-names (list {pulverization} {pulverisation} {pulverization} {pulverisation}) (list "pulverization" "pulverisation" "pulverization" "pulverisation")) (new-knext-is-a '({pulverization} {countable}) '({compaction} {countable})) (new-knext-is-a '({subtraction} {uncountable}) '({reduction} {uncountable})) (new-knext-is-a '({deduction} {countable}) '({reduction} {countable})) (new-knext-is-a '({withholding} {uncountable}) '({subtraction} {uncountable})) (new-knext-is-a '({withholding} {uncountable}) '({deduction} {uncountable})) (new-knext-is-a '({discount} {countable}) '({reduction} {countable})) (new-knext-is-a '({deduction} {countable}) '({reduction} {countable})) (new-knext-is-a '({weakening} {countable}) '({reduction} {countable})) (new-knext-is-a '({contraction} {countable}) '({reduction} {countable})) (new-knext-is-a '({stretching} {countable}) '({expansion} {countable})) (new-knext-is-a '({inflation} {countable}) '({expansion} {countable})) (new-knext-is-a '({circulation} {uncountable}) '({spreading} {uncountable})) (new-knext-is-a '({dispersal} {countable}) '({spreading} {countable})) (new-knext-is-a '({dissemination} {uncountable}) '({spreading} {uncountable})) (new-knext-is-a '({scatter} {countable}) '({spreading} {countable})) (new-knext-is-a '({strewing} {countable}) '({spreading} {countable})) (new-knext-is-a '({contracture} {countable}) '({contraction} {countable})) (new-knext-is-a '({contracture} {countable}) '({muscular contraction} {countable})) (new-knext-is-a '({extension} {countable}) '({stretching} {countable})) (new-knext-is-a '({amplification} {countable}) '({expansion} {countable})) (new-knext-is-a '({amplification} {countable}) '({expanding upon} {countable})) (new-knext-is-a '({elaboration} {countable}) '({expansion} {countable})) (new-knext-is-a '({elaboration} {countable}) '({expanding upon} {countable})) (new-knext-is-a '({supplementation} {countable}) '({expansion} {countable})) (new-knext-is-a '({supplementation} {countable}) '({expanding upon} {countable})) (new-knext-is-a '({subjunction} {countable}) '({expansion} {countable})) (new-knext-is-a '({subjunction} {countable}) '({expanding upon} {countable})) (new-knext-is-a '({buildup} {countable}) '({accumulation} {countable})) (new-knext-is-a '({buildup} {countable}) '({accrual} {countable})) (new-knext-is-a '({deposition} {countable}) '({buildup} {countable})) (new-knext-is-a '({repositing} {uncountable}) '({deposition} {uncountable})) (new-knext-is-a '({warehousing} {countable}) '({deposition} {countable})) (new-knext-is-a '({incorporation} {countable}) '({inclusion} {countable})) (new-knext-is-a '({exacerbation} {countable}) '({intensification} {countable})) (new-knext-is-a '({concentration} {countable}) '({strengthening} {countable})) (new-knext-is-a '({change of integrity} {countable}) '({change} {countable})) (new-knext-is-a '({breaking} {countable}) '({change of integrity} {countable})) (new-knext-is-a '({rupture} {countable}) '({breaking} {countable})) (new-knext-is-a '({chipping} {countable}) '({breaking} {countable})) (new-knext-is-a '({splintering} {countable}) '({breaking} {countable})) (new-knext-is-a '({burst} {countable}) '({change of integrity} {countable})) (new-knext-is-a '({compounding} {countable}) '({change of integrity} {countable})) (new-knext-is-a '({attachment} {countable}) '({compounding} {countable})) (new-knext-is-a '({affixation} {countable}) '({compounding} {countable})) (new-knext-is-a '({commixture} {countable}) '({compounding} {countable})) (new-knext-is-a '({mixing} {countable}) '({compounding} {countable})) (new-knext-is-a '({fusion} {uncountable}) '({compounding} {uncountable})) (new-knext-is-a '({blend} {countable}) '({compounding} {countable})) (new-knext-is-a '({blending} {uncountable}) '({compounding} {uncountable})) (new-knext-is-a '({uniting} {uncountable}) '({compounding} {uncountable})) (new-knext-is-a '({conjugation} {countable}) '({compounding} {countable})) (new-knext-is-a '({jointure} {countable}) '({compounding} {countable})) (new-knext-is-a '({coalescence} {uncountable}) '({uniting} {uncountable})) (new-knext-is-a '({coalescence} {countable}) '({conjugation} {countable})) (new-knext-is-a '({coalescence} {countable}) '({jointure} {countable})) (new-knext-is-a '({coalition} {countable}) '({uniting} {uncountable})) (new-knext-is-a '({coalition} {countable}) '({conjugation} {countable})) (new-knext-is-a '({coalition} {countable}) '({jointure} {countable})) (new-knext-is-a '({conglutination} {uncountable}) '({uniting} {uncountable})) (new-knext-is-a '({conglutination} {uncountable}) '({conjugation} {uncountable})) (new-knext-type {conglutination} {uncountable}) (new-knext-type {jointure} {uncountable}) (new-statement {conglutination} {consists of} {jointure}) (new-knext-is-a '({opening} {countable}) '({change of integrity} {countable})) (new-knext-is-a '({separation} {countable}) '({change of integrity} {countable})) (new-knext-is-a '({interruption} {countable}) '({delay} {countable})) (new-knext-is-a '({interruption} {countable}) '({holdup} {countable})) (new-knext-is-a '({gap} {countable}) '({delay} {countable})) (new-knext-is-a '({gap} {countable}) '({holdup} {countable})) (new-knext-is-a '({insert} {countable}) '({interruption} {countable})) (new-knext-is-a '({insert} {countable}) '({gap} {countable})) (new-knext-is-a '({disunion} {countable}) '({separation} {countable})) (new-knext-is-a '({disconnection} {countable}) '({separation} {countable})) (new-knext-is-a '({disjunction} {countable}) '({separation} {countable})) (new-knext-is-a '({division} {uncountable}) '({separation} {uncountable})) (new-knext-is-a '({schism} {countable}) '({division} {uncountable})) (new-knext-is-a '({cutting} {countable}) '({opening} {countable})) (new-knext-is-a '({atomization} {countable}) '({division} {uncountable})) (add-english-names (list {atomization} {atomisation} {atomization} {atomisation}) (list "atomization" "atomisation" "atomization" "atomisation")) (new-knext-is-a '({punctuation} {uncountable}) '({grouping} {uncountable})) (new-knext-is-a '({tear} {countable}) '({separation} {countable})) (new-knext-is-a '({removal} {countable}) '({separation} {countable})) (new-knext-is-a '({decontamination} {countable}) '({removal} {countable})) (new-knext-is-a '({denudation} {countable}) '({removal} {countable})) (new-knext-is-a '({stripping} {countable}) '({removal} {countable})) (new-knext-is-a '({uncovering} {uncountable}) '({removal} {uncountable})) (new-knext-is-a '({emptying} {countable}) '({removal} {countable})) (new-knext-is-a '({drain} {countable}) '({emptying} {countable})) (new-knext-is-a '({rinse} {countable}) '({removal} {countable})) (new-knext-is-a '({rinsing} {uncountable}) '({removal} {uncountable})) (new-knext-is-a '({partitioning} {countable}) '({separation} {countable})) (new-knext-is-a '({sectionalization} {countable}) '({separation} {countable})) (new-knext-is-a '({translation} {countable}) '({change of integrity} {countable})) (new-knext-is-a '({filling} {countable}) '({change of integrity} {countable})) (new-knext-is-a '({scathe} {countable}) '({change of integrity} {countable})) (new-knext-is-a '({impairment} {countable}) '({scathe} {countable})) (new-knext-is-a '({wound} {countable}) '({scathe} {countable})) (new-knext-is-a '({wounding} {countable}) '({scathe} {countable})) (new-knext-is-a '({burn} {countable}) '({scathe} {countable})) (new-knext-is-a '({activity} {countable}) '({human action} {countable})) (new-knext-is-a '({operation} {uncountable}) '({activity} {countable})) (new-knext-is-a '({practice} {countable}) '({activity} {countable})) (new-knext-is-a '({cooperation} {uncountable}) '({practice} {countable})) (new-knext-is-a '({custom} {countable}) '({practice} {countable})) (new-knext-is-a '({custom} {countable}) '({survival} {countable})) (new-knext-is-a '({habit} {countable}) '({custom} {countable})) (new-knext-is-a '({slaveholding} {uncountable}) '({practice} {countable})) (new-knext-is-a '({way} {countable}) '({course of action} {countable})) (new-knext-is-a '({path} {countable}) '({course of action} {countable})) (new-knext-is-a '({mistreatment} {uncountable}) '({practice} {countable})) (new-knext-is-a '({disregard} {uncountable}) '({mistreatment} {uncountable})) (add-english-names (list {victimization} {victimisation} {victimization} {victimisation}) (list "victimization" "victimisation" "victimization" "victimisation")) (new-knext-is-a '({using} {uncountable}) '({mistreatment} {uncountable})) (new-knext-is-a '({harassment} {uncountable}) '({mistreatment} {uncountable})) (new-knext-is-a '({molestation} {uncountable}) '({mistreatment} {uncountable})) (new-knext-is-a '({maltreatment} {uncountable}) '({mistreatment} {uncountable})) (new-knext-is-a '({persecution} {uncountable}) '({maltreatment} {uncountable})) (new-knext-is-a '({torturing} {uncountable}) '({persecution} {uncountable})) (new-knext-is-a '({teasing} {uncountable}) '({harassment} {uncountable})) (new-knext-is-a '({teasing} {uncountable}) '({molestation} {uncountable})) (new-knext-is-a '({tantalization} {countable}) '({harassment} {uncountable})) (new-knext-is-a '({tantalization} {countable}) '({molestation} {countable})) (add-english-names (list {victimization} {victimisation} {victimization} {victimisation}) (list "victimization" "victimisation" "victimization" "victimisation")) (new-knext-is-a '({colonialism} {uncountable}) '({using} {uncountable})) (new-knext-is-a '({diversion} {countable}) '({activity} {countable})) (new-knext-is-a '({recreation} {uncountable}) '({activity} {countable})) (new-knext-is-a '({antic} {countable}) '({diversion} {countable})) (new-knext-is-a '({antic} {countable}) '({recreation} {countable})) (new-knext-is-a '({festivity} {uncountable}) '({diversion} {countable})) (new-knext-is-a '({festivity} {countable}) '({recreation} {countable})) (new-knext-is-a '({dancing} {uncountable}) '({diversion} {countable})) (new-knext-is-a '({dancing} {uncountable}) '({recreation} {uncountable})) (new-knext-is-a '({dance} {uncountable}) '({diversion} {countable})) (new-knext-is-a '({dance} {countable}) '({recreation} {countable})) (new-knext-is-a '({dancing} {uncountable}) '({performing arts} {uncountable})) (new-knext-is-a '({dance} {uncountable}) '({performing arts} {uncountable})) (new-knext-is-a '({entertainment} {uncountable}) '({diversion} {countable})) (new-knext-is-a '({entertainment} {countable}) '({recreation} {countable})) (new-knext-is-a '({escape} {countable}) '({diversion} {countable})) (new-knext-is-a '({escape} {countable}) '({recreation} {countable})) (new-knext-is-a '({escapism} {uncountable}) '({diversion} {countable})) (new-knext-is-a '({escapism} {uncountable}) '({recreation} {uncountable})) (new-knext-is-a '({fun} {uncountable}) '({diversion} {countable})) (new-knext-is-a '({fun} {uncountable}) '({recreation} {uncountable})) (new-knext-is-a '({gambling} {uncountable}) '({diversion} {countable})) (new-knext-is-a '({gambling} {uncountable}) '({recreation} {uncountable})) (add-english-names (list {vise} {vice} {vice}) (list "vise" "vice" "vice")) (new-knext-is-a '({game} {countable}) '({diversion} {countable})) (new-knext-is-a '({game} {countable}) '({recreation} {countable})) (new-knext-is-a '({jest} {uncountable}) '({diversion} {countable})) (new-knext-is-a '({jest} {uncountable}) '({recreation} {uncountable})) (new-knext-is-a '({joke} {countable}) '({diversion} {countable})) (new-knext-is-a '({joke} {countable}) '({recreation} {countable})) (new-knext-is-a '({pastime} {countable}) '({diversion} {countable})) (new-knext-is-a '({pastime} {countable}) '({recreation} {countable})) (new-knext-is-a '({pursuit} {uncountable}) '({diversion} {countable})) (new-knext-is-a '({pursuit} {countable}) '({recreation} {countable})) (new-knext-is-a '({avocation} {countable}) '({pastime} {countable})) (new-knext-is-a '({avocation} {countable}) '({pursuit} {countable})) (new-knext-is-a '({contact sport} {countable}) '({sport} {countable})) (new-knext-is-a '({contact sport} {countable}) '({athletics} {uncountable})) (new-knext-is-a '({gymnastics} {uncountable}) '({sport} {countable})) (new-knext-is-a '({gymnastics} {uncountable}) '({athletics} {uncountable})) (new-knext-is-a '({skiing} {uncountable}) '({sport} {countable})) (new-knext-is-a '({skiing} {uncountable}) '({athletics} {uncountable})) (new-knext-is-a '({floating} {uncountable}) '({swimming} {uncountable})) (new-knext-is-a '({floating} {countable}) '({swim} {countable})) (new-knext-is-a '({rowing} {uncountable}) '({sport} {countable})) (new-knext-is-a '({rowing} {uncountable}) '({athletics} {uncountable})) (new-knext-is-a '({boxing} {uncountable}) '({contact sport} {countable})) (new-knext-is-a '({pugilism} {uncountable}) '({contact sport} {countable})) (new-knext-is-a '({fight} {countable}) '({boxing} {countable})) (new-knext-is-a '({fight} {uncountable}) '({pugilism} {uncountable})) (new-knext-is-a '({cycling} {uncountable}) '({sport} {countable})) (new-knext-is-a '({cycling} {uncountable}) '({athletics} {uncountable})) (new-knext-is-a '({game} {countable}) '({activity} {countable})) (new-knext-is-a '({turn} {countable}) '({activity} {countable})) (new-knext-is-a '({athletic game} {countable}) '({game} {countable})) (new-knext-is-a '({athletic game} {countable}) '({sport} {countable})) (new-knext-is-a '({athletic game} {countable}) '({athletics} {uncountable})) (new-knext-is-a '({outdoor game} {countable}) '({athletic game} {countable})) (new-knext-is-a '({golf} {uncountable}) '({outdoor game} {countable})) (new-knext-is-a '({golf game} {countable}) '({outdoor game} {countable})) (new-knext-is-a '({field game} {countable}) '({outdoor game} {countable})) (new-knext-is-a '({football} {uncountable}) '({field game} {countable})) (new-knext-is-a '({football game} {uncountable}) '({field game} {countable})) (new-knext-is-a '({football} {uncountable}) '({contact sport} {countable})) (new-knext-is-a '({football game} {uncountable}) '({contact sport} {countable})) (new-knext-is-a '({rugby} {uncountable}) '({football} {uncountable})) (new-knext-is-a '({rugby} {uncountable}) '({football game} {countable})) (new-knext-is-a '({rugger} {countable}) '({football} {uncountable})) (new-knext-is-a '({rugger} {countable}) '({football game} {countable})) (new-knext-is-a '({soccer} {uncountable}) '({football} {uncountable})) (new-knext-is-a '({soccer} {uncountable}) '({football game} {countable})) (new-knext-is-a '({card game} {countable}) '({game} {countable})) (new-knext-is-a '({cards} {uncountable}) '({game} {countable})) (new-knext-is-a '({go fish} {uncountable}) '({card game} {countable})) (new-knext-is-a '({poker} {uncountable}) '({card game} {countable})) (new-knext-is-a '({poker} {uncountable}) '({cards} {uncountable})) (new-knext-is-a '({poker game} {countable}) '({card game} {countable})) (new-knext-is-a '({poker game} {countable}) '({cards} {uncountable})) (new-knext-is-a '({parlor game} {countable}) '({game} {countable})) (new-knext-is-a '({board game} {countable}) '({parlor game} {countable})) (new-knext-is-a '({checkers} {uncountable}) '({board game} {countable})) (add-english-names (list {drafts} {draughts} {drafts}) (list "drafts" "draughts" "drafts")) (new-knext-is-a '({drafts} {uncountable}) '({board game} {countable})) (new-knext-is-a '({chess} {uncountable}) '({board game} {countable})) (new-knext-is-a '({chess game} {countable}) '({board game} {countable})) (new-knext-is-a '({bet} {uncountable}) '({gambling} {uncountable})) (new-knext-is-a '({wager} {countable}) '({gambling} {uncountable})) (new-knext-is-a '({merrymaking} {uncountable}) '({festivity} {uncountable})) (new-knext-is-a '({jollification} {countable}) '({festivity} {countable})) (new-knext-is-a '({revel} {countable}) '({merrymaking} {uncountable})) (new-knext-is-a '({revel} {countable}) '({jollification} {countable})) (new-knext-is-a '({debauch} {countable}) '({revel} {countable})) (new-knext-is-a '({drunken revelry} {countable}) '({revel} {countable})) (new-knext-is-a '({frolic} {uncountable}) '({diversion} {countable})) (new-knext-is-a '({frolic} {uncountable}) '({recreation} {uncountable})) (new-knext-is-a '({gambol} {countable}) '({diversion} {countable})) (new-knext-is-a '({gambol} {countable}) '({recreation} {countable})) (new-knext-is-a '({flirting} {uncountable}) '({frolic} {uncountable})) (new-knext-type {flirting} {uncountable}) (new-knext-type {gambol} {uncountable}) (new-statement {flirting} {consists of} {gambol}) (new-knext-is-a '({flirtation} {uncountable}) '({frolic} {uncountable})) (new-knext-is-a '({flirtation} {countable}) '({gambol} {countable})) (new-knext-is-a '({dalliance} {countable}) '({frolic} {uncountable})) (new-knext-is-a '({dalliance} {countable}) '({gambol} {countable})) (new-knext-is-a '({beguilement} {countable}) '({entertainment} {countable})) (new-knext-is-a '({distraction} {countable}) '({entertainment} {countable})) (new-knext-is-a '({solemnization} {countable}) '({ritual} {countable})) (new-knext-is-a '({festival} {countable}) '({festivity} {countable})) (new-knext-is-a '({fair} {countable}) '({show} {countable})) (new-knext-is-a '({funfair} {countable}) '({show} {countable})) (new-knext-is-a '({show} {countable}) '({entertainment} {countable})) (new-knext-is-a '({display} {countable}) '({show} {countable})) (new-knext-is-a '({exhibit} {countable}) '({show} {countable})) (new-knext-is-a '({presentation} {countable}) '({show} {countable})) (new-knext-is-a '({demonstration} {countable}) '({show} {countable})) (new-knext-is-a '({exhibition} {countable}) '({presentation} {countable})) (new-knext-is-a '({exhibition} {countable}) '({demonstration} {countable})) (new-knext-is-a '({exposure} {countable}) '({presentation} {countable})) (new-knext-is-a '({exposure} {countable}) '({demonstration} {countable})) (new-knext-is-a '({production} {countable}) '({exhibition} {countable})) (new-knext-is-a '({sport} {countable}) '({diversion} {countable})) (new-knext-is-a '({sport} {countable}) '({recreation} {countable})) (new-knext-is-a '({athletics} {uncountable}) '({diversion} {countable})) (new-knext-is-a '({athletics} {uncountable}) '({recreation} {uncountable})) (new-knext-is-a '({step dancing} {uncountable}) '({dancing} {uncountable})) (new-knext-is-a '({step dancing} {uncountable}) '({dance} {uncountable})) (new-knext-is-a '({dance step} {countable}) '({locomotion} {countable})) (new-knext-is-a '({music} {uncountable}) '({activity} {countable})) (new-knext-is-a '({officiation} {uncountable}) '({carrying out} {uncountable})) (new-knext-is-a '({officiation} {uncountable}) '({carrying into action} {uncountable})) (new-knext-is-a '({acting} {uncountable}) '({activity} {countable})) (new-knext-is-a '({playacting} {uncountable}) '({activity} {countable})) (new-knext-is-a '({acting} {uncountable}) '({performing arts} {uncountable})) (new-knext-is-a '({playacting} {uncountable}) '({performing arts} {uncountable})) (new-knext-is-a '({portrayal} {countable}) '({acting} {countable})) (new-knext-is-a '({portrayal} {countable}) '({playacting} {uncountable})) (new-knext-is-a '({enactment} {countable}) '({acting} {countable})) (new-knext-is-a '({enactment} {uncountable}) '({playacting} {uncountable})) (new-knext-is-a '({personation} {countable}) '({acting} {countable})) (new-knext-is-a '({personation} {countable}) '({playacting} {uncountable})) (new-knext-is-a '({apery} {countable}) '({personation} {countable})) (new-knext-is-a '({mimicry} {countable}) '({personation} {countable})) (new-knext-is-a '({parody} {countable}) '({apery} {countable})) (new-knext-is-a '({parody} {countable}) '({mimicry} {countable})) (new-knext-is-a '({mockery} {countable}) '({apery} {countable})) (new-knext-is-a '({mockery} {countable}) '({mimicry} {countable})) (new-knext-is-a '({stage business} {uncountable}) '({acting} {uncountable})) (new-knext-is-a '({stage business} {uncountable}) '({playacting} {uncountable})) (new-knext-is-a '({byplay} {countable}) '({acting} {countable})) (new-knext-is-a '({byplay} {uncountable}) '({playacting} {uncountable})) (new-knext-is-a '({performance} {countable}) '({presentation} {countable})) (new-knext-is-a '({performance} {countable}) '({demonstration} {countable})) (new-knext-is-a '({liveliness} {uncountable}) '({activity} {countable})) (new-knext-is-a '({animation} {uncountable}) '({activity} {countable})) (new-knext-is-a '({commotion} {countable}) '({disturbance} {countable})) (new-knext-is-a '({ruction} {countable}) '({disturbance} {countable})) (new-knext-is-a '({turmoil} {uncountable}) '({disturbance} {uncountable})) (new-knext-is-a '({upheaval} {countable}) '({disturbance} {countable})) (new-knext-is-a '({hullabaloo} {countable}) '({disturbance} {countable})) (new-knext-is-a '({upset} {countable}) '({disturbance} {countable})) (new-knext-is-a '({derangement} {countable}) '({disturbance} {countable})) (new-knext-is-a '({bustle} {countable}) '({commotion} {countable})) (new-knext-is-a '({bustle} {countable}) '({ruction} {countable})) (new-knext-is-a '({flurry} {countable}) '({commotion} {countable})) (new-knext-is-a '({flurry} {countable}) '({ruction} {countable})) (new-knext-is-a '({ado} {uncountable}) '({commotion} {uncountable})) (new-knext-type {ado} {uncountable}) (new-knext-type {ruction} {uncountable}) (new-statement {ado} {consists of} {ruction}) (new-knext-is-a '({haste} {uncountable}) '({movement} {uncountable})) (new-knext-type {haste} {uncountable}) (new-knext-type {move} {uncountable}) (new-statement {haste} {consists of} {move}) (new-knext-is-a '({rush} {countable}) '({movement} {countable})) (new-knext-is-a '({rush} {countable}) '({move} {countable})) (new-knext-is-a '({dash} {uncountable}) '({haste} {uncountable})) (new-knext-is-a '({dash} {countable}) '({rush} {countable})) (new-knext-is-a '({bolt} {countable}) '({haste} {uncountable})) (new-knext-is-a '({bolt} {countable}) '({rush} {countable})) (new-knext-is-a '({scamper} {countable}) '({haste} {uncountable})) (new-knext-is-a '({scamper} {countable}) '({rush} {countable})) (new-knext-is-a '({maneuver} {countable}) '({movement} {countable})) (new-knext-is-a '({maneuver} {countable}) '({move} {countable})) (add-english-names (list {maneuver} {manoeuvre}) (list "maneuver" "manoeuvre")) (new-knext-is-a '({maneuver} {countable}) '({movement} {countable})) (add-english-names (list {maneuver} {manoeuvre}) (list "maneuver" "manoeuvre")) (new-knext-is-a '({maneuver} {countable}) '({move} {countable})) (new-knext-is-a '({play} {countable}) '({plan of action} {countable})) (new-knext-is-a '({obstruction} {countable}) '({maneuver} {countable})) (add-english-names (list {maneuver} {manoeuvre}) (list "maneuver" "manoeuvre")) (new-knext-is-a '({obstruction} {countable}) '({maneuver} {countable})) (new-knext-is-a '({work} {uncountable}) '({activity} {countable})) (new-knext-is-a '({operation} {uncountable}) '({work} {uncountable})) (new-knext-is-a '({procedure} {countable}) '({work} {uncountable})) (new-knext-is-a '({shining} {countable}) '({work} {uncountable})) (new-knext-is-a '({polishing} {uncountable}) '({work} {uncountable})) (new-knext-is-a '({occupation} {countable}) '({activity} {countable})) (new-knext-is-a '({business} {uncountable}) '({activity} {countable})) (new-knext-is-a '({occupation} {countable}) '({activity} {countable})) (new-knext-is-a '({career} {countable}) '({occupation} {countable})) (new-knext-is-a '({career} {countable}) '({business} {countable})) (new-knext-is-a '({employment} {countable}) '({occupation} {countable})) (new-knext-is-a '({employment} {countable}) '({business} {countable})) (new-knext-is-a '({appointment} {countable}) '({occupation} {countable})) (new-knext-is-a '({appointment} {countable}) '({business} {countable})) (new-knext-is-a '({berth} {countable}) '({occupation} {countable})) (new-knext-is-a '({berth} {countable}) '({business} {countable})) (new-knext-is-a '({presidentship} {countable}) '({berth} {countable})) (new-knext-is-a '({professorship} {countable}) '({berth} {countable})) (new-knext-is-a '({craft} {countable}) '({occupation} {countable})) (new-knext-is-a '({craft} {countable}) '({business} {countable})) (new-knext-is-a '({house painting} {uncountable}) '({craft} {countable})) (new-knext-is-a '({piloting} {uncountable}) '({craft} {countable})) (new-knext-is-a '({profession} {countable}) '({occupation} {countable})) (new-knext-is-a '({profession} {countable}) '({business} {countable})) (new-knext-is-a '({education} {uncountable}) '({profession} {countable})) (new-knext-is-a '({politics} {uncountable}) '({profession} {countable})) (new-knext-is-a '({committal to writing} {uncountable}) '({activity} {countable})) (new-knext-is-a '({coding} {uncountable}) '({committal to writing} {uncountable})) (new-knext-is-a '({secret writing} {countable}) '({committal to writing} {uncountable})) (new-knext-is-a '({steganography} {uncountable}) '({committal to writing} {uncountable})) (new-knext-is-a '({handwriting} {uncountable}) '({committal to writing} {uncountable})) (new-knext-is-a '({encoding} {uncountable}) '({coding} {uncountable})) (new-knext-type {encoding} {uncountable}) (new-knext-type {secret writing} {uncountable}) (new-statement {encoding} {consists of} {secret writing}) (new-knext-is-a '({encoding} {uncountable}) '({steganography} {uncountable})) (new-knext-is-a '({accountancy} {uncountable}) '({occupation} {countable})) (new-knext-is-a '({accountancy} {uncountable}) '({business} {uncountable})) (add-english-names (list {labor} {labour}) (list "labor" "labour")) (new-knext-is-a '({toil} {uncountable}) '({work} {uncountable})) (add-english-names (list {labor} {labour}) (list "labor" "labour")) (new-knext-is-a '({drudgery} {uncountable}) '({toil} {uncountable})) (add-english-names (list {labor} {labour}) (list "labor" "labour")) (new-knext-is-a '({grind} {countable}) '({labor} {countable})) (new-knext-is-a '({grind} {uncountable}) '({toil} {uncountable})) (add-english-names (list {labor} {labour}) (list "labor" "labour")) (new-knext-is-a '({donkeywork} {countable}) '({labor} {countable})) (new-knext-is-a '({donkeywork} {countable}) '({toil} {uncountable})) (add-english-names (list {labor} {labour}) (list "labor" "labour")) (new-knext-is-a '({elbow grease} {uncountable}) '({toil} {uncountable})) (add-english-names (list {labor} {labour}) (list "labor" "labour")) (new-knext-is-a '({exertion} {countable}) '({labor} {countable})) (new-knext-is-a '({exertion} {uncountable}) '({toil} {uncountable})) (add-english-names (list {labor} {labour}) (list "labor" "labour")) (new-knext-is-a '({travail} {countable}) '({labor} {countable})) (new-knext-is-a '({travail} {countable}) '({toil} {uncountable})) (new-knext-is-a '({struggle} {uncountable}) '({elbow grease} {uncountable})) (new-knext-is-a '({struggle} {uncountable}) '({exertion} {uncountable})) (new-knext-type {struggle} {uncountable}) (new-knext-type {travail} {uncountable}) (new-statement {struggle} {consists of} {travail}) (new-knext-is-a '({difficulty} {uncountable}) '({elbow grease} {uncountable})) (new-knext-is-a '({difficulty} {countable}) '({exertion} {countable})) (new-knext-is-a '({difficulty} {countable}) '({travail} {countable})) (new-knext-is-a '({exercise} {countable}) '({elbow grease} {uncountable})) (new-knext-is-a '({exercise} {countable}) '({exertion} {countable})) (new-knext-is-a '({exercise} {countable}) '({travail} {countable})) (new-knext-is-a '({exercising} {uncountable}) '({elbow grease} {uncountable})) (new-knext-is-a '({exercising} {uncountable}) '({exertion} {uncountable})) (new-knext-type {exercising} {uncountable}) (new-knext-type {travail} {uncountable}) (new-statement {exercising} {consists of} {travail}) (new-knext-is-a '({pull} {countable}) '({elbow grease} {uncountable})) (new-knext-is-a '({pull} {countable}) '({exertion} {countable})) (new-knext-is-a '({pull} {countable}) '({travail} {countable})) (new-knext-is-a '({stretching} {countable}) '({exercise} {countable})) (new-knext-is-a '({stretching} {uncountable}) '({exercising} {uncountable})) (new-knext-is-a '({practice} {uncountable}) '({use} {uncountable})) (new-knext-is-a '({investigation} {uncountable}) '({work} {uncountable})) (new-knext-is-a '({investigating} {uncountable}) '({work} {uncountable})) (new-knext-is-a '({count} {countable}) '({investigation} {countable})) (new-knext-is-a '({count} {countable}) '({investigating} {uncountable})) (new-knext-is-a '({counting} {countable}) '({investigation} {countable})) (new-knext-is-a '({counting} {uncountable}) '({investigating} {uncountable})) (new-knext-is-a '({examination} {countable}) '({investigation} {countable})) (new-knext-is-a '({examination} {uncountable}) '({investigating} {uncountable})) (new-knext-is-a '({testing} {countable}) '({investigation} {countable})) (new-knext-is-a '({testing} {uncountable}) '({investigating} {uncountable})) (new-knext-is-a '({inquiry} {countable}) '({investigation} {countable})) (new-knext-is-a '({inquiry} {countable}) '({investigating} {uncountable})) (new-knext-is-a '({research} {countable}) '({investigation} {countable})) (new-knext-is-a '({research} {uncountable}) '({investigating} {uncountable})) (new-knext-is-a '({search} {countable}) '({investigation} {countable})) (new-knext-is-a '({search} {countable}) '({investigating} {uncountable})) (new-knext-is-a '({inquest} {countable}) '({inquiry} {countable})) (new-knext-is-a '({experiment} {countable}) '({scientific research} {uncountable})) (new-knext-is-a '({experiment} {countable}) '({research project} {countable})) (new-knext-is-a '({experimentation} {uncountable}) '({scientific research} {uncountable})) (new-knext-is-a '({experimentation} {countable}) '({research project} {countable})) (new-knext-is-a '({testing} {countable}) '({experiment} {countable})) (new-knext-is-a '({testing} {countable}) '({experimentation} {countable})) (new-knext-is-a '({scientific research} {uncountable}) '({research} {uncountable})) (new-knext-is-a '({research project} {countable}) '({research} {countable})) (new-knext-is-a '({search} {countable}) '({examination} {countable})) (new-knext-is-a '({survey} {countable}) '({examination} {countable})) (new-knext-is-a '({study} {countable}) '({examination} {countable})) (new-knext-is-a '({visitation} {countable}) '({visit} {countable})) (new-knext-is-a '({census} {countable}) '({count} {countable})) (new-knext-is-a '({census} {countable}) '({counting} {countable})) (new-knext-is-a '({nose count} {countable}) '({count} {countable})) (new-knext-is-a '({nose count} {countable}) '({counting} {countable})) (new-knext-is-a '({poll} {countable}) '({count} {countable})) (new-knext-is-a '({poll} {countable}) '({counting} {countable})) (new-knext-is-a '({wiretap} {countable}) '({investigation} {countable})) (new-knext-is-a '({wiretap} {countable}) '({investigating} {uncountable})) (new-knext-is-a '({care} {uncountable}) '({work} {uncountable})) (new-knext-is-a '({tending} {uncountable}) '({work} {uncountable})) (new-knext-is-a '({medical care} {uncountable}) '({treatment} {uncountable})) (new-knext-is-a '({treatment} {countable}) '({care} {countable})) (new-knext-is-a '({treatment} {uncountable}) '({tending} {uncountable})) (new-knext-is-a '({therapy} {uncountable}) '({medical care} {uncountable})) (new-knext-is-a '({amputation} {countable}) '({surgery} {countable})) (new-knext-is-a '({amputation} {countable}) '({surgical operation} {countable})) (new-knext-is-a '({cauterization} {countable}) '({surgery} {countable})) (new-knext-is-a '({cauterization} {uncountable}) '({surgical operation} {countable})) (add-english-names (list {cauterization} {cauterisation} {cauterization} {cauterisation}) (list "cauterization" "cauterisation" "cauterization" "cauterisation")) (new-knext-is-a '({cauterization} {countable}) '({surgery} {countable})) (add-english-names (list {cauterization} {cauterisation} {cauterization} {cauterisation}) (list "cauterization" "cauterisation" "cauterization" "cauterisation")) (new-knext-is-a '({disembowelment} {countable}) '({removal} {countable})) (new-knext-is-a '({evisceration} {countable}) '({removal} {countable})) (new-knext-is-a '({surgical incision} {countable}) '({cutting} {countable})) (new-knext-is-a '({sterilization} {countable}) '({surgery} {countable})) (new-knext-is-a '({sterilization} {uncountable}) '({surgical operation} {countable})) (new-knext-is-a '({castration} {uncountable}) '({neutering} {uncountable})) (new-knext-is-a '({castration} {uncountable}) '({altering} {uncountable})) (new-knext-is-a '({emasculation} {countable}) '({neutering} {countable})) (new-knext-is-a '({emasculation} {countable}) '({altering} {uncountable})) (new-knext-is-a '({neutering} {countable}) '({sterilization} {countable})) (new-knext-is-a '({altering} {uncountable}) '({sterilization} {uncountable})) (new-knext-is-a '({bandaging} {uncountable}) '({medical care} {uncountable})) (new-knext-is-a '({injection} {uncountable}) '({medical care} {uncountable})) (new-knext-is-a '({disinfection} {uncountable}) '({medical care} {uncountable})) (new-knext-is-a '({friction} {uncountable}) '({elbow grease} {uncountable})) (new-knext-is-a '({friction} {uncountable}) '({exertion} {uncountable})) (new-knext-type {friction} {uncountable}) (new-knext-type {travail} {uncountable}) (new-statement {friction} {consists of} {travail}) (new-knext-type {pickings} {uncountable}) (new-knext-type {action} {uncountable}) (new-statement {pickings} {consists of} {action}) (new-knext-is-a '({taking} {uncountable}) '({action} {countable})) (new-knext-is-a '({painting} {uncountable}) '({application} {uncountable})) (new-knext-is-a '({spatter} {uncountable}) '({painting} {uncountable})) (new-knext-is-a '({splashing} {countable}) '({painting} {uncountable})) (new-knext-is-a '({duty} {uncountable}) '({work} {uncountable})) (new-knext-is-a '({chore} {countable}) '({duty} {countable})) (new-knext-is-a '({function} {countable}) '({duty} {countable})) (new-knext-is-a '({role} {countable}) '({duty} {countable})) (new-knext-is-a '({hat} {countable}) '({function} {countable})) (new-knext-is-a '({hat} {countable}) '({role} {countable})) (new-knext-is-a '({stead} {countable}) '({function} {countable})) (new-knext-is-a '({stead} {countable}) '({role} {countable})) (new-knext-is-a '({lieu} {countable}) '({function} {countable})) (new-knext-is-a '({lieu} {countable}) '({role} {countable})) (new-knext-is-a '({role} {countable}) '({activity} {countable})) (new-knext-is-a '({assignment} {countable}) '({duty} {countable})) (new-knext-is-a '({duty assignment} {countable}) '({duty} {countable})) (new-knext-is-a '({guard duty} {countable}) '({assignment} {countable})) (new-knext-is-a '({guard duty} {countable}) '({duty assignment} {countable})) (new-knext-is-a '({mission} {countable}) '({assignment} {countable})) (new-knext-is-a '({mission} {countable}) '({duty assignment} {countable})) (new-knext-is-a '({wrongdoing} {uncountable}) '({activity} {countable})) (new-knext-is-a '({wrongful conduct} {uncountable}) '({activity} {countable})) (new-knext-is-a '({actus reus} {countable}) '({activity} {countable})) (new-knext-is-a '({misbehavior} {countable}) '({wrongdoing} {countable})) (new-knext-is-a '({misbehavior} {countable}) '({wrongful conduct} {uncountable})) (new-knext-is-a '({misbehavior} {countable}) '({actus reus} {countable})) (add-english-names (list {misbehavior} {misbehaviour}) (list "misbehavior" "misbehaviour")) (new-knext-is-a '({misbehavior} {countable}) '({wrongdoing} {countable})) (add-english-names (list {misbehavior} {misbehaviour}) (list "misbehavior" "misbehaviour")) (add-english-names (list {misbehavior} {misbehaviour}) (list "misbehavior" "misbehaviour")) (new-knext-is-a '({misbehavior} {countable}) '({actus reus} {countable})) (new-knext-type {negligence} {uncountable}) (new-knext-type {nonaccomplishment} {uncountable}) (new-statement {negligence} {consists of} {nonaccomplishment}) (new-knext-is-a '({waste} {uncountable}) '({activity} {countable})) (new-knext-is-a '({wastefulness} {uncountable}) '({activity} {countable})) (new-knext-is-a '({squandering} {countable}) '({waste} {countable})) (new-knext-is-a '({squandering} {countable}) '({wastefulness} {uncountable})) (new-knext-is-a '({injury} {countable}) '({wrongdoing} {countable})) (new-knext-is-a '({injury} {uncountable}) '({wrongful conduct} {uncountable})) (new-knext-is-a '({injury} {countable}) '({actus reus} {countable})) (new-knext-is-a '({transgression} {countable}) '({wrongdoing} {countable})) (new-knext-is-a '({transgression} {countable}) '({wrongful conduct} {uncountable})) (new-knext-is-a '({transgression} {countable}) '({actus reus} {countable})) (new-knext-is-a '({evil} {countable}) '({transgression} {countable})) (new-knext-is-a '({enormity} {countable}) '({atrocity} {countable})) (add-english-names (list {vise} {vice} {vice}) (list "vise" "vice" "vice")) (new-knext-is-a '({vise} {countable}) '({transgression} {countable})) (new-knext-is-a '({dishonesty} {countable}) '({wrongdoing} {countable})) (new-knext-is-a '({dishonesty} {uncountable}) '({wrongful conduct} {uncountable})) (new-knext-is-a '({dishonesty} {countable}) '({actus reus} {countable})) (new-knext-is-a '({knavery} {countable}) '({wrongdoing} {countable})) (new-knext-is-a '({knavery} {countable}) '({wrongful conduct} {uncountable})) (new-knext-is-a '({knavery} {countable}) '({actus reus} {countable})) (new-knext-is-a '({betrayal} {countable}) '({dishonesty} {countable})) (new-knext-is-a '({betrayal} {countable}) '({knavery} {countable})) (new-knext-is-a '({perfidy} {countable}) '({dishonesty} {countable})) (new-knext-is-a '({perfidy} {countable}) '({knavery} {countable})) (new-knext-is-a '({falsification} {countable}) '({wrongdoing} {countable})) (new-knext-is-a '({falsification} {uncountable}) '({wrongful conduct} {uncountable})) (new-knext-is-a '({falsification} {countable}) '({actus reus} {countable})) (new-knext-is-a '({lying} {uncountable}) '({falsification} {uncountable})) (new-knext-is-a '({prevarication} {countable}) '({falsification} {countable})) (new-knext-is-a '({fabrication} {countable}) '({falsification} {countable})) (new-knext-is-a '({fakery} {countable}) '({dissimulation} {countable})) (new-knext-is-a '({dissimulation} {countable}) '({falsification} {countable})) (new-knext-is-a '({cheat} {countable}) '({dissimulation} {countable})) (new-knext-is-a '({cheating} {uncountable}) '({dissimulation} {uncountable})) (new-knext-is-a '({delusion} {countable}) '({dissimulation} {countable})) (new-knext-is-a '({head game} {countable}) '({dissimulation} {countable})) (new-knext-is-a '({pretense} {countable}) '({dissimulation} {countable})) (add-english-names (list {pretense} {pretence}) (list "pretense" "pretence")) (new-knext-is-a '({pretense} {countable}) '({dissimulation} {countable})) (new-knext-is-a '({pretending} {uncountable}) '({dissimulation} {uncountable})) (new-knext-is-a '({imposture} {countable}) '({dissimulation} {countable})) (new-knext-is-a '({fall} {countable}) '({sin} {countable})) (new-knext-is-a '({fall} {countable}) '({sinning} {countable})) (new-knext-is-a '({sin} {countable}) '({transgression} {countable})) (new-knext-is-a '({sinning} {countable}) '({transgression} {countable})) (new-knext-is-a '({mortal sin} {countable}) '({sin} {countable})) (new-knext-is-a '({mortal sin} {countable}) '({sinning} {countable})) (new-knext-is-a '({venial sin} {countable}) '({sin} {countable})) (new-knext-is-a '({venial sin} {countable}) '({sinning} {countable})) (new-knext-is-a '({invidia} {uncountable}) '({mortal sin} {countable})) (new-knext-is-a '({wrath} {uncountable}) '({mortal sin} {countable})) (new-knext-is-a '({anger} {uncountable}) '({mortal sin} {countable})) (new-knext-is-a '({lust} {uncountable}) '({mortal sin} {countable})) (new-knext-is-a '({luxuria} {uncountable}) '({mortal sin} {countable})) (new-knext-is-a '({assault} {countable}) '({attack} {countable})) (new-knext-is-a '({assault} {countable}) '({attempt} {countable})) (new-knext-is-a '({battery} {countable}) '({assault} {countable})) (new-knext-is-a '({assault and battery} {countable}) '({assault} {countable})) (new-knext-is-a '({felony} {countable}) '({crime} {countable})) (new-knext-is-a '({felony} {countable}) '({criminal offense} {countable})) (new-knext-is-a '({forgery} {countable}) '({crime} {countable})) (new-knext-is-a '({forgery} {countable}) '({criminal offense} {countable})) (new-knext-is-a '({hijack} {countable}) '({crime} {countable})) (new-knext-is-a '({hijack} {countable}) '({criminal offense} {countable})) (new-knext-is-a '({misdemeanor} {countable}) '({crime} {countable})) (new-knext-is-a '({misdemeanor} {countable}) '({criminal offense} {countable})) (new-knext-is-a '({violation} {countable}) '({crime} {countable})) (new-knext-is-a '({violation} {countable}) '({criminal offense} {countable})) (new-knext-is-a '({infringement} {countable}) '({wrongdoing} {countable})) (new-knext-is-a '({infringement} {uncountable}) '({wrongful conduct} {uncountable})) (new-knext-is-a '({infringement} {countable}) '({actus reus} {countable})) (new-knext-is-a '({perpetration} {countable}) '({crime} {countable})) (new-knext-is-a '({perpetration} {countable}) '({criminal offense} {countable})) (new-knext-is-a '({committal} {countable}) '({crime} {countable})) (new-knext-is-a '({committal} {countable}) '({criminal offense} {countable})) (new-knext-is-a '({attack} {countable}) '({crime} {countable})) (new-knext-is-a '({attack} {countable}) '({criminal offense} {countable})) (new-knext-is-a '({attempt} {countable}) '({crime} {countable})) (new-knext-is-a '({attempt} {countable}) '({criminal offense} {countable})) (new-knext-is-a '({seizure} {countable}) '({felony} {countable})) (new-knext-is-a '({bribery} {countable}) '({felony} {countable})) (new-knext-type {graft} {uncountable}) (new-knext-type {felony} {uncountable}) (new-statement {graft} {consists of} {felony}) (new-knext-is-a '({larceny} {countable}) '({felony} {countable})) (new-knext-is-a '({theft} {countable}) '({felony} {countable})) (new-knext-type {thieving} {uncountable}) (new-knext-type {felony} {uncountable}) (new-statement {thieving} {consists of} {felony}) (new-knext-is-a '({robbery} {countable}) '({larceny} {countable})) (new-knext-is-a '({robbery} {countable}) '({theft} {countable})) (new-knext-is-a '({robbery} {uncountable}) '({thieving} {uncountable})) (new-knext-is-a '({heist} {countable}) '({robbery} {countable})) (new-knext-is-a '({highjacking} {countable}) '({robbery} {countable})) (new-knext-is-a '({piracy} {countable}) '({highjacking} {countable})) (new-knext-type {buccaneering} {uncountable}) (new-knext-type {highjacking} {uncountable}) (new-statement {buccaneering} {consists of} {highjacking}) (new-knext-is-a '({attempt} {countable}) '({activity} {countable})) (new-knext-is-a '({effort} {uncountable}) '({activity} {countable})) (new-knext-is-a '({bid} {countable}) '({attempt} {countable})) (new-knext-is-a '({bid} {countable}) '({effort} {countable})) (new-knext-type {play} {uncountable}) (new-knext-type {attempt} {uncountable}) (new-statement {play} {consists of} {attempt}) (new-knext-is-a '({play} {uncountable}) '({effort} {uncountable})) (new-knext-is-a '({fling} {countable}) '({attempt} {countable})) (new-knext-is-a '({fling} {countable}) '({effort} {countable})) (new-knext-is-a '({go} {countable}) '({attempt} {countable})) (new-knext-is-a '({go} {countable}) '({effort} {countable})) (new-knext-is-a '({essay} {countable}) '({attempt} {countable})) (new-knext-is-a '({essay} {countable}) '({effort} {countable})) (new-knext-is-a '({contribution} {countable}) '({attempt} {countable})) (new-knext-is-a '({contribution} {countable}) '({effort} {countable})) (new-knext-is-a '({power play} {countable}) '({attempt} {countable})) (new-knext-is-a '({power play} {countable}) '({effort} {countable})) (new-knext-is-a '({squeeze play} {countable}) '({attempt} {countable})) (new-knext-is-a '({squeeze play} {countable}) '({effort} {countable})) (new-knext-is-a '({stab} {countable}) '({attempt} {countable})) (new-knext-is-a '({stab} {countable}) '({effort} {countable})) (new-knext-is-a '({striving} {countable}) '({attempt} {countable})) (new-knext-is-a '({striving} {countable}) '({effort} {countable})) (new-knext-type {pains} {uncountable}) (new-knext-type {attempt} {uncountable}) (new-statement {pains} {consists of} {attempt}) (new-knext-is-a '({pains} {uncountable}) '({effort} {uncountable})) (new-knext-is-a '({strain} {countable}) '({attempt} {countable})) (new-knext-is-a '({strain} {countable}) '({effort} {countable})) (new-knext-is-a '({struggle} {countable}) '({attempt} {countable})) (new-knext-is-a '({struggle} {countable}) '({effort} {countable})) (new-knext-is-a '({trial} {countable}) '({attempt} {countable})) (new-knext-is-a '({trial} {countable}) '({effort} {countable})) (new-knext-is-a '({trial} {countable}) '({attempt} {countable})) (new-knext-is-a '({trial} {countable}) '({effort} {countable})) (new-knext-is-a '({fitting} {countable}) '({trial} {countable})) (new-knext-is-a '({undertaking} {uncountable}) '({work} {uncountable})) (new-knext-is-a '({project} {countable}) '({work} {uncountable})) (new-knext-is-a '({adventure} {countable}) '({undertaking} {countable})) (new-knext-is-a '({adventure} {countable}) '({project} {countable})) (new-knext-is-a '({escapade} {countable}) '({undertaking} {countable})) (new-knext-is-a '({escapade} {countable}) '({project} {countable})) (new-knext-is-a '({assignment} {countable}) '({undertaking} {countable})) (new-knext-is-a '({assignment} {countable}) '({project} {countable})) (new-knext-is-a '({baby} {countable}) '({undertaking} {countable})) (new-knext-is-a '({baby} {countable}) '({project} {countable})) (new-knext-is-a '({enterprise} {countable}) '({undertaking} {countable})) (new-knext-is-a '({enterprise} {countable}) '({project} {countable})) (new-knext-is-a '({endeavor} {countable}) '({undertaking} {countable})) (new-knext-is-a '({endeavor} {countable}) '({project} {countable})) (new-knext-is-a '({venture} {countable}) '({undertaking} {countable})) (new-knext-is-a '({venture} {countable}) '({project} {countable})) (new-knext-is-a '({crusade} {countable}) '({venture} {countable})) (new-knext-is-a '({drive} {countable}) '({venture} {countable})) (new-knext-is-a '({risk} {countable}) '({venture} {countable})) (new-knext-is-a '({chance} {countable}) '({risk} {countable})) (new-knext-is-a '({gamble} {countable}) '({risk} {countable})) (new-knext-is-a '({control} {uncountable}) '({activity} {countable})) (new-knext-is-a '({regulation} {uncountable}) '({control} {uncountable})) (new-knext-is-a '({regulating} {uncountable}) '({control} {uncountable})) (new-knext-is-a '({regularization} {uncountable}) '({control} {uncountable})) (add-english-names (list {regularization} {regularisation} {regularization} {regularisation}) (list "regularization" "regularisation" "regularization" "regularisation")) (new-knext-is-a '({restriction} {countable}) '({regulation} {countable})) (new-knext-is-a '({restriction} {uncountable}) '({regulating} {uncountable})) (new-knext-is-a '({possession} {uncountable}) '({control} {uncountable})) (new-knext-is-a '({retention} {countable}) '({possession} {countable})) (new-knext-is-a '({keeping} {uncountable}) '({possession} {uncountable})) (new-knext-is-a '({holding} {countable}) '({possession} {countable})) (new-knext-is-a '({withholding} {countable}) '({retention} {countable})) (new-knext-is-a '({withholding} {uncountable}) '({keeping} {uncountable})) (new-knext-is-a '({withholding} {countable}) '({holding} {countable})) (new-knext-is-a '({grasping} {uncountable}) '({control} {uncountable})) (new-knext-is-a '({taking hold} {countable}) '({control} {uncountable})) (new-knext-is-a '({prehension} {uncountable}) '({control} {uncountable})) (new-knext-is-a '({clutch} {countable}) '({grasping} {uncountable})) (new-knext-is-a '({clutch} {countable}) '({taking hold} {countable})) (new-knext-is-a '({clutch} {countable}) '({prehension} {countable})) (new-knext-is-a '({clutches} {uncountable}) '({grasping} {uncountable})) (new-knext-type {clutches} {uncountable}) (new-knext-type {taking hold} {uncountable}) (new-statement {clutches} {consists of} {taking hold}) (new-knext-is-a '({clutches} {uncountable}) '({prehension} {uncountable})) (new-knext-is-a '({grip} {uncountable}) '({grasping} {uncountable})) (new-knext-is-a '({grip} {countable}) '({taking hold} {countable})) (new-knext-is-a '({grip} {countable}) '({prehension} {countable})) (new-knext-is-a '({steerage} {uncountable}) '({control} {uncountable})) (new-knext-is-a '({steering} {uncountable}) '({control} {uncountable})) (new-knext-is-a '({aim} {countable}) '({steering} {countable})) (new-knext-is-a '({navigation} {countable}) '({steering} {countable})) (new-knext-is-a '({pilotage} {uncountable}) '({steering} {uncountable})) (new-knext-is-a '({protection} {uncountable}) '({activity} {countable})) (new-knext-is-a '({lining} {countable}) '({application} {countable})) (new-knext-is-a '({facing} {countable}) '({application} {countable})) (new-knext-is-a '({escort} {countable}) '({protection} {countable})) (new-knext-is-a '({tutelage} {countable}) '({protection} {countable})) (new-knext-is-a '({guardianship} {countable}) '({protection} {countable})) (new-knext-is-a '({wear} {uncountable}) '({human action} {countable})) (new-knext-is-a '({wearing} {uncountable}) '({human action} {countable})) (new-knext-is-a '({control} {countable}) '({bodily process} {countable})) (new-knext-is-a '({breathing} {uncountable}) '({bodily process} {countable})) (new-knext-is-a '({smoke} {countable}) '({breathing} {uncountable})) (new-knext-is-a '({smoking} {uncountable}) '({breathing} {uncountable})) (new-knext-is-a '({consumption} {uncountable}) '({bodily process} {countable})) (new-knext-is-a '({eating} {uncountable}) '({consumption} {uncountable})) (new-knext-is-a '({feeding} {countable}) '({consumption} {uncountable})) (new-knext-is-a '({chomp} {countable}) '({eating} {uncountable})) (new-knext-is-a '({chomp} {countable}) '({feeding} {countable})) (new-knext-is-a '({swallow} {countable}) '({consumption} {uncountable})) (new-knext-is-a '({graze} {countable}) '({eating} {uncountable})) (new-knext-is-a '({graze} {countable}) '({feeding} {countable})) (new-knext-is-a '({grazing} {uncountable}) '({eating} {uncountable})) (new-knext-type {grazing} {uncountable}) (new-knext-type {feeding} {uncountable}) (new-statement {grazing} {consists of} {feeding}) (new-knext-is-a '({savoring} {uncountable}) '({eating} {uncountable})) (new-knext-type {savoring} {uncountable}) (new-knext-type {feeding} {uncountable}) (new-statement {savoring} {consists of} {feeding}) (add-english-names (list {savoring} {savouring}) (list "savoring" "savouring")) (add-english-names (list {savoring} {savouring}) (list "savoring" "savouring")) (new-knext-is-a '({sucking} {countable}) '({consumption} {uncountable})) (new-knext-is-a '({suction} {uncountable}) '({consumption} {uncountable})) (new-knext-is-a '({drinking} {countable}) '({consumption} {uncountable})) (new-knext-is-a '({sip} {countable}) '({swallow} {countable})) (new-knext-is-a '({sexual activity} {uncountable}) '({bodily process} {countable})) (new-knext-is-a '({sex activity} {countable}) '({bodily process} {countable})) (new-knext-is-a '({conception} {countable}) '({sexual activity} {uncountable})) (new-knext-is-a '({conception} {countable}) '({sex activity} {countable})) (new-knext-is-a '({insemination} {uncountable}) '({bodily process} {countable})) (new-knext-is-a '({lovemaking} {uncountable}) '({sexual activity} {uncountable})) (new-knext-is-a '({lovemaking} {uncountable}) '({sex activity} {countable})) (new-knext-is-a '({love life} {countable}) '({sexual activity} {uncountable})) (new-knext-is-a '({love life} {countable}) '({sex activity} {countable})) (new-knext-is-a '({mating} {countable}) '({sexual activity} {uncountable})) (new-knext-is-a '({mating} {countable}) '({sex activity} {countable})) (new-knext-is-a '({procreation} {uncountable}) '({sexual activity} {uncountable})) (new-knext-is-a '({procreation} {uncountable}) '({sex activity} {countable})) (new-knext-is-a '({miscegenation} {uncountable}) '({procreation} {uncountable})) (new-knext-is-a '({multiplication} {countable}) '({procreation} {uncountable})) (new-knext-is-a '({propagation} {uncountable}) '({procreation} {uncountable})) (new-knext-is-a '({hybridization} {countable}) '({mating} {countable})) (add-english-names (list {hybridization} {hybridisation} {hybridization} {hybridisation}) (list "hybridization" "hybridisation" "hybridization" "hybridisation")) (new-knext-type {hybridization} {uncountable}) (new-knext-type {mating} {uncountable}) (new-statement {hybridization} {consists of} {mating}) (new-knext-is-a '({response} {countable}) '({bodily process} {countable})) (new-knext-is-a '({crying} {uncountable}) '({bodily process} {countable})) (new-knext-is-a '({weeping} {countable}) '({bodily process} {countable})) (new-knext-is-a '({calculation} {uncountable}) '({procedure} {countable})) (new-knext-is-a '({computing} {uncountable}) '({procedure} {countable})) (new-knext-is-a '({mathematical process} {countable}) '({calculation} {countable})) (new-knext-is-a '({mathematical process} {countable}) '({computing} {uncountable})) (new-knext-is-a '({combination} {uncountable}) '({mathematical process} {countable})) (new-knext-is-a '({judgment} {countable}) '({human action} {countable})) (new-knext-is-a '({assessment} {uncountable}) '({human action} {countable})) (new-knext-is-a '({evaluation} {countable}) '({judgment} {countable})) (new-knext-is-a '({evaluation} {countable}) '({assessment} {countable})) (new-knext-is-a '({rating} {countable}) '({judgment} {countable})) (new-knext-is-a '({rating} {countable}) '({assessment} {countable})) (new-knext-is-a '({estimate} {countable}) '({judgment} {countable})) (new-knext-is-a '({estimate} {countable}) '({assessment} {countable})) (new-knext-is-a '({sensory activity} {countable}) '({activity} {countable})) (new-knext-is-a '({sensing} {uncountable}) '({sensory activity} {countable})) (new-knext-is-a '({perception} {uncountable}) '({sensory activity} {countable})) (new-knext-is-a '({look} {countable}) '({sensing} {uncountable})) (new-knext-is-a '({look} {countable}) '({perception} {countable})) (new-knext-is-a '({looking} {uncountable}) '({sensing} {uncountable})) (new-knext-is-a '({looking} {countable}) '({perception} {countable})) (new-knext-is-a '({looking at} {uncountable}) '({sensing} {uncountable})) (new-knext-is-a '({looking at} {uncountable}) '({perception} {uncountable})) (new-knext-is-a '({glance} {countable}) '({look} {countable})) (new-knext-is-a '({glance} {countable}) '({looking} {countable})) (new-knext-is-a '({glance} {countable}) '({looking at} {uncountable})) (new-knext-is-a '({scrutiny} {countable}) '({look} {countable})) (new-knext-is-a '({scrutiny} {countable}) '({looking} {countable})) (new-knext-is-a '({scrutiny} {uncountable}) '({looking at} {uncountable})) (new-knext-is-a '({peek} {countable}) '({look} {countable})) (new-knext-is-a '({peek} {countable}) '({looking} {countable})) (new-knext-is-a '({peek} {countable}) '({looking at} {uncountable})) (new-knext-is-a '({stare} {countable}) '({look} {countable})) (new-knext-is-a '({stare} {countable}) '({looking} {countable})) (new-knext-is-a '({stare} {countable}) '({looking at} {uncountable})) (new-knext-is-a '({gaze} {countable}) '({stare} {countable})) (new-knext-is-a '({gape} {countable}) '({stare} {countable})) (new-knext-is-a '({inspection} {countable}) '({examination} {countable})) (new-knext-is-a '({observance} {countable}) '({look} {countable})) (new-knext-is-a '({observance} {countable}) '({looking} {countable})) (new-knext-is-a '({observance} {uncountable}) '({looking at} {uncountable})) (new-knext-type {watching} {uncountable}) (new-knext-type {look} {uncountable}) (new-statement {watching} {consists of} {look}) (new-knext-is-a '({watching} {uncountable}) '({looking} {uncountable})) (new-knext-is-a '({watching} {uncountable}) '({looking at} {uncountable})) (new-knext-is-a '({sighting} {countable}) '({observance} {countable})) (new-knext-is-a '({sighting} {countable}) '({watching} {uncountable})) (new-knext-is-a '({view} {countable}) '({look} {countable})) (new-knext-is-a '({view} {countable}) '({looking} {countable})) (new-knext-is-a '({view} {countable}) '({looking at} {uncountable})) (new-knext-is-a '({sight} {countable}) '({look} {countable})) (new-knext-is-a '({sight} {countable}) '({looking} {countable})) (new-knext-is-a '({sight} {uncountable}) '({looking at} {uncountable})) (new-knext-is-a '({listening} {uncountable}) '({sensing} {uncountable})) (new-knext-is-a '({listening} {countable}) '({perception} {countable})) (new-knext-is-a '({smell} {uncountable}) '({sensing} {uncountable})) (new-knext-is-a '({smell} {countable}) '({perception} {countable})) (new-knext-is-a '({smelling} {uncountable}) '({sensing} {uncountable})) (new-knext-is-a '({smelling} {uncountable}) '({perception} {uncountable})) (new-knext-is-a '({education} {uncountable}) '({activity} {countable})) (new-knext-is-a '({didactics} {uncountable}) '({activity} {countable})) (new-knext-is-a '({educational activity} {countable}) '({activity} {countable})) (new-knext-is-a '({course} {countable}) '({education} {countable})) (new-knext-is-a '({course} {countable}) '({didactics} {uncountable})) (new-knext-is-a '({course} {countable}) '({educational activity} {countable})) (new-knext-is-a '({class} {countable}) '({education} {countable})) (new-knext-is-a '({class} {uncountable}) '({didactics} {uncountable})) (new-knext-is-a '({class} {uncountable}) '({educational activity} {countable})) (new-knext-is-a '({teaching} {uncountable}) '({education} {uncountable})) (new-knext-is-a '({lesson} {countable}) '({teaching} {uncountable})) (new-knext-is-a '({seminar} {countable}) '({course} {countable})) (new-knext-is-a '({seminar} {countable}) '({class} {countable})) (new-knext-is-a '({workshop} {countable}) '({course} {countable})) (new-knext-is-a '({workshop} {countable}) '({class} {countable})) (new-knext-is-a '({lecture} {countable}) '({teaching} {uncountable})) (new-knext-is-a '({lecturing} {uncountable}) '({teaching} {uncountable})) (new-knext-is-a '({training} {uncountable}) '({activity} {countable})) (new-knext-is-a '({preparation} {uncountable}) '({activity} {countable})) (new-knext-is-a '({drill} {uncountable}) '({training} {uncountable})) (new-knext-is-a '({drill} {countable}) '({preparation} {countable})) (new-knext-is-a '({exercise} {uncountable}) '({training} {uncountable})) (new-knext-is-a '({exercise} {countable}) '({preparation} {countable})) (new-knext-is-a '({practice session} {countable}) '({training} {uncountable})) (new-knext-is-a '({practice session} {countable}) '({preparation} {countable})) (new-knext-is-a '({military training} {uncountable}) '({training} {uncountable})) (new-knext-is-a '({military training} {uncountable}) '({preparation} {uncountable})) (new-knext-is-a '({rehearsal} {countable}) '({exercise} {countable})) (new-knext-is-a '({rehearsal} {countable}) '({practice session} {countable})) (new-knext-is-a '({dry run} {countable}) '({exercise} {countable})) (new-knext-is-a '({dry run} {countable}) '({practice session} {countable})) (new-knext-is-a '({review} {countable}) '({exercise} {countable})) (new-knext-is-a '({review} {countable}) '({practice session} {countable})) (new-knext-is-a '({brushup} {uncountable}) '({exercise} {uncountable})) (new-knext-type {brushup} {uncountable}) (new-knext-type {practice session} {uncountable}) (new-statement {brushup} {consists of} {practice session}) (new-knext-is-a '({delineation} {countable}) '({pictorial representation} {countable})) (new-knext-is-a '({delineation} {uncountable}) '({picturing} {uncountable})) (new-knext-is-a '({portrayal} {countable}) '({pictorial representation} {countable})) (new-knext-is-a '({portrayal} {countable}) '({picturing} {uncountable})) (new-knext-is-a '({portraiture} {countable}) '({delineation} {countable})) (new-knext-is-a '({portraiture} {countable}) '({portrayal} {countable})) (new-knext-type {photography} {uncountable}) (new-knext-type {pictorial representation} {uncountable}) (new-statement {photography} {consists of} {pictorial representation}) (new-knext-is-a '({photography} {uncountable}) '({picturing} {uncountable})) (new-knext-is-a '({picture taking} {countable}) '({pictorial representation} {countable})) (new-knext-is-a '({picture taking} {countable}) '({picturing} {uncountable})) (new-knext-is-a '({filming} {uncountable}) '({photography} {uncountable})) (new-knext-is-a '({filming} {countable}) '({picture taking} {countable})) (new-knext-is-a '({cinematography} {uncountable}) '({photography} {uncountable})) (new-knext-type {cinematography} {uncountable}) (new-knext-type {picture taking} {uncountable}) (new-statement {cinematography} {consists of} {picture taking}) (new-knext-is-a '({take} {countable}) '({filming} {countable})) (new-knext-is-a '({take} {uncountable}) '({cinematography} {uncountable})) (new-knext-is-a '({creation} {uncountable}) '({activity} {countable})) (new-knext-is-a '({creative activity} {countable}) '({activity} {countable})) (new-knext-is-a '({creating from raw materials} {uncountable}) '({creation} {uncountable})) (new-knext-is-a '({creating from raw materials} {uncountable}) '({creative activity} {countable})) (new-knext-is-a '({molding} {countable}) '({creating from raw materials} {uncountable})) (new-knext-is-a '({recording} {uncountable}) '({creating from raw materials} {uncountable})) (new-knext-is-a '({construction} {uncountable}) '({creating from raw materials} {uncountable})) (new-knext-is-a '({assembly} {countable}) '({construction} {countable})) (new-knext-is-a '({dismantling} {uncountable}) '({activity} {countable})) (new-knext-is-a '({disassembly} {countable}) '({activity} {countable})) (new-knext-is-a '({production} {uncountable}) '({human action} {countable})) (new-knext-is-a '({production} {countable}) '({manufacture} {countable})) (new-knext-is-a '({output} {countable}) '({production} {countable})) (new-knext-is-a '({yield} {countable}) '({production} {countable})) (new-knext-is-a '({breeding} {uncountable}) '({production} {uncountable})) (new-knext-is-a '({cultivation} {uncountable}) '({production} {uncountable})) (new-knext-is-a '({farming} {uncountable}) '({cultivation} {uncountable})) (new-knext-is-a '({husbandry} {uncountable}) '({cultivation} {uncountable})) (new-knext-is-a '({gardening} {uncountable}) '({farming} {uncountable})) (new-knext-is-a '({gardening} {uncountable}) '({husbandry} {uncountable})) (new-knext-is-a '({planting} {countable}) '({farming} {uncountable})) (new-knext-is-a '({planting} {countable}) '({husbandry} {countable})) (new-knext-is-a '({culture} {countable}) '({growth} {uncountable})) (new-knext-is-a '({flower gardening} {uncountable}) '({gardening} {uncountable})) (new-knext-is-a '({harvest time} {countable}) '({time of year} {countable})) (new-knext-is-a '({mining} {uncountable}) '({production} {uncountable})) (new-knext-is-a '({excavation} {countable}) '({production} {countable})) (new-knext-is-a '({boring} {countable}) '({production} {countable})) (new-knext-is-a '({oil production} {countable}) '({production} {countable})) (new-knext-is-a '({manufacture} {uncountable}) '({business enterprise} {countable})) (new-knext-is-a '({manufacture} {countable}) '({business} {countable})) (new-knext-is-a '({devising} {uncountable}) '({production} {uncountable})) (new-knext-is-a '({fashioning} {countable}) '({production} {countable})) (new-knext-is-a '({manufacture} {uncountable}) '({creating from raw materials} {uncountable})) (new-knext-is-a '({manufacturing} {uncountable}) '({creating from raw materials} {uncountable})) (new-knext-is-a '({formation} {countable}) '({manufacture} {countable})) (new-knext-is-a '({formation} {uncountable}) '({manufacturing} {uncountable})) (new-knext-is-a '({filing} {countable}) '({formation} {countable})) (new-knext-is-a '({forging} {countable}) '({formation} {countable})) (new-knext-is-a '({creating by mental acts} {uncountable}) '({creation} {uncountable})) (new-knext-is-a '({creating by mental acts} {uncountable}) '({creative activity} {countable})) (add-english-names (list {programing} {programming} {programming}) (list "programing" "programming" "programming")) (new-knext-is-a '({computer programming} {uncountable}) '({creating by mental acts} {uncountable})) (new-knext-is-a '({computer programing} {countable}) '({creating by mental acts} {uncountable})) (new-knext-is-a '({fabrication} {uncountable}) '({writing} {uncountable})) (new-knext-is-a '({fabrication} {countable}) '({authorship} {countable})) (add-english-names (list {fictionalization} {fictionalisation} {fictionalization} {fictionalisation}) (list "fictionalization" "fictionalisation" "fictionalization" "fictionalisation")) (add-english-names (list {fictionalization} {fictionalisation} {fictionalization} {fictionalisation}) (list "fictionalization" "fictionalisation" "fictionalization" "fictionalisation")) (new-knext-is-a '({actualization} {countable}) '({creating by mental acts} {uncountable})) (add-english-names (list {actualization} {actualisation} {actualization} {actualisation}) (list "actualization" "actualisation" "actualization" "actualisation")) (new-knext-is-a '({art} {countable}) '({creation} {countable})) (new-knext-is-a '({art} {uncountable}) '({creative activity} {countable})) (new-knext-is-a '({artistic creation} {uncountable}) '({creation} {uncountable})) (new-knext-is-a '({artistic creation} {uncountable}) '({creative activity} {countable})) (new-knext-is-a '({artistic production} {countable}) '({creation} {countable})) (new-knext-is-a '({artistic production} {countable}) '({creative activity} {countable})) (new-knext-is-a '({painting} {countable}) '({art} {countable})) (new-knext-is-a '({painting} {uncountable}) '({artistic creation} {uncountable})) (new-knext-is-a '({painting} {countable}) '({artistic production} {countable})) (new-knext-is-a '({composing} {uncountable}) '({creating by mental acts} {uncountable})) (new-knext-is-a '({composition} {uncountable}) '({creating by mental acts} {uncountable})) (new-knext-is-a '({invention} {uncountable}) '({creating by mental acts} {uncountable})) (new-knext-is-a '({conceptualization} {countable}) '({creating by mental acts} {uncountable})) (new-knext-is-a '({formulation} {uncountable}) '({creating by mental acts} {uncountable})) (new-knext-is-a '({approach} {countable}) '({conceptualization} {countable})) (new-knext-is-a '({approach} {countable}) '({formulation} {countable})) (new-knext-is-a '({attack} {countable}) '({conceptualization} {countable})) (new-knext-is-a '({attack} {countable}) '({formulation} {countable})) (new-knext-is-a '({search} {uncountable}) '({activity} {countable})) (new-knext-is-a '({hunting} {uncountable}) '({activity} {countable})) (new-knext-is-a '({quest} {countable}) '({search} {countable})) (new-knext-is-a '({quest} {countable}) '({hunting} {uncountable})) (new-knext-is-a '({seeking} {countable}) '({search} {countable})) (new-knext-is-a '({seeking} {uncountable}) '({hunting} {uncountable})) (new-knext-is-a '({ransacking} {countable}) '({search} {countable})) (new-knext-is-a '({ransacking} {countable}) '({hunting} {uncountable})) (new-knext-is-a '({use} {uncountable}) '({activity} {countable})) (new-knext-is-a '({play} {uncountable}) '({use} {uncountable})) (new-knext-is-a '({exploitation} {countable}) '({use} {countable})) (new-knext-is-a '({application} {countable}) '({use} {countable})) (new-knext-is-a '({practical application} {countable}) '({use} {countable})) (new-knext-is-a '({military action} {countable}) '({group action} {countable})) (new-knext-is-a '({action} {countable}) '({group action} {countable})) (new-knext-is-a '({battle} {countable}) '({military action} {countable})) (new-knext-is-a '({battle} {countable}) '({action} {countable})) (new-knext-is-a '({fight} {countable}) '({military action} {countable})) (new-knext-is-a '({fight} {countable}) '({action} {countable})) (new-knext-is-a '({defense} {countable}) '({military action} {countable})) (new-knext-is-a '({defense} {countable}) '({action} {countable})) (add-english-names (list {defense} {defence}) (list "defense" "defence")) (new-knext-is-a '({defense} {countable}) '({military action} {countable})) (add-english-names (list {defense} {defence}) (list "defense" "defence")) (new-knext-is-a '({defense} {countable}) '({action} {countable})) (new-knext-is-a '({operation} {uncountable}) '({activity} {countable})) (new-knext-is-a '({military operation} {countable}) '({activity} {countable})) (new-knext-is-a '({resistance} {countable}) '({military action} {countable})) (new-knext-is-a '({resistance} {countable}) '({action} {countable})) (new-knext-is-a '({conflict} {countable}) '({group action} {countable})) (new-knext-is-a '({struggle} {countable}) '({group action} {countable})) (new-knext-is-a '({brush} {countable}) '({fighting} {countable})) (new-knext-is-a '({brush} {uncountable}) '({combat} {uncountable})) (new-knext-is-a '({encounter} {countable}) '({fighting} {countable})) (new-knext-is-a '({encounter} {countable}) '({combat} {uncountable})) (new-knext-is-a '({maneuver} {countable}) '({operation} {countable})) (new-knext-is-a '({maneuver} {countable}) '({military operation} {countable})) (add-english-names (list {maneuver} {manoeuvre}) (list "maneuver" "manoeuvre")) (new-knext-is-a '({maneuver} {countable}) '({operation} {countable})) (add-english-names (list {maneuver} {manoeuvre}) (list "maneuver" "manoeuvre")) (new-knext-is-a '({maneuver} {countable}) '({military operation} {countable})) (new-knext-is-a '({rebellion} {countable}) '({conflict} {countable})) (new-knext-is-a '({rebellion} {countable}) '({struggle} {countable})) (new-knext-is-a '({insurrection} {countable}) '({conflict} {countable})) (new-knext-is-a '({insurrection} {countable}) '({struggle} {countable})) (new-knext-is-a '({revolution} {countable}) '({group action} {countable})) (new-knext-type {combat} {uncountable}) (new-knext-type {battle} {uncountable}) (new-statement {combat} {consists of} {battle}) (new-knext-is-a '({combat} {uncountable}) '({fight} {uncountable})) (new-knext-is-a '({aggression} {uncountable}) '({action} {countable})) (new-knext-is-a '({violence} {uncountable}) '({aggression} {uncountable})) (new-knext-is-a '({force} {countable}) '({aggression} {countable})) (new-knext-is-a '({defloration} {countable}) '({scathe} {countable})) (new-knext-is-a '({military campaign} {countable}) '({operation} {countable})) (new-knext-is-a '({military campaign} {countable}) '({military operation} {countable})) (new-knext-is-a '({attack} {countable}) '({operation} {countable})) (new-knext-is-a '({attack} {countable}) '({military operation} {countable})) (new-knext-is-a '({onrush} {countable}) '({operation} {countable})) (new-knext-is-a '({onrush} {countable}) '({military operation} {countable})) (new-knext-is-a '({war} {countable}) '({military action} {countable})) (new-knext-is-a '({war} {countable}) '({action} {countable})) (new-knext-type {warfare} {uncountable}) (new-knext-type {military action} {uncountable}) (new-statement {warfare} {consists of} {military action}) (new-knext-is-a '({warfare} {uncountable}) '({action} {uncountable})) (new-knext-is-a '({strike} {countable}) '({attack} {countable})) (new-knext-is-a '({strike} {countable}) '({onrush} {countable})) (new-knext-is-a '({bombing} {countable}) '({attack} {countable})) (new-knext-is-a '({bombing} {countable}) '({onrush} {countable})) (new-knext-is-a '({offense} {countable}) '({operation} {countable})) (new-knext-is-a '({offense} {countable}) '({military operation} {countable})) (add-english-names (list {offense} {offence}) (list "offense" "offence")) (new-knext-is-a '({offense} {countable}) '({operation} {countable})) (add-english-names (list {offense} {offence}) (list "offense" "offence")) (new-knext-is-a '({offense} {countable}) '({military operation} {countable})) (new-knext-is-a '({firing} {countable}) '({attack} {countable})) (new-knext-is-a '({firing} {countable}) '({onrush} {countable})) (new-knext-is-a '({measurement} {uncountable}) '({activity} {countable})) (new-knext-is-a '({measuring} {uncountable}) '({activity} {countable})) (new-knext-is-a '({calibration} {uncountable}) '({activity} {countable})) (new-knext-is-a '({adjustment} {countable}) '({calibration} {countable})) (new-knext-is-a '({readjustment} {countable}) '({calibration} {countable})) (new-knext-is-a '({alignment} {countable}) '({adjustment} {countable})) (new-knext-is-a '({alignment} {countable}) '({readjustment} {countable})) (new-knext-is-a '({quantification} {countable}) '({measurement} {countable})) (new-knext-is-a '({quantification} {countable}) '({measuring} {uncountable})) (new-knext-is-a '({gradation} {countable}) '({quantification} {countable})) (new-knext-is-a '({graduation} {countable}) '({quantification} {countable})) (new-knext-is-a '({reading} {countable}) '({measurement} {countable})) (new-knext-is-a '({reading} {uncountable}) '({measuring} {uncountable})) (new-knext-is-a '({meter reading} {countable}) '({measurement} {countable})) (new-knext-is-a '({meter reading} {countable}) '({measuring} {uncountable})) (new-knext-is-a '({organization} {uncountable}) '({activity} {countable})) (new-knext-is-a '({ordering} {uncountable}) '({organization} {uncountable})) (new-knext-is-a '({scaling} {uncountable}) '({ordering} {uncountable})) (new-knext-is-a '({grading} {uncountable}) '({ordering} {uncountable})) (new-knext-is-a '({succession} {uncountable}) '({ordering} {uncountable})) (new-knext-is-a '({sequence} {countable}) '({ordering} {uncountable})) (new-knext-is-a '({grouping} {uncountable}) '({activity} {countable})) (new-knext-is-a '({classification} {countable}) '({grouping} {countable})) (new-knext-is-a '({compartmentalization} {uncountable}) '({grouping} {uncountable})) (new-knext-is-a '({assortment} {countable}) '({grouping} {countable})) (new-knext-is-a '({collection} {countable}) '({grouping} {countable})) (new-knext-is-a '({collecting} {uncountable}) '({grouping} {uncountable})) (new-knext-is-a '({aggregation} {countable}) '({grouping} {countable})) (new-knext-is-a '({gather} {countable}) '({collection} {countable})) (new-knext-is-a '({gather} {uncountable}) '({collecting} {uncountable})) (new-knext-is-a '({gather} {countable}) '({aggregation} {countable})) (new-knext-is-a '({gathering} {countable}) '({collection} {countable})) (new-knext-is-a '({gathering} {countable}) '({collecting} {uncountable})) (new-knext-is-a '({gathering} {countable}) '({aggregation} {countable})) (new-knext-is-a '({harvesting} {countable}) '({gather} {countable})) (new-knext-is-a '({harvesting} {countable}) '({gathering} {countable})) (new-knext-is-a '({harvest home} {countable}) '({gather} {countable})) (new-knext-is-a '({harvest home} {countable}) '({gathering} {countable})) (new-knext-is-a '({sorting} {countable}) '({grouping} {countable})) (new-knext-is-a '({continuance} {uncountable}) '({activity} {countable})) (new-knext-is-a '({prolongation} {countable}) '({continuance} {countable})) (new-knext-is-a '({protraction} {uncountable}) '({continuance} {uncountable})) (new-knext-is-a '({repetition} {countable}) '({continuance} {countable})) (new-knext-is-a '({repeating} {uncountable}) '({continuance} {uncountable})) (new-knext-is-a '({iteration} {countable}) '({repetition} {countable})) (new-knext-is-a '({iteration} {uncountable}) '({repeating} {uncountable})) (new-knext-is-a '({reduplication} {countable}) '({repetition} {countable})) (new-knext-is-a '({reduplication} {uncountable}) '({repeating} {uncountable})) (new-knext-is-a '({reiteration} {countable}) '({repetition} {countable})) (new-knext-is-a '({reiteration} {countable}) '({repeating} {uncountable})) (new-knext-is-a '({copying} {countable}) '({repetition} {countable})) (new-knext-is-a '({copying} {uncountable}) '({repeating} {uncountable})) (new-knext-is-a '({replication} {countable}) '({copying} {countable})) (new-knext-is-a '({imitation} {countable}) '({copying} {countable})) (new-knext-is-a '({perseverance} {uncountable}) '({continuance} {uncountable})) (new-knext-is-a '({persistence} {countable}) '({continuance} {countable})) (new-knext-is-a '({perseveration} {countable}) '({continuance} {countable})) (new-knext-is-a '({abidance} {uncountable}) '({continuance} {uncountable})) (new-knext-is-a '({survival} {countable}) '({continuance} {countable})) (new-knext-is-a '({discontinuance} {countable}) '({ending} {countable})) (new-knext-is-a '({disinheritance} {countable}) '({discontinuance} {countable})) (new-knext-is-a '({procedure} {countable}) '({proceeding} {countable})) (new-knext-is-a '({procedure} {countable}) '({legal proceeding} {countable})) (new-knext-is-a '({procedure} {countable}) '({activity} {countable})) (new-knext-is-a '({stiffening} {uncountable}) '({procedure} {countable})) (new-knext-is-a '({routine} {countable}) '({procedure} {countable})) (new-knext-is-a '({ceremony} {countable}) '({activity} {countable})) (new-knext-is-a '({ritual} {countable}) '({custom} {countable})) (new-knext-is-a '({religious ceremony} {countable}) '({ceremony} {countable})) (new-knext-is-a '({worship} {uncountable}) '({activity} {countable})) (new-knext-is-a '({deification} {uncountable}) '({worship} {uncountable})) (new-knext-is-a '({exaltation} {countable}) '({worship} {countable})) (new-knext-is-a '({apotheosis} {countable}) '({worship} {countable})) (new-knext-is-a '({rite} {countable}) '({religious ceremony} {countable})) (new-knext-is-a '({ritual} {countable}) '({practice} {countable})) (new-knext-is-a '({religious service} {countable}) '({religious ceremony} {countable})) (new-knext-is-a '({divine service} {countable}) '({religious ceremony} {countable})) (new-knext-is-a '({church service} {countable}) '({religious service} {countable})) (new-knext-is-a '({church service} {countable}) '({divine service} {countable})) (new-knext-is-a '({church} {countable}) '({religious service} {countable})) (new-knext-is-a '({church} {countable}) '({divine service} {countable})) (new-knext-is-a '({liturgy} {countable}) '({rite} {countable})) (new-knext-is-a '({office} {countable}) '({rite} {countable})) (new-knext-is-a '({sacrament} {countable}) '({religious ceremony} {countable})) (new-knext-is-a '({marriage ceremony} {countable}) '({ritual} {countable})) (new-knext-is-a '({baptism} {countable}) '({sacrament} {countable})) (new-knext-is-a '({christening} {countable}) '({baptism} {countable})) (new-knext-is-a '({sanctification} {countable}) '({religious ceremony} {countable})) (new-knext-is-a '({consecration} {countable}) '({sanctification} {countable})) (new-knext-is-a '({consecration} {countable}) '({allegiance} {countable})) (new-knext-is-a '({prayer} {countable}) '({worship} {countable})) (new-knext-is-a '({supplication} {countable}) '({worship} {countable})) (new-knext-is-a '({mass} {countable}) '({religious ceremony} {countable})) (new-knext-is-a '({veneration} {countable}) '({worship} {countable})) (new-knext-is-a '({energizing} {uncountable}) '({activity} {countable})) (new-knext-is-a '({activating} {uncountable}) '({activity} {countable})) (new-knext-is-a '({revival} {countable}) '({improvement} {countable})) (new-knext-is-a '({revival} {countable}) '({advance} {countable})) (new-knext-is-a '({vivification} {countable}) '({energizing} {countable})) (new-knext-is-a '({vivification} {countable}) '({activating} {countable})) (new-knext-is-a '({presentation} {countable}) '({ceremony} {countable})) (new-knext-is-a '({concealing} {uncountable}) '({activity} {countable})) (new-knext-is-a '({disguise} {countable}) '({concealing} {countable})) (new-knext-is-a '({mask} {countable}) '({concealing} {countable})) (new-knext-is-a '({cover} {countable}) '({concealing} {countable})) (new-knext-is-a '({masking} {uncountable}) '({concealing} {uncountable})) (new-knext-is-a '({stealth} {countable}) '({concealing} {countable})) (new-knext-is-a '({stealing} {uncountable}) '({concealing} {uncountable})) (new-knext-is-a '({locating} {uncountable}) '({activity} {countable})) (new-knext-is-a '({positioning} {uncountable}) '({activity} {countable})) (new-knext-is-a '({set} {countable}) '({locating} {uncountable})) (new-knext-is-a '({set} {countable}) '({positioning} {countable})) (new-knext-is-a '({stay} {uncountable}) '({human action} {countable})) (new-knext-is-a '({residency} {uncountable}) '({human action} {countable})) (new-knext-is-a '({abidance} {uncountable}) '({human action} {countable})) (new-knext-is-a '({lodging} {countable}) '({residency} {countable})) (new-knext-is-a '({lodging} {uncountable}) '({abidance} {uncountable})) (new-knext-is-a '({call} {countable}) '({visit} {countable})) (new-knext-is-a '({layover} {countable}) '({stay} {countable})) (new-knext-is-a '({provision} {uncountable}) '({activity} {countable})) (new-knext-is-a '({supplying} {uncountable}) '({activity} {countable})) (new-knext-is-a '({demand} {uncountable}) '({activity} {countable})) (new-knext-is-a '({claim} {countable}) '({demand} {countable})) (new-knext-is-a '({inactivity} {uncountable}) '({human action} {countable})) (new-knext-is-a '({pause} {countable}) '({inactivity} {uncountable})) (new-knext-type {falter} {uncountable}) (new-knext-type {pause} {uncountable}) (new-statement {falter} {consists of} {pause}) (new-knext-is-a '({faltering} {countable}) '({pause} {countable})) (new-knext-is-a '({freeze} {countable}) '({pause} {countable})) (new-knext-is-a '({halt} {countable}) '({pause} {countable})) (new-knext-is-a '({wait} {uncountable}) '({inactivity} {uncountable})) (new-knext-is-a '({waiting} {uncountable}) '({inactivity} {uncountable})) (new-knext-is-a '({rest} {uncountable}) '({inactivity} {uncountable})) (new-knext-is-a '({repose} {uncountable}) '({inactivity} {uncountable})) (new-knext-is-a '({leisure} {uncountable}) '({rest} {uncountable})) (new-knext-is-a '({leisure} {uncountable}) '({repose} {uncountable})) (new-knext-is-a '({delay} {uncountable}) '({inactivity} {uncountable})) (new-knext-is-a '({holdup} {countable}) '({inactivity} {uncountable})) (new-knext-is-a '({deferment} {countable}) '({delay} {countable})) (new-knext-is-a '({deferment} {countable}) '({holdup} {countable})) (new-knext-is-a '({deferral} {countable}) '({delay} {countable})) (new-knext-is-a '({deferral} {countable}) '({holdup} {countable})) (new-knext-is-a '({prorogation} {countable}) '({discontinuance} {countable})) (new-knext-is-a '({fast} {uncountable}) '({abstinence} {uncountable})) (new-knext-is-a '({diet} {countable}) '({fast} {countable})) (new-knext-is-a '({dieting} {uncountable}) '({fast} {uncountable})) (new-knext-is-a '({satisfaction} {countable}) '({change} {countable})) (new-knext-is-a '({hindrance} {countable}) '({human action} {countable})) (new-knext-is-a '({interference} {uncountable}) '({human action} {countable})) (new-knext-is-a '({obstruction} {countable}) '({hindrance} {countable})) (new-knext-is-a '({obstruction} {uncountable}) '({interference} {uncountable})) (new-knext-is-a '({blockage} {countable}) '({obstruction} {countable})) (new-knext-is-a '({occlusion} {countable}) '({obstruction} {countable})) (new-knext-is-a '({stop} {countable}) '({human action} {countable})) (new-knext-type {prevention} {uncountable}) (new-knext-type {hindrance} {uncountable}) (new-statement {prevention} {consists of} {hindrance}) (new-knext-is-a '({prevention} {uncountable}) '({interference} {uncountable})) (new-knext-is-a '({bar} {countable}) '({hindrance} {countable})) (new-knext-is-a '({bar} {countable}) '({interference} {uncountable})) (new-knext-is-a '({group action} {countable}) '({event} {countable})) (new-knext-is-a '({group action} {countable}) '({human action} {countable})) (new-knext-is-a '({distribution} {uncountable}) '({human action} {countable})) (new-knext-is-a '({dispensation} {countable}) '({distribution} {countable})) (new-knext-is-a '({apportionment} {countable}) '({distribution} {countable})) (new-knext-is-a '({apportioning} {countable}) '({distribution} {countable})) (new-knext-is-a '({deal} {countable}) '({apportionment} {countable})) (new-knext-is-a '({deal} {countable}) '({apportioning} {countable})) (new-knext-is-a '({parcel} {countable}) '({apportionment} {countable})) (new-knext-is-a '({parcel} {countable}) '({apportioning} {countable})) (new-knext-is-a '({deal} {countable}) '({distribution} {countable})) (new-knext-is-a '({social welfare} {uncountable}) '({economic aid} {uncountable})) (new-knext-is-a '({charity} {uncountable}) '({giving} {uncountable})) (new-knext-type {charity} {uncountable}) (new-knext-type {gift} {uncountable}) (new-statement {charity} {consists of} {gift}) (new-knext-is-a '({contribution} {countable}) '({giving} {countable})) (new-knext-is-a '({contribution} {countable}) '({gift} {countable})) (new-knext-is-a '({donation} {countable}) '({giving} {countable})) (new-knext-is-a '({donation} {countable}) '({gift} {countable})) (new-knext-type {commerce} {uncountable}) (new-knext-type {transaction} {uncountable}) (new-statement {commerce} {consists of} {transaction}) (new-knext-is-a '({commerce} {uncountable}) '({dealing} {uncountable})) (new-knext-is-a '({commerce} {uncountable}) '({dealings} {uncountable})) (new-knext-is-a '({trade} {uncountable}) '({commerce} {uncountable})) (new-knext-is-a '({interchange} {uncountable}) '({commerce} {uncountable})) (new-knext-is-a '({conversion} {countable}) '({interchange} {countable})) (new-knext-is-a '({business enterprise} {countable}) '({commerce} {uncountable})) (new-knext-is-a '({business} {uncountable}) '({commerce} {uncountable})) (new-knext-is-a '({business activity} {countable}) '({enterprise} {countable})) (new-knext-is-a '({business activity} {countable}) '({endeavor} {countable})) (new-knext-is-a '({operation} {uncountable}) '({business activity} {countable})) (new-knext-is-a '({business} {uncountable}) '({business activity} {countable})) (new-knext-is-a '({trade} {countable}) '({business} {countable})) (new-knext-is-a '({patronage} {uncountable}) '({business} {uncountable})) (new-knext-is-a '({market} {countable}) '({activity} {countable})) (new-knext-is-a '({finance} {uncountable}) '({business enterprise} {countable})) (new-knext-is-a '({finance} {countable}) '({business} {countable})) (new-knext-is-a '({investing} {uncountable}) '({finance} {uncountable})) (new-knext-is-a '({investment} {countable}) '({finance} {countable})) (new-knext-is-a '({banking} {uncountable}) '({finance} {uncountable})) (new-knext-is-a '({publicizing} {uncountable}) '({business enterprise} {countable})) (new-knext-is-a '({publicizing} {uncountable}) '({business} {uncountable})) (new-knext-is-a '({publication} {uncountable}) '({business enterprise} {countable})) (new-knext-is-a '({publication} {countable}) '({business} {countable})) (new-knext-is-a '({publishing} {uncountable}) '({business enterprise} {countable})) (new-knext-is-a '({publishing} {uncountable}) '({business} {uncountable})) (new-knext-is-a '({building} {uncountable}) '({business enterprise} {countable})) (new-knext-is-a '({building} {countable}) '({business} {countable})) (new-knext-is-a '({shipping} {uncountable}) '({business enterprise} {countable})) (new-knext-is-a '({shipping} {uncountable}) '({business} {uncountable})) (new-knext-is-a '({transport} {uncountable}) '({business enterprise} {countable})) (new-knext-is-a '({transport} {countable}) '({business} {countable})) (new-knext-is-a '({freight} {uncountable}) '({shipping} {uncountable})) (new-knext-is-a '({freight} {uncountable}) '({transport} {uncountable})) (new-knext-is-a '({transaction} {countable}) '({group action} {countable})) (new-knext-is-a '({dealing} {countable}) '({group action} {countable})) (new-knext-type {dealings} {uncountable}) (new-knext-type {group action} {uncountable}) (new-statement {dealings} {consists of} {group action}) (new-knext-is-a '({transfer} {countable}) '({transaction} {countable})) (new-knext-is-a '({transfer} {countable}) '({dealing} {countable})) (new-knext-type {transfer} {countable}) (new-knext-type {dealings} {countable}) (new-statement {dealings} {consists of} {transfer}) (new-knext-is-a '({transference} {countable}) '({transaction} {countable})) (new-knext-is-a '({transference} {countable}) '({dealing} {countable})) (new-knext-is-a '({transference} {uncountable}) '({dealings} {uncountable})) (new-knext-is-a '({exchange} {countable}) '({transaction} {countable})) (new-knext-is-a '({exchange} {countable}) '({dealing} {countable})) (new-knext-is-a '({exchange} {uncountable}) '({dealings} {uncountable})) (new-knext-is-a '({barter} {countable}) '({interchange} {countable})) (new-knext-is-a '({deal} {countable}) '({transaction} {countable})) (new-knext-is-a '({deal} {countable}) '({dealing} {countable})) (new-knext-type {deal} {countable}) (new-knext-type {dealings} {countable}) (new-statement {dealings} {consists of} {deal}) (new-knext-is-a '({trade} {countable}) '({transaction} {countable})) (new-knext-is-a '({trade} {countable}) '({dealing} {countable})) (new-knext-is-a '({trade} {uncountable}) '({dealings} {uncountable})) (new-knext-is-a '({rental} {countable}) '({transaction} {countable})) (new-knext-is-a '({rental} {countable}) '({dealing} {countable})) (new-knext-is-a '({rental} {uncountable}) '({dealings} {uncountable})) (new-knext-type {renting} {uncountable}) (new-knext-type {transaction} {uncountable}) (new-statement {renting} {consists of} {transaction}) (new-knext-is-a '({renting} {uncountable}) '({dealing} {uncountable})) (new-knext-is-a '({renting} {uncountable}) '({dealings} {uncountable})) (new-knext-is-a '({marketing} {uncountable}) '({commerce} {uncountable})) (new-knext-is-a '({selling} {uncountable}) '({commerce} {uncountable})) (new-knext-is-a '({traffic} {uncountable}) '({commerce} {uncountable})) (new-knext-is-a '({sell} {countable}) '({sale} {countable})) (new-knext-is-a '({venture} {countable}) '({business enterprise} {countable})) (new-knext-is-a '({venture} {countable}) '({business} {countable})) (new-knext-is-a '({sale} {uncountable}) '({selling} {uncountable})) (new-knext-is-a '({payment} {uncountable}) '({commerce} {uncountable})) (new-knext-is-a '({defrayal} {countable}) '({commerce} {uncountable})) (new-knext-is-a '({evasion} {uncountable}) '({commerce} {uncountable})) (new-knext-is-a '({amortization} {uncountable}) '({payment} {uncountable})) (new-knext-type {amortization} {uncountable}) (new-knext-type {defrayal} {uncountable}) (new-statement {amortization} {consists of} {defrayal}) (add-english-names (list {amortization} {amortisation} {amortization} {amortisation}) (list "amortization" "amortisation" "amortization" "amortisation")) (new-knext-is-a '({amortization} {countable}) '({payment} {countable})) (add-english-names (list {amortization} {amortisation} {amortization} {amortisation}) (list "amortization" "amortisation" "amortization" "amortisation")) (new-knext-is-a '({amortization} {countable}) '({defrayal} {countable})) (new-knext-is-a '({refund} {countable}) '({payment} {countable})) (new-knext-is-a '({refund} {countable}) '({defrayal} {countable})) (new-knext-is-a '({repayment} {countable}) '({payment} {countable})) (new-knext-is-a '({repayment} {countable}) '({defrayal} {countable})) (new-knext-is-a '({spending} {uncountable}) '({payment} {uncountable})) (new-knext-type {spending} {uncountable}) (new-knext-type {defrayal} {uncountable}) (new-statement {spending} {consists of} {defrayal}) (new-knext-is-a '({disbursal} {countable}) '({payment} {countable})) (new-knext-is-a '({disbursal} {countable}) '({defrayal} {countable})) (new-knext-is-a '({outlay} {countable}) '({payment} {countable})) (new-knext-is-a '({outlay} {countable}) '({defrayal} {countable})) (new-knext-is-a '({expending} {uncountable}) '({spending} {uncountable})) (new-knext-type {expending} {uncountable}) (new-knext-type {disbursal} {uncountable}) (new-statement {expending} {consists of} {disbursal}) (new-knext-is-a '({expending} {uncountable}) '({outlay} {uncountable})) (new-knext-is-a '({expenditure} {uncountable}) '({spending} {uncountable})) (new-knext-is-a '({expenditure} {countable}) '({disbursal} {countable})) (new-knext-is-a '({expenditure} {countable}) '({outlay} {countable})) (new-knext-is-a '({migration} {countable}) '({movement} {countable})) (new-knext-is-a '({migration} {countable}) '({move} {countable})) (new-knext-type {social control} {uncountable}) (new-knext-type {group action} {uncountable}) (new-statement {social control} {consists of} {group action}) (new-knext-is-a '({government} {uncountable}) '({social control} {uncountable})) (new-knext-is-a '({governing} {countable}) '({social control} {uncountable})) (new-knext-is-a '({legislating} {uncountable}) '({government} {uncountable})) (new-knext-type {legislating} {uncountable}) (new-knext-type {governing} {uncountable}) (new-statement {legislating} {consists of} {governing}) (new-knext-is-a '({duty} {uncountable}) '({social control} {uncountable})) (new-knext-is-a '({military control} {countable}) '({social control} {uncountable})) (new-knext-is-a '({management} {uncountable}) '({social control} {uncountable})) (new-knext-is-a '({direction} {uncountable}) '({social control} {uncountable})) (new-knext-is-a '({finance} {uncountable}) '({management} {uncountable})) (new-knext-is-a '({finance} {countable}) '({direction} {countable})) (new-knext-is-a '({treatment} {uncountable}) '({management} {uncountable})) (new-knext-is-a '({treatment} {countable}) '({direction} {countable})) (new-knext-is-a '({administration} {uncountable}) '({management} {uncountable})) (new-knext-is-a '({administration} {countable}) '({direction} {countable})) (new-knext-is-a '({conducting} {uncountable}) '({administration} {uncountable})) (new-knext-is-a '({organization} {countable}) '({administration} {countable})) (add-english-names (list {organization} {organisation} {organization} {organisation}) (list "organization" "organisation" "organization" "organisation")) (new-knext-is-a '({organization} {countable}) '({administration} {countable})) (new-knext-is-a '({authorization} {uncountable}) '({management} {uncountable})) (new-knext-is-a '({authorization} {countable}) '({direction} {countable})) (add-english-names (list {authorization} {authorisation} {authorization} {authorisation}) (list "authorization" "authorisation" "authorization" "authorisation")) (add-english-names (list {authorization} {authorisation} {authorization} {authorisation}) (list "authorization" "authorisation" "authorization" "authorisation")) (new-knext-is-a '({authorization} {countable}) '({direction} {countable})) (new-knext-is-a '({empowerment} {uncountable}) '({management} {uncountable})) (new-knext-is-a '({empowerment} {uncountable}) '({direction} {uncountable})) (new-knext-is-a '({permission} {countable}) '({authorization} {countable})) (add-english-names (list {authorization} {authorisation} {authorization} {authorisation}) (list "authorization" "authorisation" "authorization" "authorisation")) (new-knext-is-a '({permission} {countable}) '({authorization} {countable})) (new-knext-is-a '({permission} {uncountable}) '({empowerment} {uncountable})) (new-knext-is-a '({permit} {countable}) '({authorization} {countable})) (add-english-names (list {authorization} {authorisation} {authorization} {authorisation}) (list "authorization" "authorisation" "authorization" "authorisation")) (new-knext-is-a '({permit} {countable}) '({empowerment} {uncountable})) (new-knext-is-a '({commissioning} {countable}) '({authorization} {countable})) (add-english-names (list {authorization} {authorisation} {authorization} {authorisation}) (list "authorization" "authorisation" "authorization" "authorisation")) (new-knext-is-a '({commissioning} {countable}) '({authorization} {countable})) (new-knext-is-a '({commissioning} {uncountable}) '({empowerment} {uncountable})) (new-knext-is-a '({delegating} {uncountable}) '({authorization} {uncountable})) (add-english-names (list {authorization} {authorisation} {authorization} {authorisation}) (list "authorization" "authorisation" "authorization" "authorisation")) (new-knext-type {delegating} {uncountable}) (new-knext-type {authorization} {uncountable}) (new-statement {delegating} {consists of} {authorization}) (new-knext-is-a '({delegating} {uncountable}) '({empowerment} {uncountable})) (new-knext-is-a '({relegation} {countable}) '({authorization} {countable})) (add-english-names (list {authorization} {authorisation} {authorization} {authorisation}) (list "authorization" "authorisation" "authorization" "authorisation")) (new-knext-is-a '({relegation} {countable}) '({authorization} {countable})) (new-knext-is-a '({relegation} {uncountable}) '({empowerment} {uncountable})) (new-knext-is-a '({clearance} {countable}) '({permission} {countable})) (new-knext-is-a '({clearance} {countable}) '({permit} {countable})) (new-knext-is-a '({channelization} {uncountable}) '({management} {uncountable})) (new-knext-is-a '({channelization} {countable}) '({direction} {countable})) (add-english-names (list {channelization} {channelisation} {channelization} {channelisation}) (list "channelization" "channelisation" "channelization" "channelisation")) (add-english-names (list {channelization} {channelisation} {channelization} {channelisation}) (list "channelization" "channelisation" "channelization" "channelisation")) (new-knext-is-a '({preparation} {uncountable}) '({activity} {countable})) (new-knext-is-a '({readying} {uncountable}) '({activity} {countable})) (new-knext-is-a '({deployment} {countable}) '({preparation} {countable})) (new-knext-is-a '({deployment} {countable}) '({readying} {uncountable})) (new-knext-is-a '({planning} {uncountable}) '({preparation} {uncountable})) (new-knext-is-a '({planning} {uncountable}) '({readying} {uncountable})) (new-knext-is-a '({steering} {uncountable}) '({management} {uncountable})) (new-knext-is-a '({steering} {countable}) '({direction} {countable})) (new-knext-is-a '({circumscription} {countable}) '({restriction} {countable})) (new-knext-is-a '({circumscription} {countable}) '({confinement} {uncountable})) (new-knext-is-a '({constriction} {countable}) '({compression} {countable})) (new-knext-is-a '({constriction} {uncountable}) '({compressing} {uncountable})) (new-knext-is-a '({privation} {uncountable}) '({social control} {uncountable})) (new-knext-is-a '({deprivation} {uncountable}) '({social control} {uncountable})) (new-knext-is-a '({discrimination} {uncountable}) '({social control} {uncountable})) (new-knext-is-a '({outfitting} {countable}) '({arming} {countable})) (new-knext-is-a '({outfitting} {countable}) '({armament} {countable})) (new-knext-is-a '({outfitting} {uncountable}) '({equipping} {uncountable})) (new-knext-is-a '({punishment} {uncountable}) '({social control} {uncountable})) (new-knext-is-a '({penalty} {countable}) '({social control} {uncountable})) (new-knext-is-a '({discipline} {countable}) '({punishment} {countable})) (new-knext-is-a '({discipline} {countable}) '({penalty} {countable})) (new-knext-is-a '({hanging} {countable}) '({execution} {countable})) (new-knext-is-a '({hanging} {countable}) '({death penalty} {countable})) (new-knext-is-a '({exchange} {countable}) '({group action} {countable})) (new-knext-is-a '({direct action} {countable}) '({protest} {countable})) (new-knext-is-a '({direct action} {countable}) '({objection} {countable})) (new-knext-is-a '({rivalry} {countable}) '({group action} {countable})) (new-knext-is-a '({contest} {countable}) '({rivalry} {countable})) (new-knext-is-a '({riot} {countable}) '({violence} {uncountable})) (new-knext-is-a '({riot} {countable}) '({force} {countable})) (new-knext-is-a '({fighting} {countable}) '({conflict} {countable})) (new-knext-is-a '({fighting} {countable}) '({struggle} {countable})) (new-knext-is-a '({combat} {uncountable}) '({conflict} {uncountable})) (new-knext-type {combat} {uncountable}) (new-knext-type {struggle} {uncountable}) (new-statement {combat} {consists of} {struggle}) (new-knext-is-a '({swing} {countable}) '({blow} {countable})) (new-knext-is-a '({stinger} {countable}) '({blow} {countable})) (new-knext-is-a '({demonstration} {countable}) '({protest} {countable})) (new-knext-is-a '({demonstration} {countable}) '({objection} {countable})) (new-knext-is-a '({manifestation} {countable}) '({protest} {countable})) (new-knext-is-a '({manifestation} {countable}) '({objection} {countable})) (new-knext-type {due process} {uncountable}) (new-knext-type {group action} {uncountable}) (new-statement {due process} {consists of} {group action}) (new-knext-is-a '({legal action} {countable}) '({proceeding} {countable})) (new-knext-is-a '({legal action} {countable}) '({legal proceeding} {countable})) (new-knext-is-a '({lawsuit} {countable}) '({proceeding} {countable})) (new-knext-is-a '({lawsuit} {countable}) '({legal proceeding} {countable})) (new-knext-is-a '({case} {countable}) '({proceeding} {countable})) (new-knext-is-a '({case} {countable}) '({legal proceeding} {countable})) (new-knext-is-a '({proceeding} {uncountable}) '({due process} {uncountable})) (new-knext-is-a '({legal proceeding} {countable}) '({due process} {uncountable})) (new-knext-is-a '({adoption} {countable}) '({proceeding} {countable})) (new-knext-is-a '({adoption} {countable}) '({legal proceeding} {countable})) (new-knext-is-a '({reversal} {countable}) '({judgement} {countable})) (new-knext-is-a '({reversal} {countable}) '({judicial decision} {countable})) (new-knext-is-a '({affirmation} {countable}) '({judgement} {countable})) (new-knext-is-a '({affirmation} {countable}) '({judicial decision} {countable})) (new-knext-is-a '({bankruptcy} {countable}) '({proceeding} {countable})) (new-knext-is-a '({bankruptcy} {countable}) '({legal proceeding} {countable})) (new-knext-is-a '({litigation} {uncountable}) '({proceeding} {uncountable})) (new-knext-type {litigation} {uncountable}) (new-knext-type {legal proceeding} {uncountable}) (new-statement {litigation} {consists of} {legal proceeding}) (new-knext-is-a '({judicial proceeding} {countable}) '({proceeding} {countable})) (new-knext-is-a '({judicial proceeding} {countable}) '({legal proceeding} {countable})) (new-knext-is-a '({judgement} {uncountable}) '({due process} {uncountable})) (new-knext-is-a '({judicial decision} {countable}) '({due process} {uncountable})) (new-knext-is-a '({officiation} {countable}) '({decision making} {uncountable})) (new-knext-is-a '({prosecution} {countable}) '({legal action} {countable})) (new-knext-is-a '({criminal prosecution} {countable}) '({legal action} {countable})) (new-knext-is-a '({separation} {countable}) '({group action} {countable})) (new-knext-is-a '({divorce} {countable}) '({separation} {countable})) (new-knext-is-a '({legal separation} {countable}) '({cessation} {countable})) (new-knext-is-a '({separation} {countable}) '({cessation} {countable})) (new-knext-is-a '({integration} {countable}) '({group action} {countable})) (new-knext-type {integrating} {uncountable}) (new-knext-type {group action} {uncountable}) (new-statement {integrating} {consists of} {group action}) (new-knext-type {cooperation} {uncountable}) (new-knext-type {group action} {uncountable}) (new-statement {cooperation} {consists of} {group action}) (new-knext-is-a '({conformation} {uncountable}) '({cooperation} {uncountable})) (new-knext-is-a '({compliance} {uncountable}) '({cooperation} {uncountable})) (new-knext-is-a '({abidance} {countable}) '({cooperation} {uncountable})) (new-knext-is-a '({reconciliation} {countable}) '({cooperation} {uncountable})) (new-knext-is-a '({rapprochement} {uncountable}) '({cooperation} {uncountable})) (new-knext-is-a '({allegiance} {uncountable}) '({cooperation} {uncountable})) (new-knext-is-a '({devotion} {countable}) '({allegiance} {countable})) (new-knext-is-a '({assistance} {uncountable}) '({activity} {countable})) (new-knext-is-a '({facilitation} {countable}) '({assistance} {countable})) (new-knext-is-a '({helping hand} {countable}) '({assistance} {countable})) (new-knext-is-a '({succor} {countable}) '({assistance} {countable})) (new-knext-is-a '({lift} {countable}) '({assistance} {countable})) (new-knext-is-a '({service} {countable}) '({assistance} {countable})) (new-knext-is-a '({seating} {uncountable}) '({service} {uncountable})) (new-knext-is-a '({boost} {countable}) '({assistance} {countable})) (new-knext-is-a '({boost} {countable}) '({push} {countable})) (new-knext-is-a '({boost} {countable}) '({pushing} {countable})) (new-knext-is-a '({consolation} {countable}) '({succor} {countable})) (new-knext-is-a '({support} {countable}) '({assistance} {countable})) (new-knext-is-a '({attachment} {countable}) '({support} {countable})) (new-knext-is-a '({adherence} {uncountable}) '({support} {uncountable})) (new-knext-is-a '({backing} {uncountable}) '({blessing} {uncountable})) (new-knext-is-a '({backing} {countable}) '({approval} {countable})) (new-knext-is-a '({patronage} {uncountable}) '({blessing} {uncountable})) (new-knext-is-a '({patronage} {uncountable}) '({approval} {uncountable})) (new-knext-is-a '({auspices} {uncountable}) '({endorsement} {uncountable})) (new-knext-type {auspices} {uncountable}) (new-knext-type {indorsement} {uncountable}) (new-statement {auspices} {consists of} {indorsement}) (add-english-names (list {egis} {aegis} {aegis}) (list "egis" "aegis" "aegis")) (new-knext-is-a '({egis} {countable}) '({endorsement} {countable})) (add-english-names (list {egis} {aegis} {aegis}) (list "egis" "aegis" "aegis")) (new-knext-is-a '({egis} {countable}) '({indorsement} {countable})) (new-knext-is-a '({endorsement} {countable}) '({support} {countable})) (new-knext-is-a '({indorsement} {countable}) '({support} {countable})) (new-knext-is-a '({blessing} {uncountable}) '({support} {uncountable})) (new-knext-is-a '({approval} {countable}) '({support} {countable})) (new-knext-is-a '({support} {uncountable}) '({activity} {countable})) (new-knext-is-a '({sustentation} {countable}) '({support} {countable})) (new-knext-is-a '({sustainment} {uncountable}) '({support} {uncountable})) (new-knext-is-a '({maintenance} {countable}) '({support} {countable})) (new-knext-is-a '({representation} {uncountable}) '({cooperation} {uncountable})) (new-knext-is-a '({attack} {countable}) '({criticism} {uncountable})) (new-knext-is-a '({behavior} {uncountable}) '({activity} {countable})) (new-knext-type {doings} {uncountable}) (new-knext-type {activity} {uncountable}) (new-statement {doings} {consists of} {activity}) (new-knext-is-a '({behavior} {uncountable}) '({activity} {countable})) (add-english-names (list {behavior} {behaviour}) (list "behavior" "behaviour")) (new-knext-is-a '({discourtesy} {uncountable}) '({behavior} {uncountable})) (new-knext-is-a '({discourtesy} {uncountable}) '({doings} {uncountable})) (new-knext-is-a '({offense} {countable}) '({behavior} {uncountable})) (new-knext-type {offense} {countable}) (new-knext-type {doings} {countable}) (new-statement {doings} {consists of} {offense}) (new-knext-is-a '({derision} {uncountable}) '({discourtesy} {uncountable})) (new-knext-type {derision} {uncountable}) (new-knext-type {offense} {uncountable}) (new-statement {derision} {consists of} {offense}) (new-knext-is-a '({affront} {countable}) '({discourtesy} {countable})) (new-knext-is-a '({affront} {countable}) '({offense} {countable})) (new-knext-is-a '({presumption} {countable}) '({discourtesy} {countable})) (new-knext-is-a '({presumption} {countable}) '({offense} {countable})) (new-knext-is-a '({rebuff} {countable}) '({discourtesy} {countable})) (new-knext-is-a '({rebuff} {countable}) '({offense} {countable})) (new-knext-is-a '({cold shoulder} {countable}) '({rebuff} {countable})) (new-knext-is-a '({favor} {countable}) '({benignity} {countable})) (add-english-names (list {favor} {favour}) (list "favor" "favour")) (new-knext-is-a '({favor} {countable}) '({benignity} {countable})) (new-knext-is-a '({mercy} {countable}) '({succor} {countable})) (new-knext-is-a '({assemblage} {countable}) '({group action} {countable})) (new-knext-is-a '({gathering} {countable}) '({group action} {countable})) (new-knext-is-a '({coming together} {countable}) '({assemblage} {countable})) (new-knext-is-a '({coming together} {countable}) '({gathering} {countable})) (new-knext-is-a '({congress} {countable}) '({assemblage} {countable})) (new-knext-is-a '({congress} {countable}) '({gathering} {countable})) (new-knext-is-a '({congregation} {countable}) '({assemblage} {countable})) (new-knext-is-a '({congregation} {countable}) '({gathering} {countable})) (new-knext-is-a '({congregating} {countable}) '({assemblage} {countable})) (new-knext-is-a '({congregating} {countable}) '({gathering} {countable})) (new-knext-is-a '({concentration} {countable}) '({assemblage} {countable})) (new-knext-is-a '({concentration} {countable}) '({gathering} {countable})) (new-knext-is-a '({session} {countable}) '({coming together} {countable})) (new-knext-is-a '({session} {countable}) '({congress} {countable})) (new-knext-is-a '({visit} {countable}) '({coming together} {countable})) (new-knext-is-a '({visit} {countable}) '({congress} {countable})) (new-knext-is-a '({attendance} {countable}) '({group action} {countable})) (new-knext-is-a '({presence} {countable}) '({attendance} {countable})) (new-knext-is-a '({nonattendance} {countable}) '({group action} {countable})) (new-knext-is-a '({absence} {countable}) '({nonattendance} {countable})) (new-knext-is-a '({paying back} {countable}) '({group action} {countable})) (new-knext-type {retaliation} {uncountable}) (new-knext-type {paying back} {uncountable}) (new-statement {retaliation} {consists of} {paying back}) (new-knext-is-a '({war} {countable}) '({conflict} {countable})) (new-knext-is-a '({war} {countable}) '({struggle} {countable})) (new-knext-is-a '({warfare} {uncountable}) '({conflict} {uncountable})) (new-knext-type {warfare} {uncountable}) (new-knext-type {struggle} {uncountable}) (new-statement {warfare} {consists of} {struggle}) (new-knext-is-a '({participation} {countable}) '({group action} {countable})) (new-knext-type {involvement} {uncountable}) (new-knext-type {group action} {uncountable}) (new-statement {involvement} {consists of} {group action}) (new-knext-is-a '({commitment} {countable}) '({participation} {countable})) (new-knext-is-a '({commitment} {uncountable}) '({involvement} {uncountable})) (new-knext-is-a '({vindication} {countable}) '({clearing} {countable})) (new-knext-is-a '({rehabilitation} {countable}) '({vindication} {countable})) (new-knext-is-a '({job action} {countable}) '({direct action} {countable})) (new-knext-is-a '({passive resistance} {uncountable}) '({direct action} {uncountable})) (new-knext-is-a '({hunger strike} {countable}) '({fast} {countable})) (new-knext-is-a '({hunger strike} {countable}) '({passive resistance} {uncountable})) (new-knext-is-a '({strike} {countable}) '({job action} {countable})) (new-knext-is-a '({admission} {countable}) '({entry} {countable})) (new-knext-is-a '({admission} {countable}) '({incoming} {countable})) (new-knext-is-a '({hit} {countable}) '({murder} {countable})) (new-knext-is-a '({hit} {countable}) '({slaying} {countable})) (new-knext-is-a '({dismount} {countable}) '({discontinuance} {countable})) (new-knext-is-a '({humming} {uncountable}) '({singing} {uncountable})) (new-knext-is-a '({leadership} {uncountable}) '({activity} {countable})) (new-knext-is-a '({lead} {countable}) '({leadership} {countable})) (new-knext-is-a '({buzz} {uncountable}) '({activity} {countable})) (new-knext-is-a '({fun} {uncountable}) '({activity} {countable})) (new-knext-is-a '({withdrawal} {countable}) '({removal} {countable})) (new-knext-is-a '({spoil} {countable}) '({injury} {countable})) (new-knext-is-a '({spoiling} {uncountable}) '({injury} {uncountable})) (new-knext-is-a '({recruitment} {countable}) '({accomplishment} {countable})) (new-knext-type {enlisting} {uncountable}) (new-knext-type {accomplishment} {uncountable}) (new-statement {enlisting} {consists of} {accomplishment}) (new-knext-is-a '({smooth} {countable}) '({accomplishment} {countable})) (new-knext-is-a '({consultation} {uncountable}) '({action} {countable})) (new-knext-is-a '({emphasizing} {uncountable}) '({action} {countable})) (new-knext-is-a '({accentuation} {uncountable}) '({action} {countable})) (new-knext-is-a '({outlet} {countable}) '({activity} {countable})) (new-knext-is-a '({vent} {uncountable}) '({activity} {countable})) (new-knext-type {kingdom} {countable}) (new-knext-indv {animalia} {kingdom}) (new-knext-is-a '({work animal} {countable}) '({animal} {countable})) (new-knext-is-a '({beast of burden} {countable}) '({work animal} {countable})) (new-knext-is-a '({pack animal} {countable}) '({beast of burden} {countable})) (new-knext-is-a '({domestic animal} {countable}) '({animal} {countable})) (new-knext-is-a '({molter} {countable}) '({animal} {countable})) (new-knext-is-a '({pet} {countable}) '({animal} {countable})) (new-knext-is-a '({female} {countable}) '({animal} {countable})) (new-knext-is-a '({hen} {countable}) '({female} {countable})) (new-knext-is-a '({male} {countable}) '({animal} {countable})) (new-knext-type {young} {uncountable}) (new-knext-type {animal} {uncountable}) (new-statement {young} {consists of} {animal}) (new-knext-type {young mammal} {countable}) (new-knext-type {young} {countable}) (new-statement {young} {consists of} {young mammal}) (new-knext-is-a '({pup} {countable}) '({young mammal} {countable})) (new-knext-is-a '({herbivore} {countable}) '({animal} {countable})) (new-knext-is-a '({horn} {countable}) '({appendage} {countable})) (new-knext-is-a '({crest} {countable}) '({appendage} {countable})) (new-knext-is-a '({microorganism} {countable}) '({organism} {countable})) (new-knext-is-a '({crossbreed} {countable}) '({organism} {countable})) (new-knext-is-a '({virus} {countable}) '({microorganism} {countable})) (new-knext-is-a '({parasite} {countable}) '({organism} {countable})) (new-knext-is-a '({host} {countable}) '({organism} {countable})) (new-knext-type {kingdom} {countable}) (new-knext-indv {protoctista} {kingdom}) (new-knext-is-a '({protoctist} {countable}) '({microorganism} {countable})) (new-knext-type {phylum} {countable}) (new-knext-indv {protozoa} {phylum}) (new-knext-is-a '({protozoan} {countable}) '({protoctist} {countable})) (new-knext-type {algae} {uncountable}) (new-knext-type {protoctist} {uncountable}) (new-statement {algae} {consists of} {protoctist}) (new-knext-is-a '({conceptus} {countable}) '({animal} {countable})) (new-knext-type {phylum} {countable}) (new-knext-indv {chordata} {phylum}) (new-knext-is-a '({chordate} {countable}) '({animal} {countable})) (new-knext-type {phylum} {countable}) (new-knext-indv {vertebrata} {phylum}) (new-knext-is-a '({vertebrate} {countable}) '({chordate} {countable})) (new-knext-is-a '({aquatic vertebrate} {countable}) '({vertebrate} {countable})) (new-knext-type {class} {countable}) (new-knext-indv {aves} {class}) (new-knext-is-a '({bird} {countable}) '({vertebrate} {countable})) (new-knext-type {class} {countable}) (new-knext-indv {amphibia} {class}) (new-knext-is-a '({amphibian} {countable}) '({vertebrate} {countable})) (new-knext-is-a '({frog} {countable}) '({amphibian} {countable})) (new-knext-type {class} {countable}) (new-knext-indv {reptilia} {class}) (new-knext-is-a '({reptile} {countable}) '({vertebrate} {countable})) (new-knext-is-a '({constrictor} {countable}) '({snake} {countable})) (new-knext-is-a '({beak} {countable}) '({mouth} {countable})) (new-knext-type {phylum} {countable}) (new-knext-indv {arthropoda} {phylum}) (new-knext-is-a '({arthropod} {countable}) '({invertebrate} {countable})) (new-knext-type {class} {countable}) (new-knext-indv {arachnida} {class}) (new-knext-is-a '({arachnid} {countable}) '({arthropod} {countable})) (new-knext-is-a '({spider} {countable}) '({arachnid} {countable})) (new-knext-is-a '({gallinaceous bird} {countable}) '({bird} {countable})) (new-knext-is-a '({comb} {countable}) '({crest} {countable})) (new-knext-is-a '({hen} {countable}) '({chicken} {countable})) (new-knext-type {class} {countable}) (new-knext-indv {mammalia} {class}) (new-knext-is-a '({mammal} {countable}) '({vertebrate} {countable})) (new-knext-type {class} {countable}) (new-knext-indv {eutheria} {class}) (new-knext-is-a '({placental} {countable}) '({mammal} {countable})) (new-knext-type {livestock} {uncountable}) (new-knext-type {placental} {uncountable}) (new-statement {livestock} {consists of} {placental}) (new-knext-is-a '({farm animal} {countable}) '({placental} {countable})) (new-knext-is-a '({calf} {countable}) '({young mammal} {countable})) (new-knext-is-a '({hide} {countable}) '({body covering} {countable})) (new-knext-is-a '({feather} {countable}) '({body covering} {countable})) (new-knext-is-a '({plumage} {uncountable}) '({body covering} {countable})) (new-knext-is-a '({feather} {countable}) '({animal material} {uncountable})) (new-knext-is-a '({plumage} {uncountable}) '({animal material} {uncountable})) (new-knext-is-a '({invertebrate} {countable}) '({animal} {countable})) (new-knext-type {phylum} {countable}) (new-knext-indv {cnidaria} {phylum}) (new-knext-is-a '({coelenterate} {countable}) '({invertebrate} {countable})) (new-knext-is-a '({worm} {countable}) '({invertebrate} {countable})) (new-knext-is-a '({woodborer} {countable}) '({invertebrate} {countable})) (new-knext-type {phylum} {countable}) (new-knext-indv {mollusca} {phylum}) (new-knext-is-a '({mollusk} {countable}) '({invertebrate} {countable})) (new-knext-is-a '({byssus} {countable}) '({fiber} {countable})) (new-knext-type {class} {countable}) (new-knext-indv {crustacea} {class}) (new-knext-is-a '({crustacean} {countable}) '({arthropod} {countable})) (new-knext-is-a '({carnivore} {countable}) '({placental} {countable})) (new-knext-is-a '({canid} {countable}) '({carnivore} {countable})) (new-knext-is-a '({bitch} {countable}) '({canid} {countable})) (new-knext-is-a '({dog} {countable}) '({canid} {countable})) (new-knext-is-a '({dog} {countable}) '({domestic animal} {countable})) (new-knext-is-a '({pooch} {countable}) '({dog} {countable})) (new-knext-is-a '({wolf} {countable}) '({canid} {countable})) (new-knext-is-a '({fox} {countable}) '({canid} {countable})) (new-knext-is-a '({bear} {countable}) '({carnivore} {countable})) (new-knext-is-a '({bat} {countable}) '({placental} {countable})) (new-knext-is-a '({wing} {countable}) '({organ} {countable})) (new-knext-is-a '({predatory animal} {countable}) '({animal} {countable})) (new-knext-is-a '({prey} {countable}) '({animal} {countable})) (new-knext-is-a '({game} {countable}) '({animal} {countable})) (new-knext-is-a '({hoof} {countable}) '({animal foot} {countable})) (new-knext-is-a '({tooth} {countable}) '({anatomical structure} {countable})) (new-knext-is-a '({chela} {countable}) '({extremity} {countable})) (new-knext-is-a '({tail} {countable}) '({appendage} {countable})) (new-knext-is-a '({flag} {countable}) '({tail} {countable})) (new-knext-is-a '({insect} {countable}) '({arthropod} {countable})) (new-knext-is-a '({hymenopterous insect} {countable}) '({insect} {countable})) (new-knext-is-a '({bee} {countable}) '({hymenopterous insect} {countable})) (new-knext-is-a '({worker} {countable}) '({insect} {countable})) (new-knext-is-a '({soldier} {countable}) '({worker} {countable})) (new-knext-is-a '({ant} {countable}) '({hymenopterous insect} {countable})) (new-knext-is-a '({caterpillar} {countable}) '({larva} {countable})) (new-knext-is-a '({larva} {countable}) '({animal} {countable})) (new-knext-is-a '({grub} {countable}) '({larva} {countable})) (new-knext-is-a '({queen} {countable}) '({insect} {countable})) (new-knext-type {phylum} {countable}) (new-knext-indv {echinodermata} {phylum}) (new-knext-is-a '({echinoderm} {countable}) '({invertebrate} {countable})) (new-knext-type {class} {countable}) (new-knext-indv {echinoidea} {class}) (new-knext-is-a '({sea urchin} {countable}) '({echinoderm} {countable})) (new-knext-is-a '({invertebrate foot} {countable}) '({organ} {countable})) (new-knext-type {rabbit} {countable}) (new-knext-indv {oryctolagus cuniculus} {rabbit}) (new-knext-is-a '({wood rabbit} {countable}) '({rabbit} {countable})) (new-knext-is-a '({rodent} {countable}) '({placental} {countable})) (new-knext-is-a '({mouse} {countable}) '({rodent} {countable})) (new-knext-is-a '({rat} {countable}) '({rodent} {countable})) (new-knext-is-a '({ungulate} {countable}) '({placental} {countable})) (new-knext-is-a '({horse} {countable}) '({equine} {countable})) (new-knext-type {equine} {countable}) (new-knext-indv {equus caballus} {equine}) (new-knext-is-a '({foal} {countable}) '({young mammal} {countable})) (new-knext-is-a '({male horse} {countable}) '({horse} {countable})) (new-knext-is-a '({male horse} {countable}) '({male} {countable})) (new-knext-is-a '({stallion} {countable}) '({male horse} {countable})) (new-knext-is-a '({nag} {countable}) '({horse} {countable})) (new-knext-is-a '({pony} {countable}) '({horse} {countable})) (new-knext-is-a '({piglet} {countable}) '({young mammal} {countable})) (new-knext-is-a '({bovid} {countable}) '({ruminant} {countable})) (new-knext-type {bull} {countable}) (new-knext-type {cattle} {countable}) (new-statement {cattle} {consists of} {bull}) (new-knext-is-a '({bull} {countable}) '({kine} {countable})) (new-knext-type {cow} {countable}) (new-knext-type {cattle} {countable}) (new-statement {cattle} {consists of} {cow}) (new-knext-is-a '({cow} {countable}) '({kine} {countable})) (new-knext-type {sheep} {uncountable}) (new-knext-type {bovid} {uncountable}) (new-statement {sheep} {consists of} {bovid}) (new-knext-type {tup} {countable}) (new-knext-type {sheep} {countable}) (new-statement {sheep} {consists of} {tup}) (new-knext-is-a '({lamb} {countable}) '({young mammal} {countable})) (new-knext-is-a '({goat} {countable}) '({bovid} {countable})) (new-knext-is-a '({kid} {countable}) '({goat} {countable})) (new-knext-is-a '({deer} {countable}) '({ruminant} {countable})) (new-knext-is-a '({muzzle} {countable}) '({face} {countable})) (new-knext-is-a '({lumbus} {countable}) '({body part} {countable})) (new-knext-is-a '({stinger} {countable}) '({organ} {countable})) (new-knext-is-a '({fin} {countable}) '({extremity} {countable})) (new-knext-is-a '({nervure} {countable}) '({rib} {countable})) (new-knext-is-a '({primate} {countable}) '({placental} {countable})) (new-knext-is-a '({hominid} {countable}) '({primate} {countable})) (new-knext-is-a '({human being} {countable}) '({hominid} {countable})) (new-knext-is-a '({monkey} {countable}) '({primate} {countable})) (new-knext-type {division} {countable}) (new-knext-indv {pisces} {division}) (new-knext-is-a '({fish} {countable}) '({aquatic vertebrate} {countable})) (new-knext-is-a '({abbey} {countable}) '({monastery} {countable})) (new-knext-is-a '({academy} {countable}) '({establishment} {countable})) (new-knext-is-a '({accelerator} {countable}) '({treadle} {countable})) (new-knext-is-a '({access} {countable}) '({way} {countable})) (new-knext-is-a '({memory access} {countable}) '({operation} {countable})) (new-knext-is-a '({accessory} {countable}) '({constituent} {countable})) (new-knext-is-a '({adaptor} {countable}) '({device} {countable})) (new-knext-is-a '({addition} {countable}) '({constituent} {countable})) (new-knext-is-a '({admixture} {countable}) '({ingredient} {countable})) (new-knext-is-a '({adornment} {countable}) '({decoration} {countable})) (new-knext-is-a '({aircraft} {countable}) '({craft} {countable})) (new-knext-is-a '({aircraft carrier} {countable}) '({warship} {countable})) (new-knext-is-a '({airfield} {countable}) '({facility} {countable})) (new-knext-is-a '({airport} {countable}) '({airfield} {countable})) (new-knext-is-a '({aisle} {countable}) '({area} {countable})) (new-knext-is-a '({warning device} {countable}) '({device} {countable})) (new-knext-is-a '({alarm clock} {countable}) '({clock} {countable})) (new-knext-is-a '({album} {countable}) '({book} {countable})) (new-knext-is-a '({altar} {countable}) '({structure} {countable})) (new-knext-is-a '({ambulance} {countable}) '({car} {countable})) (new-knext-is-a '({ammunition} {uncountable}) '({weaponry} {uncountable})) (new-knext-is-a '({ammo} {uncountable}) '({weaponry} {uncountable})) (new-knext-is-a '({amphetamine} {countable}) '({drug of abuse} {countable})) (new-knext-is-a '({amphetamine} {countable}) '({stimulant drug} {countable})) (new-knext-is-a '({analgesic} {countable}) '({medicine} {uncountable})) (new-knext-is-a '({analgesic} {countable}) '({medication} {countable})) (new-knext-is-a '({analyzer} {countable}) '({instrument} {countable})) (new-knext-is-a '({annex} {countable}) '({addition} {countable})) (new-knext-is-a '({anteroom} {countable}) '({room} {countable})) (new-knext-is-a '({anvil} {countable}) '({block} {countable})) (new-knext-type {apartment} {countable}) (new-knext-type {housing} {countable}) (new-statement {housing} {consists of} {apartment}) (new-knext-is-a '({apartment} {countable}) '({lodging} {uncountable})) (new-knext-is-a '({apartment building} {countable}) '({building} {countable})) (new-knext-type {apparatus} {countable}) (new-knext-type {equipment} {countable}) (new-statement {equipment} {consists of} {apparatus}) (new-knext-is-a '({apparel} {uncountable}) '({clothing} {uncountable})) (new-knext-type {apparel} {uncountable}) (new-knext-type {article of clothing} {uncountable}) (new-statement {apparel} {consists of} {article of clothing}) (new-knext-is-a '({clothes} {uncountable}) '({clothing} {uncountable})) (new-knext-type {clothes} {uncountable}) (new-knext-type {article of clothing} {uncountable}) (new-statement {clothes} {consists of} {article of clothing}) (new-knext-is-a '({appendage} {countable}) '({portion} {countable})) (new-knext-is-a '({appliance} {countable}) '({device} {countable})) (new-knext-is-a '({applicator} {countable}) '({device} {countable})) (new-knext-is-a '({apse} {countable}) '({niche} {countable})) (new-knext-is-a '({aqueduct} {countable}) '({conduit} {countable})) (new-knext-is-a '({arcade} {countable}) '({structure} {countable})) (new-knext-is-a '({arch} {countable}) '({structure} {countable})) (new-knext-is-a '({archway} {countable}) '({entrance} {countable})) (new-knext-is-a '({archive} {countable}) '({depository} {countable})) (new-knext-is-a '({area} {countable}) '({structure} {countable})) (new-knext-is-a '({armament} {uncountable}) '({weaponry} {uncountable})) (new-knext-is-a '({armchair} {countable}) '({chair} {countable})) (new-knext-is-a '({arrow} {countable}) '({projectile} {countable})) (new-knext-type {art} {uncountable}) (new-knext-type {creation} {uncountable}) (new-statement {art} {consists of} {creation}) (new-knext-is-a '({aspergill} {countable}) '({device} {countable})) (new-knext-type {aspirin} {uncountable}) (new-knext-type {analgesic} {uncountable}) (new-statement {aspirin} {consists of} {analgesic}) (new-knext-type {analgesic} {countable}) (new-knext-indv {bayer} {analgesic}) (new-knext-type {aspirin} {uncountable}) (new-knext-type {salicylate} {uncountable}) (new-statement {aspirin} {consists of} {salicylate}) (new-knext-type {salicylate} {countable}) (new-knext-indv {bayer} {salicylate}) (new-knext-is-a '({attachment} {countable}) '({addition} {countable})) (new-knext-is-a '({attachment} {countable}) '({connector} {countable})) (new-knext-is-a '({attire} {uncountable}) '({clothing} {uncountable})) (new-knext-type {attire} {uncountable}) (new-knext-type {article of clothing} {uncountable}) (new-statement {attire} {consists of} {article of clothing}) (new-knext-is-a '({garb} {uncountable}) '({clothing} {uncountable})) (new-knext-type {garb} {uncountable}) (new-knext-type {article of clothing} {uncountable}) (new-statement {garb} {consists of} {article of clothing}) (new-knext-is-a '({robot} {countable}) '({mechanism} {countable})) (new-knext-is-a '({automobile horn} {countable}) '({warning device} {countable})) (new-knext-is-a '({axis of rotation} {countable}) '({mechanism} {countable})) (new-knext-is-a '({baby buggy} {countable}) '({wheeled vehicle} {countable})) (new-knext-is-a '({bag} {countable}) '({container} {countable})) (new-knext-type {traveling bag} {countable}) (new-knext-type {baggage} {countable}) (new-statement {baggage} {consists of} {traveling bag}) (new-knext-is-a '({handbag} {countable}) '({container} {countable})) (new-knext-is-a '({balcony} {countable}) '({structure} {countable})) (new-knext-is-a '({ball} {countable}) '({plaything} {countable})) (new-knext-is-a '({ball field} {countable}) '({athletic field} {countable})) (new-knext-is-a '({balloon} {countable}) '({plaything} {countable})) (new-knext-is-a '({band} {countable}) '({strip} {countable})) (new-knext-is-a '({stripe} {countable}) '({adornment} {countable})) (new-knext-is-a '({ring} {countable}) '({strip} {countable})) (new-knext-is-a '({bandage} {countable}) '({medical dressing} {countable})) (new-knext-is-a '({bank building} {countable}) '({depository} {countable})) (new-knext-is-a '({banner} {countable}) '({flag} {countable})) (new-knext-is-a '({bar} {countable}) '({implement} {countable})) (new-knext-is-a '({bar} {countable}) '({obstruction} {countable})) (new-knext-is-a '({barge} {countable}) '({boat} {countable})) (new-knext-is-a '({barrel} {countable}) '({vessel} {countable})) (new-knext-is-a '({barrel} {countable}) '({tube} {countable})) (new-knext-is-a '({barrier} {countable}) '({obstruction} {countable})) (new-knext-is-a '({barroom} {countable}) '({room} {countable})) (new-knext-is-a '({base} {countable}) '({military installation} {countable})) (add-english-names (list {story} {storey} {story} {storey}) (list "story" "storey" "story" "storey")) (new-knext-is-a '({basket} {countable}) '({container} {countable})) (new-knext-is-a '({bathroom} {countable}) '({room} {countable})) (new-knext-is-a '({bathtub} {countable}) '({vessel} {countable})) (new-knext-is-a '({electric battery} {countable}) '({electrical device} {countable})) (new-knext-is-a '({beach wagon} {countable}) '({car} {countable})) (new-knext-is-a '({lighthouse} {countable}) '({tower} {countable})) (new-knext-is-a '({beam} {countable}) '({piece} {countable})) (new-knext-is-a '({beater} {countable}) '({implement} {countable})) (new-knext-is-a '({bed} {countable}) '({plot of land} {countable})) (new-knext-is-a '({bedroom} {countable}) '({room} {countable})) (new-knext-is-a '({beeper} {countable}) '({electronic device} {countable})) (new-knext-is-a '({bench} {countable}) '({seat} {countable})) (new-knext-is-a '({bend} {countable}) '({segment} {countable})) (new-knext-is-a '({bender} {countable}) '({tool} {countable})) (new-knext-is-a '({bevel} {countable}) '({edge} {countable})) (new-knext-is-a '({bicycle} {countable}) '({wheeled vehicle} {countable})) (new-knext-is-a '({bin} {countable}) '({container} {countable})) (new-knext-is-a '({binder} {countable}) '({harvester} {countable})) (new-knext-is-a '({bindery} {countable}) '({workshop} {countable})) (new-knext-is-a '({book binding} {countable}) '({protective covering} {countable})) (new-knext-is-a '({book binding} {countable}) '({protection} {uncountable})) (new-knext-is-a '({binding} {countable}) '({stitchery} {uncountable})) (new-knext-is-a '({blade} {countable}) '({cutting implement} {countable})) (new-knext-is-a '({blender} {countable}) '({mixer} {countable})) (new-knext-is-a '({screen} {countable}) '({protective covering} {countable})) (new-knext-is-a '({screen} {countable}) '({protection} {uncountable})) (new-knext-is-a '({block} {countable}) '({artifact} {countable})) (new-knext-type {block} {countable}) (new-knext-type {housing} {countable}) (new-statement {housing} {consists of} {block}) (new-knext-is-a '({block} {countable}) '({lodging} {uncountable})) (new-knext-is-a '({blockade} {countable}) '({obstruction} {countable})) (new-knext-is-a '({blockage} {countable}) '({obstruction} {countable})) (new-knext-is-a '({board} {countable}) '({flat solid} {countable})) (new-knext-is-a '({gameboard} {countable}) '({surface} {countable})) (new-knext-is-a '({boat} {countable}) '({vessel} {countable})) (new-knext-is-a '({boiler} {countable}) '({vessel} {countable})) (new-knext-is-a '({bolt} {countable}) '({screw} {countable})) (new-knext-is-a '({bomb} {countable}) '({explosive device} {countable})) (new-knext-type {bomb} {countable}) (new-knext-type {weaponry} {countable}) (new-statement {weaponry} {consists of} {bomb}) (new-knext-is-a '({bomber} {countable}) '({airplane} {countable})) (new-knext-is-a '({book} {countable}) '({product} {countable})) (new-knext-type {boot} {countable}) (new-knext-type {footgear} {countable}) (new-statement {footgear} {consists of} {boot}) (new-knext-is-a '({border} {countable}) '({edge} {countable})) (new-knext-is-a '({bore bit} {countable}) '({drill} {countable})) (new-knext-is-a '({bosom} {countable}) '({cloth covering} {countable})) (new-knext-is-a '({bottle} {countable}) '({vessel} {countable})) (new-knext-is-a '({bow} {countable}) '({weapon} {countable})) (new-knext-is-a '({bow} {countable}) '({decoration} {countable})) (new-knext-is-a '({bowl} {countable}) '({vessel} {countable})) (new-knext-is-a '({pipe bowl} {countable}) '({container} {countable})) (new-knext-is-a '({box} {countable}) '({container} {countable})) (new-knext-is-a '({box} {countable}) '({area} {countable})) (new-knext-is-a '({brake} {countable}) '({constraint} {countable})) (new-knext-is-a '({brewery} {countable}) '({plant} {countable})) (new-knext-is-a '({brick} {countable}) '({building material} {uncountable})) (new-knext-is-a '({bridge} {countable}) '({structure} {countable})) (new-knext-is-a '({brim} {countable}) '({edge} {countable})) (new-knext-is-a '({broadcaster} {countable}) '({mechanical device} {countable})) (new-knext-type {bronze} {uncountable}) (new-knext-type {sculpture} {uncountable}) (new-statement {bronze} {consists of} {sculpture}) (new-knext-is-a '({brush} {countable}) '({implement} {countable})) (new-knext-is-a '({bucket} {countable}) '({vessel} {countable})) (new-knext-is-a '({building} {countable}) '({structure} {countable})) (new-knext-is-a '({building complex} {countable}) '({structure} {countable})) (new-knext-is-a '({bullet} {countable}) '({projectile} {countable})) (new-knext-is-a '({bumper} {countable}) '({mechanical device} {countable})) (new-knext-is-a '({sheaf} {countable}) '({parcel} {countable})) (new-knext-is-a '({bungalow} {countable}) '({house} {countable})) (new-knext-is-a '({burner} {countable}) '({apparatus} {countable})) (new-knext-is-a '({burthen} {countable}) '({load} {countable})) (new-knext-type {bus} {countable}) (new-knext-type {public transport} {countable}) (new-statement {public transport} {consists of} {bus}) (new-knext-is-a '({jalopy} {countable}) '({car} {countable})) (new-knext-is-a '({jalopy} {countable}) '({dysphemism} {countable})) (new-knext-is-a '({button} {countable}) '({fastening} {countable})) (new-knext-is-a '({taxi} {countable}) '({car} {countable})) (new-knext-is-a '({cabriolet} {countable}) '({carriage} {countable})) (new-knext-is-a '({cabin} {countable}) '({house} {countable})) (new-knext-type {cabinet} {countable}) (new-knext-type {furniture} {countable}) (new-statement {furniture} {consists of} {cabinet}) (new-knext-is-a '({cabinet} {countable}) '({piece of furniture} {countable})) (new-knext-is-a '({cable} {countable}) '({rope} {countable})) (new-knext-is-a '({cafe} {countable}) '({restaurant} {countable})) (new-knext-is-a '({cage} {countable}) '({enclosure} {countable})) (new-knext-is-a '({calculating machine} {countable}) '({machine} {countable})) (new-knext-type {camouflage} {uncountable}) (new-knext-type {cover} {uncountable}) (new-statement {camouflage} {consists of} {cover}) (new-knext-type {camp} {countable}) (new-knext-type {housing} {countable}) (new-statement {housing} {consists of} {camp}) (new-knext-is-a '({camp} {countable}) '({lodging} {uncountable})) (new-knext-is-a '({summer camp} {countable}) '({site} {countable})) (new-knext-is-a '({refugee camp} {countable}) '({shelter} {countable})) (new-knext-is-a '({camping bus} {countable}) '({recreational vehicle} {countable})) (new-knext-is-a '({can} {countable}) '({container} {countable})) (new-knext-is-a '({cannister} {countable}) '({container} {countable})) (new-knext-is-a '({cannery} {countable}) '({factory} {countable})) (new-knext-is-a '({canoe} {countable}) '({small boat} {countable})) (new-knext-is-a '({canvas} {uncountable}) '({fabric} {uncountable})) (new-knext-is-a '({canvas} {uncountable}) '({textile} {countable})) (new-knext-is-a '({canvass} {countable}) '({fabric} {uncountable})) (new-knext-is-a '({canvass} {countable}) '({textile} {countable})) (new-knext-is-a '({cap} {countable}) '({headdress} {countable})) (new-knext-is-a '({cap} {countable}) '({cover} {countable})) (new-knext-is-a '({cap} {countable}) '({protective covering} {countable})) (new-knext-is-a '({cap} {countable}) '({protection} {uncountable})) (new-knext-is-a '({chapiter} {countable}) '({top} {countable})) (new-knext-is-a '({car} {countable}) '({motor vehicle} {countable})) (new-knext-is-a '({railcar} {countable}) '({wheeled vehicle} {countable})) (new-knext-is-a '({card} {countable}) '({paper} {uncountable})) (new-knext-is-a '({cargo} {uncountable}) '({merchandise} {uncountable})) (new-knext-is-a '({cargo} {uncountable}) '({product} {uncountable})) (new-knext-type {shipment} {countable}) (new-knext-type {merchandise} {countable}) (new-statement {merchandise} {consists of} {shipment}) (new-knext-is-a '({shipment} {countable}) '({product} {uncountable})) (new-knext-is-a '({cargo area} {countable}) '({enclosure} {countable})) (new-knext-is-a '({carpet beater} {countable}) '({beater} {countable})) (new-knext-is-a '({cartridge ejector} {countable}) '({mechanism} {countable})) (new-knext-is-a '({display case} {countable}) '({container} {countable})) (new-knext-is-a '({cassette} {countable}) '({container} {countable})) (new-knext-is-a '({casting} {countable}) '({copy} {countable})) (new-knext-is-a '({plaster cast} {countable}) '({bandage} {countable})) (new-knext-is-a '({catch} {countable}) '({fastening} {countable})) (new-knext-is-a '({cathedral} {countable}) '({church building} {countable})) (new-knext-is-a '({cautery} {countable}) '({instrument} {countable})) (new-knext-is-a '({jail cell} {countable}) '({room} {countable})) (new-knext-is-a '({cubicle} {countable}) '({room} {countable})) (new-knext-is-a '({center} {countable}) '({building} {countable})) (new-knext-is-a '({central} {countable}) '({workplace} {countable})) (new-knext-is-a '({chair} {countable}) '({seat} {countable})) (new-knext-is-a '({chamber} {countable}) '({enclosure} {countable})) (new-knext-is-a '({chandelier} {countable}) '({lighting fixture} {countable})) (new-knext-type {change} {countable}) (new-knext-type {clothing} {countable}) (new-statement {clothing} {consists of} {change}) (new-knext-is-a '({change} {countable}) '({article of clothing} {countable})) (new-knext-is-a '({change} {countable}) '({thing} {countable})) (new-knext-is-a '({burster} {countable}) '({explosive} {countable})) (new-knext-is-a '({good luck charm} {countable}) '({object} {countable})) (new-knext-is-a '({chart} {countable}) '({map} {countable})) (new-knext-is-a '({checkerboard} {countable}) '({gameboard} {countable})) (new-knext-type {chest of drawers} {countable}) (new-knext-type {furniture} {countable}) (new-statement {furniture} {consists of} {chest of drawers}) (new-knext-is-a '({chest of drawers} {countable}) '({piece of furniture} {countable})) (new-knext-is-a '({church building} {countable}) '({place of worship} {countable})) (new-knext-is-a '({slideway} {countable}) '({gutter} {countable})) (add-english-names (list {cigaret} {cigarette} {cigarette}) (list "cigaret" "cigarette" "cigarette")) (new-knext-is-a '({movie theater} {countable}) '({theater} {countable})) (new-knext-is-a '({classroom} {countable}) '({room} {countable})) (new-knext-is-a '({cleansing agent} {countable}) '({formulation} {countable})) (new-knext-is-a '({cloak} {countable}) '({covering} {countable})) (new-knext-is-a '({clock} {countable}) '({timepiece} {countable})) (new-knext-type {clog} {countable}) (new-knext-type {footgear} {countable}) (new-statement {footgear} {consists of} {clog}) (new-knext-is-a '({cloth covering} {countable}) '({covering} {countable})) (new-knext-is-a '({clothing} {uncountable}) '({consumer goods} {uncountable})) (new-knext-type {article of clothing} {countable}) (new-knext-type {consumer goods} {countable}) (new-statement {consumer goods} {consists of} {article of clothing}) (new-knext-type {clothing} {uncountable}) (new-knext-type {covering} {uncountable}) (new-statement {clothing} {consists of} {covering}) (new-knext-is-a '({article of clothing} {countable}) '({covering} {countable})) (new-knext-is-a '({club} {countable}) '({stick} {countable})) (new-knext-is-a '({clubhouse} {countable}) '({building} {countable})) (new-knext-is-a '({coat} {countable}) '({overgarment} {countable})) (new-knext-is-a '({coating} {countable}) '({covering} {countable})) (new-knext-is-a '({coffee cup} {countable}) '({cup} {countable})) (new-knext-is-a '({coffeepot} {countable}) '({pot} {countable})) (new-knext-is-a '({coffin} {countable}) '({box} {countable})) (new-knext-is-a '({collar} {countable}) '({band} {countable})) (new-knext-is-a '({collar} {countable}) '({band} {countable})) (new-knext-is-a '({college} {countable}) '({building complex} {countable})) (new-knext-is-a '({colliery} {countable}) '({workplace} {countable})) (new-knext-is-a '({comb} {countable}) '({device} {countable})) (new-knext-is-a '({commodity} {countable}) '({artifact} {countable})) (new-knext-is-a '({communication system} {countable}) '({facility} {countable})) (new-knext-type {communication equipment} {uncountable}) (new-knext-type {facility} {uncountable}) (new-statement {communication equipment} {consists of} {facility}) (new-knext-is-a '({compact car} {countable}) '({car} {countable})) (new-knext-is-a '({compartment} {countable}) '({space} {countable})) (new-knext-is-a '({constituent} {countable}) '({portion} {countable})) (new-knext-is-a '({composition} {countable}) '({creation} {countable})) (new-knext-is-a '({compressor} {countable}) '({mechanical device} {countable})) (new-knext-is-a '({computer} {countable}) '({machine} {countable})) (new-knext-is-a '({conduit} {countable}) '({passage} {countable})) (new-knext-type {consumer goods} {uncountable}) (new-knext-type {commodity} {uncountable}) (new-statement {consumer goods} {consists of} {commodity}) (new-knext-is-a '({controller} {countable}) '({mechanism} {countable})) (new-knext-is-a '({controlled substance} {countable}) '({drug} {countable})) (new-knext-is-a '({converter} {countable}) '({device} {countable})) (new-knext-is-a '({cooling system} {countable}) '({mechanism} {countable})) (new-knext-type {cooling system} {countable}) (new-knext-type {equipment} {countable}) (new-statement {equipment} {consists of} {cooling system}) (new-knext-is-a '({copy} {countable}) '({representation} {countable})) (new-knext-is-a '({corduroy} {uncountable}) '({fabric} {uncountable})) (new-knext-is-a '({corduroy} {uncountable}) '({textile} {countable})) (new-knext-is-a '({quoin} {countable}) '({structure} {countable})) (new-knext-is-a '({nook} {countable}) '({area} {countable})) (new-knext-is-a '({corrective} {countable}) '({device} {countable})) (new-knext-is-a '({cosmetic} {countable}) '({toiletry} {countable})) (new-knext-type {costume} {countable}) (new-knext-type {attire} {countable}) (new-statement {attire} {consists of} {costume}) (new-knext-is-a '({costume} {countable}) '({garb} {uncountable})) (new-knext-is-a '({cotton} {uncountable}) '({fabric} {uncountable})) (new-knext-is-a '({cotton} {uncountable}) '({textile} {countable})) (new-knext-is-a '({counter} {countable}) '({table} {countable})) (new-knext-is-a '({tabulator} {countable}) '({calculating machine} {countable})) (new-knext-is-a '({counterweight} {countable}) '({weight} {countable})) (new-knext-is-a '({course} {countable}) '({facility} {countable})) (new-knext-is-a '({row} {countable}) '({layer} {countable})) (new-knext-is-a '({courtyard} {countable}) '({area} {countable})) (new-knext-is-a '({covering} {countable}) '({artifact} {countable})) (new-knext-is-a '({craft} {countable}) '({vehicle} {countable})) (new-knext-is-a '({cramp iron} {countable}) '({strip} {countable})) (new-knext-type {ointment} {uncountable}) (new-knext-type {toiletry} {uncountable}) (new-statement {ointment} {consists of} {toiletry}) (new-knext-is-a '({emollient} {countable}) '({toiletry} {countable})) (new-knext-is-a '({creation} {countable}) '({artifact} {countable})) (new-knext-is-a '({crepe} {countable}) '({fabric} {uncountable})) (new-knext-is-a '({crepe} {countable}) '({textile} {countable})) (new-knext-is-a '({crape} {uncountable}) '({fabric} {uncountable})) (new-knext-is-a '({crape} {uncountable}) '({textile} {countable})) (new-knext-is-a '({crop} {countable}) '({handle} {countable})) (new-knext-is-a '({cross} {countable}) '({structure} {countable})) (new-knext-is-a '({crosswalk} {countable}) '({path} {countable})) (new-knext-type {crystal} {countable}) (new-knext-type {glassware} {countable}) (new-statement {glassware} {consists of} {crystal}) (new-knext-is-a '({crystal} {countable}) '({glasswork} {uncountable})) (new-knext-is-a '({square block} {countable}) '({block} {countable})) (new-knext-is-a '({cup} {countable}) '({container} {countable})) (new-knext-is-a '({cupboard} {countable}) '({storage space} {uncountable})) (new-knext-is-a '({curler} {countable}) '({mechanical device} {countable})) (new-knext-is-a '({curtain} {countable}) '({screen} {countable})) (new-knext-is-a '({cushion} {countable}) '({padding} {uncountable})) (new-knext-is-a '({cutlery} {uncountable}) '({tableware} {uncountable})) (new-knext-type {eating utensil} {countable}) (new-knext-type {tableware} {countable}) (new-statement {tableware} {consists of} {eating utensil}) (new-knext-type {cutlery} {uncountable}) (new-knext-type {cutting implement} {uncountable}) (new-statement {cutlery} {consists of} {cutting implement}) (new-knext-is-a '({cutting tool} {countable}) '({cutting implement} {countable})) (new-knext-is-a '({cutting implement} {countable}) '({tool} {countable})) (new-knext-is-a '({dairy} {countable}) '({farm} {countable})) (new-knext-is-a '({daybook} {countable}) '({journal} {countable})) (new-knext-is-a '({deck} {countable}) '({platform} {countable})) (new-knext-is-a '({decoration} {countable}) '({artifact} {countable})) (new-knext-is-a '({defensive structure} {countable}) '({structure} {countable})) (new-knext-is-a '({deflector} {countable}) '({device} {countable})) (new-knext-is-a '({limning} {countable}) '({drawing} {countable})) (new-knext-is-a '({depository} {countable}) '({facility} {countable})) (new-knext-is-a '({pattern} {countable}) '({decoration} {countable})) (new-knext-is-a '({desk} {countable}) '({table} {countable})) (new-knext-is-a '({destroyer} {countable}) '({warship} {countable})) (new-knext-is-a '({detector} {countable}) '({device} {countable})) (new-knext-is-a '({device} {countable}) '({emblem} {countable})) (new-knext-is-a '({diagram} {countable}) '({drawing} {countable})) (new-knext-is-a '({die} {countable}) '({square block} {countable})) (new-knext-type {dice} {uncountable}) (new-knext-type {square block} {uncountable}) (new-statement {dice} {consists of} {square block}) (new-knext-is-a '({lodgings} {uncountable}) '({living quarters} {uncountable})) (new-knext-type {pad} {countable}) (new-knext-type {living quarters} {countable}) (new-statement {living quarters} {consists of} {pad}) (new-knext-type {disguise} {countable}) (new-knext-type {attire} {countable}) (new-statement {attire} {consists of} {disguise}) (new-knext-is-a '({disguise} {countable}) '({garb} {uncountable})) (new-knext-is-a '({dish} {countable}) '({container} {countable})) (new-knext-is-a '({disinfectant} {countable}) '({agent} {countable})) (new-knext-is-a '({disk} {countable}) '({plate} {countable})) (new-knext-is-a '({dispenser} {countable}) '({container} {countable})) (new-knext-is-a '({electrical distributor} {countable}) '({electrical device} {countable})) (new-knext-is-a '({document} {countable}) '({representation} {countable})) (new-knext-is-a '({doll} {countable}) '({plaything} {countable})) (new-knext-is-a '({dome} {countable}) '({roof} {countable})) (new-knext-is-a '({doorbell} {countable}) '({push button} {countable})) (new-knext-type {dormitory} {countable}) (new-knext-type {living quarters} {countable}) (new-statement {living quarters} {consists of} {dormitory}) (new-knext-is-a '({dormitory} {countable}) '({building} {countable})) (new-knext-is-a '({dose} {countable}) '({medicine} {uncountable})) (new-knext-is-a '({dose} {countable}) '({medication} {countable})) (new-knext-is-a '({drawer} {countable}) '({storage space} {uncountable})) (new-knext-is-a '({drawer} {countable}) '({container} {countable})) (new-knext-is-a '({drawing} {countable}) '({representation} {countable})) (new-knext-is-a '({dredge} {countable}) '({power shovel} {countable})) (new-knext-is-a '({medical dressing} {countable}) '({cloth covering} {countable})) (new-knext-is-a '({drill} {countable}) '({tool} {countable})) (new-knext-is-a '({parkway} {countable}) '({road} {countable})) (new-knext-is-a '({driveway} {countable}) '({road} {countable})) (new-knext-is-a '({drug} {countable}) '({agent} {countable})) (new-knext-is-a '({drug of abuse} {countable}) '({drug} {countable})) (new-knext-is-a '({drugstore} {countable}) '({shop} {countable})) (new-knext-is-a '({drum} {countable}) '({percussion instrument} {countable})) (new-knext-type {drygoods} {uncountable}) (new-knext-type {commodity} {uncountable}) (new-statement {drygoods} {consists of} {commodity}) (new-knext-is-a '({duplicator} {countable}) '({apparatus} {countable})) (new-knext-is-a '({durables} {uncountable}) '({consumer goods} {uncountable})) (new-knext-type {dwelling} {countable}) (new-knext-type {housing} {countable}) (new-statement {housing} {consists of} {dwelling}) (new-knext-is-a '({dwelling} {countable}) '({lodging} {uncountable})) (new-knext-is-a '({edge} {countable}) '({side} {countable})) (new-knext-is-a '({edge} {countable}) '({demarcation} {countable})) (new-knext-is-a '({edge tool} {countable}) '({cutlery} {uncountable})) (new-knext-is-a '({edge tool} {countable}) '({cutting tool} {countable})) (new-knext-is-a '({effigy} {countable}) '({representation} {countable})) (new-knext-is-a '({electrical device} {countable}) '({device} {countable})) (new-knext-is-a '({electronic device} {countable}) '({device} {countable})) (new-knext-is-a '({electronic equipment} {uncountable}) '({equipment} {uncountable})) (new-knext-is-a '({elongation} {countable}) '({addition} {countable})) (new-knext-is-a '({emblem} {countable}) '({pattern} {countable})) (new-knext-is-a '({emplacement} {countable}) '({military installation} {countable})) (new-knext-is-a '({empty} {countable}) '({container} {countable})) (new-knext-is-a '({enclosure} {countable}) '({area} {countable})) (new-knext-is-a '({oddment} {countable}) '({piece of cloth} {countable})) (new-knext-is-a '({end product} {countable}) '({product} {countable})) (new-knext-type {output} {uncountable}) (new-knext-type {product} {uncountable}) (new-statement {output} {consists of} {product}) (new-knext-is-a '({engine} {countable}) '({motor} {countable})) (new-knext-is-a '({entrance} {countable}) '({access} {countable})) (new-knext-is-a '({envelope} {countable}) '({container} {countable})) (new-knext-is-a '({eraser} {countable}) '({implement} {countable})) (new-knext-is-a '({moving staircase} {countable}) '({stairway} {countable})) (new-knext-is-a '({establishment} {countable}) '({structure} {countable})) (new-knext-is-a '({excavation} {countable}) '({artifact} {countable})) (new-knext-is-a '({exchange} {countable}) '({workplace} {countable})) (new-knext-is-a '({explosive} {countable}) '({chemical} {countable})) (new-knext-is-a '({explosive device} {countable}) '({device} {countable})) (new-knext-is-a '({export} {countable}) '({commodity} {countable})) (new-knext-is-a '({telephone extension} {countable}) '({telephone} {countable})) (new-knext-is-a '({eye} {countable}) '({hole} {countable})) (new-knext-is-a '({eyepatch} {countable}) '({cloth covering} {countable})) (new-knext-type {fabric} {uncountable}) (new-knext-type {artifact} {uncountable}) (new-statement {fabric} {consists of} {artifact}) (new-knext-is-a '({textile} {countable}) '({artifact} {countable})) (new-knext-is-a '({facade} {countable}) '({front} {countable})) (new-knext-is-a '({face} {countable}) '({surface} {countable})) (new-knext-is-a '({facility} {countable}) '({artifact} {countable})) (new-knext-type {cladding} {uncountable}) (new-knext-type {protective covering} {uncountable}) (new-statement {cladding} {consists of} {protective covering}) (new-knext-is-a '({cladding} {uncountable}) '({protection} {uncountable})) (new-knext-is-a '({facing} {countable}) '({coating} {countable})) (new-knext-is-a '({facsimile machine} {countable}) '({duplicator} {countable})) (new-knext-is-a '({factory} {countable}) '({plant} {countable})) (new-knext-is-a '({fan} {countable}) '({device} {countable})) (new-knext-is-a '({farm} {countable}) '({workplace} {countable})) (new-knext-is-a '({fastening} {countable}) '({constraint} {countable})) (new-knext-is-a '({fence} {countable}) '({barrier} {countable})) (new-knext-is-a '({fender} {countable}) '({barrier} {countable})) (new-knext-is-a '({ferry} {countable}) '({boat} {countable})) (new-knext-is-a '({fighter aircraft} {countable}) '({airplane} {countable})) (new-knext-is-a '({figure} {countable}) '({simulation} {countable})) (new-knext-is-a '({file} {countable}) '({hand tool} {countable})) (new-knext-is-a '({filler} {uncountable}) '({tobacco} {uncountable})) (new-knext-is-a '({film} {countable}) '({object} {countable})) (new-knext-is-a '({filter} {countable}) '({device} {countable})) (new-knext-is-a '({fishing gear} {countable}) '({paraphernalia} {countable})) (new-knext-is-a '({fixture} {countable}) '({artifact} {countable})) (new-knext-is-a '({flag} {countable}) '({emblem} {countable})) (new-knext-is-a '({flight of stairs} {countable}) '({stairway} {countable})) (new-knext-is-a '({float} {countable}) '({artifact} {countable})) (new-knext-is-a '({floor} {countable}) '({horizontal surface} {countable})) (add-english-names (list {story} {storey} {story} {storey}) (list "story" "storey" "story" "storey")) (new-knext-is-a '({floor cover} {countable}) '({covering} {countable})) (new-knext-type {footgear} {uncountable}) (new-knext-type {covering} {uncountable}) (new-statement {footgear} {consists of} {covering}) (new-knext-is-a '({smithy} {countable}) '({workplace} {countable})) (new-knext-type {fork} {countable}) (new-knext-type {cutlery} {countable}) (new-statement {cutlery} {consists of} {fork}) (new-knext-is-a '({fork} {countable}) '({eating utensil} {countable})) (new-knext-is-a '({formation} {countable}) '({placement} {countable})) (new-knext-is-a '({understructure} {countable}) '({support} {countable})) (new-knext-is-a '({framework} {countable}) '({supporting structure} {countable})) (new-knext-is-a '({front} {countable}) '({side} {countable})) (new-knext-is-a '({frying pan} {countable}) '({pan} {countable})) (new-knext-is-a '({funnel} {countable}) '({utensil} {countable})) (new-knext-is-a '({art gallery} {countable}) '({room} {countable})) (new-knext-is-a '({garage} {countable}) '({outbuilding} {countable})) (new-knext-is-a '({garden} {countable}) '({plot of land} {countable})) (new-knext-is-a '({garden} {countable}) '({curtilage} {countable})) (new-knext-type {garment} {countable}) (new-knext-type {clothing} {countable}) (new-statement {clothing} {consists of} {garment}) (new-knext-is-a '({garment} {countable}) '({article of clothing} {countable})) (new-knext-type {paraphernalia} {countable}) (new-knext-type {equipment} {countable}) (new-statement {equipment} {consists of} {paraphernalia}) (new-knext-is-a '({gear mechanism} {countable}) '({mechanism} {countable})) (new-knext-is-a '({drinking glass} {countable}) '({container} {countable})) (new-knext-is-a '({glassware} {uncountable}) '({tableware} {uncountable})) (new-knext-is-a '({glasswork} {uncountable}) '({tableware} {uncountable})) (new-knext-is-a '({gold leaf} {uncountable}) '({gold foil} {uncountable})) (new-knext-is-a '({golf equipment} {uncountable}) '({sports equipment} {uncountable})) (new-knext-is-a '({governor} {countable}) '({controller} {countable})) (new-knext-is-a '({graphic art} {countable}) '({art} {uncountable})) (new-knext-type {graphics} {uncountable}) (new-knext-type {graphic art} {uncountable}) (new-statement {graphics} {consists of} {graphic art}) (new-knext-is-a '({tomb} {countable}) '({topographic point} {countable})) (new-knext-is-a '({greenhouse} {countable}) '({building} {countable})) (add-english-names (list {story} {storey} {story} {storey}) (list "story" "storey" "story" "storey")) (new-knext-is-a '({safety device} {countable}) '({device} {countable})) (new-knext-is-a '({guitar} {countable}) '({stringed instrument} {countable})) (new-knext-is-a '({gun} {countable}) '({weapon} {countable})) (new-knext-type {gymnastic apparatus} {countable}) (new-knext-type {sports equipment} {countable}) (new-statement {sports equipment} {consists of} {gymnastic apparatus}) (new-knext-is-a '({hall} {countable}) '({room} {countable})) (new-knext-is-a '({hammer} {countable}) '({hand tool} {countable})) (new-knext-is-a '({handbarrow} {countable}) '({framework} {countable})) (new-knext-is-a '({handcart} {countable}) '({wheeled vehicle} {countable})) (new-knext-is-a '({handkerchief} {countable}) '({piece of cloth} {countable})) (new-knext-is-a '({handle} {countable}) '({appendage} {countable})) (new-knext-is-a '({handlebar} {countable}) '({bar} {countable})) (new-knext-is-a '({handset} {countable}) '({telephone} {countable})) (new-knext-is-a '({hand tool} {countable}) '({tool} {countable})) (new-knext-is-a '({hanging} {countable}) '({decoration} {countable})) (new-knext-type {computer hardware} {uncountable}) (new-knext-type {constituent} {uncountable}) (new-statement {computer hardware} {consists of} {constituent}) (new-knext-is-a '({hat} {countable}) '({headdress} {countable})) (new-knext-is-a '({head covering} {countable}) '({garment} {countable})) (new-knext-type {headdress} {countable}) (new-knext-type {clothing} {countable}) (new-statement {clothing} {consists of} {headdress}) (new-knext-is-a '({headdress} {countable}) '({article of clothing} {countable})) (new-knext-is-a '({headquarters} {countable}) '({office} {countable})) (new-knext-is-a '({heater} {countable}) '({device} {countable})) (new-knext-is-a '({heating system} {countable}) '({utility} {countable})) (new-knext-type {heating} {uncountable}) (new-knext-type {utility} {uncountable}) (new-statement {heating} {consists of} {utility}) (new-knext-is-a '({hedge} {countable}) '({fence} {countable})) (new-knext-is-a '({helmet} {countable}) '({headdress} {countable})) (new-knext-is-a '({heroin} {uncountable}) '({opiate} {countable})) (new-knext-is-a '({hideaway} {countable}) '({area} {countable})) (new-knext-is-a '({hindrance} {countable}) '({obstruction} {countable})) (new-knext-type {interference} {uncountable}) (new-knext-type {obstruction} {uncountable}) (new-statement {interference} {consists of} {obstruction}) (new-knext-is-a '({keep} {countable}) '({jail cell} {countable})) (new-knext-is-a '({nursing home} {countable}) '({institution} {countable})) (new-knext-is-a '({hook} {countable}) '({implement} {countable})) (new-knext-is-a '({hoop} {countable}) '({band} {countable})) (new-knext-is-a '({horizontal surface} {countable}) '({surface} {countable})) (new-knext-is-a '({gymnastic horse} {countable}) '({gymnastic apparatus} {countable})) (new-knext-type {youth hostel} {countable}) (new-knext-type {housing} {countable}) (new-statement {housing} {consists of} {youth hostel}) (new-knext-is-a '({youth hostel} {countable}) '({lodging} {uncountable})) (new-knext-is-a '({hostel} {countable}) '({hotel} {countable})) (new-knext-is-a '({hotel} {countable}) '({building} {countable})) (new-knext-is-a '({house} {countable}) '({dwelling} {countable})) (new-knext-is-a '({house} {countable}) '({building} {countable})) (new-knext-type {housing} {uncountable}) (new-knext-type {structure} {uncountable}) (new-statement {housing} {consists of} {structure}) (new-knext-type {lodging} {uncountable}) (new-knext-type {structure} {uncountable}) (new-statement {lodging} {consists of} {structure}) (new-knext-is-a '({housing} {countable}) '({protective covering} {countable})) (new-knext-is-a '({housing} {countable}) '({protection} {uncountable})) (new-knext-is-a '({hovel} {countable}) '({shelter} {countable})) (new-knext-is-a '({ice yacht} {countable}) '({vessel} {countable})) (new-knext-is-a '({illustration} {countable}) '({representation} {countable})) (new-knext-is-a '({import} {countable}) '({commodity} {countable})) (add-english-names (list {improvization} {improvisation} {improvization} {improvisation}) (list "improvization" "improvisation" "improvization" "improvisation")) (new-knext-is-a '({infrastructure} {countable}) '({store} {countable})) (new-knext-is-a '({infrastructure} {countable}) '({structure} {countable})) (new-knext-is-a '({ingredient} {countable}) '({constituent} {countable})) (new-knext-is-a '({insert} {countable}) '({artifact} {countable})) (new-knext-is-a '({institution} {countable}) '({establishment} {countable})) (new-knext-is-a '({instrument} {countable}) '({device} {countable})) (new-knext-is-a '({interrupter} {countable}) '({device} {countable})) (new-knext-is-a '({crossroad} {countable}) '({junction} {countable})) (new-knext-is-a '({intoxicant} {countable}) '({drug} {countable})) (new-knext-is-a '({innovation} {countable}) '({creation} {countable})) (new-knext-is-a '({branding iron} {countable}) '({implement} {countable})) (new-knext-is-a '({ironing board} {countable}) '({board} {countable})) (new-knext-is-a '({island} {countable}) '({zone} {countable})) (new-knext-is-a '({jacket} {countable}) '({coat} {countable})) (new-knext-is-a '({jacket} {countable}) '({wrapping} {countable})) (new-knext-is-a '({jar} {countable}) '({vessel} {countable})) (new-knext-is-a '({jeans} {uncountable}) '({trousers} {uncountable})) (new-knext-is-a '({denim} {uncountable}) '({trousers} {uncountable})) (new-knext-is-a '({jeep} {countable}) '({car} {countable})) (new-knext-type {jewel} {countable}) (new-knext-type {jewelry} {countable}) (new-statement {jewelry} {consists of} {jewel}) (new-knext-type {jewelry} {uncountable}) (new-knext-type {adornment} {uncountable}) (new-statement {jewelry} {consists of} {adornment}) (new-knext-is-a '({job} {countable}) '({workplace} {countable})) (new-knext-is-a '({journal} {countable}) '({book} {countable})) (new-knext-is-a '({junction} {countable}) '({topographic point} {countable})) (new-knext-is-a '({kettle} {countable}) '({pot} {countable})) (new-knext-is-a '({key} {countable}) '({device} {countable})) (new-knext-is-a '({kit} {countable}) '({paraphernalia} {countable})) (new-knext-is-a '({kitchen} {countable}) '({room} {countable})) (new-knext-is-a '({kite} {countable}) '({plaything} {countable})) (new-knext-is-a '({knife} {countable}) '({edge tool} {countable})) (new-knext-is-a '({knot} {countable}) '({fastening} {countable})) (new-knext-is-a '({lab} {countable}) '({workplace} {countable})) (new-knext-is-a '({lace} {uncountable}) '({fabric} {uncountable})) (new-knext-is-a '({lace} {uncountable}) '({textile} {countable})) (new-knext-is-a '({ladle} {countable}) '({vessel} {countable})) (new-knext-is-a '({laminate} {countable}) '({flat solid} {countable})) (new-knext-type {lamp} {countable}) (new-knext-type {furniture} {countable}) (new-statement {furniture} {consists of} {lamp}) (new-knext-is-a '({lamp} {countable}) '({piece of furniture} {countable})) (new-knext-is-a '({lane} {countable}) '({way} {countable})) (new-knext-is-a '({larboard} {countable}) '({side} {countable})) (new-knext-is-a '({laser} {countable}) '({optical device} {countable})) (new-knext-is-a '({lariat} {countable}) '({rope} {countable})) (new-knext-is-a '({laundry} {countable}) '({workplace} {countable})) (new-knext-type {laundry} {uncountable}) (new-knext-type {garment} {uncountable}) (new-statement {laundry} {consists of} {garment}) (new-knext-type {washables} {uncountable}) (new-knext-type {garment} {uncountable}) (new-statement {washables} {consists of} {garment}) (new-knext-is-a '({layer} {countable}) '({artifact} {countable})) (new-knext-is-a '({leading} {countable}) '({strip} {countable})) (new-knext-is-a '({leash} {countable}) '({constraint} {countable})) (new-knext-is-a '({leg} {countable}) '({cloth covering} {countable})) (new-knext-is-a '({stinker} {countable}) '({artifact} {countable})) (new-knext-is-a '({library} {countable}) '({room} {countable})) (new-knext-is-a '({library} {countable}) '({building} {countable})) (new-knext-is-a '({lid} {countable}) '({cover} {countable})) (new-knext-is-a '({lift} {countable}) '({device} {countable})) (new-knext-is-a '({light source} {countable}) '({source of illumination} {countable})) (new-knext-is-a '({lighter} {countable}) '({device} {countable})) (new-knext-is-a '({lighting fixture} {countable}) '({fixture} {countable})) (new-knext-is-a '({rail line} {countable}) '({road} {countable})) (new-knext-is-a '({linkup} {countable}) '({fastening} {countable})) (new-knext-is-a '({living quarters} {uncountable}) '({housing} {uncountable})) (new-knext-is-a '({living quarters} {uncountable}) '({lodging} {uncountable})) (new-knext-is-a '({load} {countable}) '({weight} {countable})) (new-knext-is-a '({lock} {countable}) '({fastening} {countable})) (new-knext-is-a '({lock chamber} {countable}) '({enclosure} {countable})) (new-knext-is-a '({locker} {countable}) '({fastening} {countable})) (new-knext-is-a '({indian lodge} {countable}) '({dwelling} {countable})) (new-knext-is-a '({hunting lodge} {countable}) '({house} {countable})) (add-english-names (list {story} {storey} {story} {storey}) (list "story" "storey" "story" "storey")) (new-knext-is-a '({looking glass} {countable}) '({mirror} {countable})) (new-knext-is-a '({lotion} {uncountable}) '({curative} {uncountable})) (new-knext-type {lotion} {uncountable}) (new-knext-type {cure} {uncountable}) (new-statement {lotion} {consists of} {cure}) (new-knext-is-a '({waiting room} {countable}) '({room} {countable})) (new-knext-is-a '({machine} {countable}) '({device} {countable})) (new-knext-is-a '({simple machine} {countable}) '({mechanical device} {countable})) (new-knext-type {machinery} {uncountable}) (new-knext-type {machine} {uncountable}) (new-statement {machinery} {consists of} {machine}) (new-knext-is-a '({magazine} {countable}) '({product} {countable})) (new-knext-is-a '({magnet} {countable}) '({device} {countable})) (new-knext-type {mail} {uncountable}) (new-knext-type {transport} {uncountable}) (new-statement {mail} {consists of} {transport}) (new-knext-type {makeup} {uncountable}) (new-knext-type {cosmetic} {uncountable}) (new-statement {makeup} {consists of} {cosmetic}) (new-knext-is-a '({makeweight} {countable}) '({object} {countable})) (new-knext-is-a '({manor hall} {countable}) '({room} {countable})) (new-knext-is-a '({mansion house} {countable}) '({house} {countable})) (new-knext-is-a '({map} {countable}) '({representation} {countable})) (new-knext-is-a '({marble} {countable}) '({ball} {countable})) (new-knext-is-a '({mask} {countable}) '({covering} {countable})) (new-knext-is-a '({mask} {countable}) '({disguise} {countable})) (new-knext-is-a '({master copy} {countable}) '({creation} {countable})) (new-knext-is-a '({mat} {countable}) '({floor cover} {countable})) (new-knext-is-a '({match} {countable}) '({lighter} {countable})) (new-knext-type {material} {countable}) (new-knext-type {equipment} {countable}) (new-statement {equipment} {consists of} {material}) (new-knext-is-a '({materiel} {uncountable}) '({equipment} {uncountable})) (new-knext-is-a '({mattress} {countable}) '({pad} {countable})) (new-knext-is-a '({maze} {countable}) '({system} {countable})) (new-knext-is-a '({measuring instrument} {countable}) '({instrument} {countable})) (new-knext-is-a '({measuring stick} {countable}) '({measuring instrument} {countable})) (new-knext-is-a '({mechanical device} {countable}) '({mechanism} {countable})) (new-knext-is-a '({mechanism} {countable}) '({device} {countable})) (new-knext-type {medicine} {uncountable}) (new-knext-type {drug} {uncountable}) (new-statement {medicine} {consists of} {drug}) (new-knext-is-a '({medication} {countable}) '({drug} {countable})) (new-knext-is-a '({monument} {countable}) '({structure} {countable})) (new-knext-type {computer memory} {uncountable}) (new-knext-type {memory device} {uncountable}) (new-statement {computer memory} {consists of} {memory device}) (new-knext-is-a '({memory board} {countable}) '({memory device} {countable})) (new-knext-is-a '({computer memory} {uncountable}) '({computer hardware} {uncountable})) (new-knext-type {memory board} {countable}) (new-knext-type {computer hardware} {countable}) (new-statement {computer hardware} {consists of} {memory board}) (new-knext-is-a '({memory device} {countable}) '({device} {countable})) (new-knext-is-a '({mend} {countable}) '({stitchery} {uncountable})) (new-knext-is-a '({mental hospital} {countable}) '({hospital} {countable})) (new-knext-is-a '({mercantile establishment} {countable}) '({place of business} {countable})) (new-knext-type {merchandise} {uncountable}) (new-knext-type {commodity} {uncountable}) (new-statement {merchandise} {consists of} {commodity}) (new-knext-type {product} {uncountable}) (new-knext-type {commodity} {uncountable}) (new-statement {product} {consists of} {commodity}) (new-knext-is-a '({metro} {countable}) '({railway} {countable})) (new-knext-is-a '({military installation} {countable}) '({facility} {countable})) (new-knext-is-a '({military vehicle} {countable}) '({vehicle} {countable})) (new-knext-type {milling machinery} {countable}) (new-knext-type {machinery} {countable}) (new-statement {machinery} {consists of} {milling machinery}) (new-knext-is-a '({minaret} {countable}) '({tower} {countable})) (new-knext-is-a '({mine} {countable}) '({explosive device} {countable})) (new-knext-is-a '({mine} {countable}) '({excavation} {countable})) (new-knext-is-a '({minibike} {countable}) '({motorcycle} {countable})) (new-knext-is-a '({ministry} {countable}) '({building} {countable})) (new-knext-is-a '({mirror} {countable}) '({reflector} {countable})) (new-knext-is-a '({simulation} {countable}) '({representation} {countable})) (new-knext-is-a '({modification} {countable}) '({copy} {countable})) (new-knext-is-a '({module} {countable}) '({constituent} {countable})) (new-knext-is-a '({mohair} {uncountable}) '({fabric} {uncountable})) (new-knext-is-a '({mohair} {uncountable}) '({textile} {countable})) (new-knext-is-a '({mold} {countable}) '({container} {countable})) (new-knext-is-a '({modeling} {countable}) '({sculpture} {countable})) (new-knext-is-a '({moped} {countable}) '({minibike} {countable})) (new-knext-type {morphine} {uncountable}) (new-knext-type {analgesic} {uncountable}) (new-statement {morphine} {consists of} {analgesic}) (new-knext-is-a '({morphine} {uncountable}) '({opiate} {countable})) (new-knext-is-a '({mosaic} {countable}) '({art} {uncountable})) (new-knext-is-a '({mosque} {countable}) '({place of worship} {countable})) (new-knext-is-a '({motif} {countable}) '({pattern} {countable})) (new-knext-is-a '({motor} {countable}) '({machine} {countable})) (new-knext-is-a '({motorcycle} {countable}) '({motor vehicle} {countable})) (new-knext-is-a '({motor scooter} {countable}) '({wheeled vehicle} {countable})) (new-knext-is-a '({hill} {countable}) '({structure} {countable})) (new-knext-is-a '({computer mouse} {countable}) '({electronic device} {countable})) (new-knext-is-a '({museum} {countable}) '({depository} {countable})) (new-knext-is-a '({musical instrument} {countable}) '({device} {countable})) (new-knext-is-a '({nail} {countable}) '({fastening} {countable})) (new-knext-is-a '({narcotic} {countable}) '({drug} {countable})) (new-knext-is-a '({neckline} {countable}) '({neck opening} {countable})) (new-knext-is-a '({needle} {countable}) '({implement} {countable})) (new-knext-is-a '({needle} {countable}) '({pointer} {countable})) (new-knext-type {needlework} {uncountable}) (new-knext-type {creation} {uncountable}) (new-statement {needlework} {consists of} {creation}) (new-knext-is-a '({meshing} {uncountable}) '({fabric} {uncountable})) (new-knext-is-a '({meshing} {uncountable}) '({textile} {countable})) (new-knext-is-a '({meshwork} {countable}) '({fabric} {uncountable})) (new-knext-is-a '({meshwork} {countable}) '({textile} {countable})) (new-knext-is-a '({network} {countable}) '({communication system} {countable})) (new-knext-type {network} {countable}) (new-knext-type {communication equipment} {countable}) (new-statement {communication equipment} {consists of} {network}) (new-knext-is-a '({newspaper} {countable}) '({product} {countable})) (new-knext-is-a '({running noose} {countable}) '({loop} {countable})) (new-knext-is-a '({nuclear reactor} {countable}) '({apparatus} {countable})) (new-knext-is-a '({obstacle} {countable}) '({obstruction} {countable})) (new-knext-is-a '({obstruction} {countable}) '({structure} {countable})) (new-knext-is-a '({oeuvre} {countable}) '({end product} {countable})) (new-knext-is-a '({oeuvre} {countable}) '({output} {uncountable})) (new-knext-type {work} {uncountable}) (new-knext-type {end product} {uncountable}) (new-statement {work} {consists of} {end product}) (new-knext-is-a '({work} {uncountable}) '({output} {uncountable})) (new-knext-is-a '({office} {countable}) '({place of business} {countable})) (new-knext-is-a '({office building} {countable}) '({building} {countable})) (new-knext-is-a '({opener} {countable}) '({hand tool} {countable})) (new-knext-is-a '({opiate} {countable}) '({narcotic} {countable})) (new-knext-is-a '({opium} {uncountable}) '({controlled substance} {countable})) (new-knext-type {opium} {uncountable}) (new-knext-type {narcotic} {uncountable}) (new-statement {opium} {consists of} {narcotic}) (new-knext-is-a '({optical device} {countable}) '({device} {countable})) (new-knext-is-a '({orchestra} {countable}) '({seating} {uncountable})) (new-knext-type {orchestra} {countable}) (new-knext-type {seats} {countable}) (new-statement {seats} {consists of} {orchestra}) (new-knext-is-a '({orchestra} {countable}) '({seating area} {countable})) (new-knext-is-a '({pipe organ} {countable}) '({wind instrument} {countable})) (new-knext-is-a '({outbuilding} {countable}) '({building} {countable})) (new-knext-is-a '({outfield} {countable}) '({tract} {countable})) (new-knext-type {getup} {countable}) (new-knext-type {attire} {countable}) (new-statement {attire} {consists of} {getup}) (new-knext-is-a '({getup} {countable}) '({garb} {uncountable})) (new-knext-is-a '({overgarment} {countable}) '({garment} {countable})) (new-knext-is-a '({pack} {countable}) '({parcel} {countable})) (new-knext-is-a '({pack} {countable}) '({sheaf} {countable})) (new-knext-is-a '({parcel} {countable}) '({container} {countable})) (new-knext-is-a '({packet} {countable}) '({parcel} {countable})) (new-knext-is-a '({pad} {countable}) '({padding} {uncountable})) (new-knext-type {padding} {uncountable}) (new-knext-type {artifact} {uncountable}) (new-statement {padding} {consists of} {artifact}) (new-knext-type {paint} {uncountable}) (new-knext-type {coating} {uncountable}) (new-statement {paint} {consists of} {coating}) (new-knext-is-a '({paint} {uncountable}) '({coloring material} {uncountable})) (add-english-names (list {color} {colour}) (list "color" "colour")) (new-knext-is-a '({paint} {uncountable}) '({color} {countable})) (new-knext-is-a '({painting} {countable}) '({graphic art} {countable})) (new-knext-is-a '({palliative} {countable}) '({curative} {uncountable})) (new-knext-is-a '({palliative} {countable}) '({cure} {countable})) (new-knext-is-a '({panel} {countable}) '({flat solid} {countable})) (new-knext-is-a '({pant leg} {countable}) '({leg} {countable})) (new-knext-is-a '({park} {countable}) '({gear mechanism} {countable})) (new-knext-is-a '({portion} {countable}) '({object} {countable})) (new-knext-is-a '({partition} {countable}) '({structure} {countable})) (new-knext-is-a '({passage} {countable}) '({way} {countable})) (new-knext-is-a '({patch} {countable}) '({piece of cloth} {countable})) (new-knext-is-a '({path} {countable}) '({way} {countable})) (new-knext-is-a '({footpath} {countable}) '({path} {countable})) (new-knext-is-a '({patio} {countable}) '({area} {countable})) (new-knext-is-a '({pen} {countable}) '({enclosure} {countable})) (new-knext-is-a '({percussion instrument} {countable}) '({musical instrument} {countable})) (new-knext-is-a '({perforation} {countable}) '({hole} {countable})) (new-knext-is-a '({perfume} {countable}) '({toiletry} {countable})) (add-english-names (list {pharmacopeia} {pharmacopoeia} {pharmacopeia} {pharmacopoeia}) (list "pharmacopeia" "pharmacopoeia" "pharmacopeia" "pharmacopoeia")) (new-knext-is-a '({photograph} {countable}) '({representation} {countable})) (new-knext-is-a '({piano} {countable}) '({percussion instrument} {countable})) (new-knext-is-a '({piano} {countable}) '({stringed instrument} {countable})) (new-knext-is-a '({pick} {countable}) '({hand tool} {countable})) (new-knext-is-a '({picture} {countable}) '({representation} {countable})) (new-knext-is-a '({piece} {countable}) '({portion} {countable})) (new-knext-is-a '({piece of cloth} {countable}) '({fabric} {uncountable})) (new-knext-is-a '({piece of cloth} {countable}) '({textile} {countable})) (new-knext-is-a '({piece of cloth} {countable}) '({piece} {countable})) (new-knext-is-a '({pill} {countable}) '({dose} {countable})) (new-knext-is-a '({pillow} {countable}) '({cushion} {countable})) (new-knext-is-a '({pincushion} {countable}) '({cushion} {countable})) (new-knext-is-a '({pipe} {countable}) '({tube} {countable})) (new-knext-is-a '({pirate ship} {countable}) '({ship} {countable})) (new-knext-is-a '({pitfall} {countable}) '({trap} {countable})) (new-knext-is-a '({pixel} {countable}) '({constituent} {countable})) (new-knext-is-a '({place of business} {countable}) '({establishment} {countable})) (new-knext-is-a '({place of worship} {countable}) '({building} {countable})) (new-knext-is-a '({planner} {countable}) '({notebook computer} {countable})) (new-knext-is-a '({plant} {countable}) '({building complex} {countable})) (new-knext-is-a '({planter} {countable}) '({flowerpot} {countable})) (new-knext-is-a '({plate} {countable}) '({flat solid} {countable})) (new-knext-is-a '({photographic plate} {countable}) '({flat solid} {countable})) (new-knext-is-a '({plate glass} {countable}) '({flat solid} {countable})) (new-knext-is-a '({platform} {countable}) '({horizontal surface} {countable})) (new-knext-is-a '({playpen} {countable}) '({enclosure} {countable})) (new-knext-is-a '({plaything} {countable}) '({artifact} {countable})) (new-knext-is-a '({plumb line} {countable}) '({cord} {countable})) (new-knext-is-a '({pocket} {countable}) '({pouch} {countable})) (new-knext-is-a '({pole} {countable}) '({rod} {countable})) (new-knext-is-a '({porch} {countable}) '({structure} {countable})) (new-knext-is-a '({pot} {countable}) '({vessel} {countable})) (new-knext-is-a '({flowerpot} {countable}) '({container} {countable})) (new-knext-is-a '({pouch} {countable}) '({bag} {countable})) (new-knext-is-a '({dog pound} {countable}) '({enclosure} {countable})) (new-knext-is-a '({power shovel} {countable}) '({machine} {countable})) (new-knext-is-a '({prescription drug} {countable}) '({medicine} {uncountable})) (new-knext-is-a '({prescription drug} {countable}) '({medication} {countable})) (new-knext-is-a '({printing press} {countable}) '({machine} {countable})) (new-knext-is-a '({print} {countable}) '({graphic art} {countable})) (new-knext-is-a '({print} {countable}) '({fabric} {uncountable})) (new-knext-is-a '({print} {countable}) '({textile} {countable})) (new-knext-is-a '({printing machine} {countable}) '({machine} {countable})) (new-knext-is-a '({printer} {countable}) '({printing machine} {countable})) (new-knext-is-a '({goad} {countable}) '({device} {countable})) (new-knext-is-a '({product} {countable}) '({creation} {countable})) (new-knext-is-a '({projectile} {countable}) '({weapon} {countable})) (new-knext-is-a '({propeller} {countable}) '({mechanical device} {countable})) (new-knext-is-a '({protective covering} {countable}) '({covering} {countable})) (new-knext-type {protection} {uncountable}) (new-knext-type {covering} {uncountable}) (new-statement {protection} {consists of} {covering}) (new-knext-type {public transport} {uncountable}) (new-knext-type {transport} {uncountable}) (new-statement {public transport} {consists of} {transport}) (new-knext-is-a '({pump} {countable}) '({mechanical device} {countable})) (new-knext-is-a '({punch} {countable}) '({tool} {countable})) (new-knext-is-a '({push button} {countable}) '({switch} {countable})) (new-knext-is-a '({racetrack} {countable}) '({course} {countable})) (new-knext-is-a '({rack} {countable}) '({framework} {countable})) (new-knext-is-a '({raft} {countable}) '({float} {countable})) (new-knext-is-a '({rail} {countable}) '({railway} {countable})) (new-knext-is-a '({ranch} {countable}) '({farm} {countable})) (new-knext-is-a '({range} {countable}) '({facility} {countable})) (new-knext-is-a '({raster} {countable}) '({formation} {countable})) (new-knext-is-a '({back} {countable}) '({side} {countable})) (new-knext-is-a '({niche} {countable}) '({enclosure} {countable})) (new-knext-type {recorder} {countable}) (new-knext-type {equipment} {countable}) (new-statement {equipment} {consists of} {recorder}) (new-knext-is-a '({recording equipment} {uncountable}) '({equipment} {uncountable})) (new-knext-is-a '({recording} {countable}) '({memory device} {countable})) (new-knext-is-a '({reflection} {countable}) '({picture} {countable})) (new-knext-is-a '({reflector} {countable}) '({device} {countable})) (new-knext-is-a '({asylum} {countable}) '({shelter} {countable})) (new-knext-is-a '({curative} {uncountable}) '({medicine} {uncountable})) (new-knext-type {curative} {uncountable}) (new-knext-type {medication} {uncountable}) (new-statement {curative} {consists of} {medication}) (new-knext-is-a '({cure} {countable}) '({medicine} {uncountable})) (new-knext-is-a '({cure} {countable}) '({medication} {countable})) (new-knext-is-a '({replica} {countable}) '({copy} {countable})) (new-knext-is-a '({representation} {countable}) '({creation} {countable})) (new-knext-is-a '({artificial lake} {countable}) '({lake} {countable})) (new-knext-is-a '({resonator} {countable}) '({system} {countable})) (new-knext-is-a '({resonator} {countable}) '({chamber} {countable})) (new-knext-is-a '({restaurant} {countable}) '({building} {countable})) (new-knext-is-a '({constraint} {countable}) '({device} {countable})) (new-knext-type {restoration} {uncountable}) (new-knext-type {artifact} {uncountable}) (new-statement {restoration} {consists of} {artifact}) (new-knext-is-a '({right field} {countable}) '({tract} {countable})) (new-knext-type {ring} {countable}) (new-knext-type {jewelry} {countable}) (new-statement {jewelry} {consists of} {ring}) (new-knext-is-a '({ring} {countable}) '({platform} {countable})) (new-knext-is-a '({road} {countable}) '({way} {countable})) (new-knext-is-a '({rocket} {countable}) '({vehicle} {countable})) (new-knext-is-a '({rocking chair} {countable}) '({chair} {countable})) (new-knext-is-a '({rod} {countable}) '({implement} {countable})) (new-knext-is-a '({roller} {countable}) '({cylinder} {countable})) (new-knext-is-a '({roll of tobacco} {countable}) '({tobacco} {uncountable})) (new-knext-is-a '({roof} {countable}) '({protective covering} {countable})) (new-knext-is-a '({roof} {countable}) '({protection} {uncountable})) (new-knext-is-a '({room} {countable}) '({area} {countable})) (new-knext-is-a '({rouge} {uncountable}) '({makeup} {uncountable})) (new-knext-is-a '({rug} {countable}) '({floor cover} {countable})) (new-knext-is-a '({ruin} {countable}) '({building} {countable})) (new-knext-is-a '({ruler} {countable}) '({measuring stick} {countable})) (new-knext-is-a '({sail} {countable}) '({piece of cloth} {countable})) (new-knext-is-a '({sailing vessel} {countable}) '({vessel} {countable})) (new-knext-is-a '({beauty salon} {countable}) '({shop} {countable})) (new-knext-is-a '({sanctuary} {countable}) '({place} {countable})) (new-knext-is-a '({sandal} {countable}) '({shoe} {countable})) (new-knext-type {satellite} {countable}) (new-knext-type {equipment} {countable}) (new-statement {equipment} {consists of} {satellite}) (new-knext-is-a '({saucepan} {countable}) '({pan} {countable})) (new-knext-is-a '({saw} {countable}) '({hand tool} {countable})) (new-knext-is-a '({weighing machine} {countable}) '({measuring instrument} {countable})) (new-knext-is-a '({scarecrow} {countable}) '({effigy} {countable})) (new-knext-is-a '({scene} {countable}) '({graphic art} {countable})) (new-knext-is-a '({schoolhouse} {countable}) '({building} {countable})) (new-knext-is-a '({school system} {countable}) '({establishment} {countable})) (new-knext-is-a '({scooter} {countable}) '({wheeled vehicle} {countable})) (new-knext-is-a '({scrap} {countable}) '({piece} {countable})) (new-knext-is-a '({scraper} {countable}) '({hand tool} {countable})) (new-knext-is-a '({scratcher} {countable}) '({device} {countable})) (new-knext-is-a '({screen} {countable}) '({protective covering} {countable})) (new-knext-is-a '({screen} {countable}) '({protection} {uncountable})) (new-knext-is-a '({cover} {countable}) '({covering} {countable})) (new-knext-is-a '({screen} {countable}) '({surface} {countable})) (new-knext-is-a '({screw} {countable}) '({fastening} {countable})) (new-knext-type {seat} {countable}) (new-knext-type {furniture} {countable}) (new-statement {furniture} {consists of} {seat}) (new-knext-is-a '({seat} {countable}) '({piece of furniture} {countable})) (new-knext-is-a '({seating} {uncountable}) '({elbow room} {uncountable})) (new-knext-is-a '({seats} {uncountable}) '({elbow room} {uncountable})) (new-knext-is-a '({seating area} {countable}) '({elbow room} {uncountable})) (new-knext-is-a '({segment} {countable}) '({portion} {countable})) (new-knext-is-a '({security measure} {countable}) '({electrical device} {countable})) (new-knext-is-a '({sedan} {countable}) '({car} {countable})) (new-knext-is-a '({sedative} {countable}) '({medicine} {uncountable})) (new-knext-is-a '({sedative} {countable}) '({medication} {countable})) (new-knext-is-a '({sedative} {countable}) '({drug of abuse} {countable})) (new-knext-is-a '({seeder} {countable}) '({mechanical device} {countable})) (new-knext-is-a '({server} {countable}) '({utensil} {countable})) (new-knext-is-a '({stitchery} {uncountable}) '({needlework} {uncountable})) (new-knext-is-a '({shackle} {countable}) '({constraint} {countable})) (new-knext-is-a '({shaft} {countable}) '({rod} {countable})) (new-knext-is-a '({shaker} {countable}) '({container} {countable})) (new-knext-is-a '({shard} {countable}) '({piece} {countable})) (new-knext-is-a '({flat solid} {countable}) '({artifact} {countable})) (new-knext-type {shell} {countable}) (new-knext-type {ammunition} {countable}) (new-statement {ammunition} {consists of} {shell}) (new-knext-is-a '({shell} {countable}) '({ammo} {uncountable})) (new-knext-is-a '({shelter} {countable}) '({structure} {countable})) (new-knext-is-a '({shelter} {countable}) '({protective covering} {countable})) (new-knext-is-a '({shelter} {countable}) '({protection} {uncountable})) (new-knext-type {shelter} {countable}) (new-knext-type {housing} {countable}) (new-statement {housing} {consists of} {shelter}) (new-knext-is-a '({shelter} {countable}) '({lodging} {uncountable})) (new-knext-is-a '({shield} {countable}) '({protective covering} {countable})) (new-knext-is-a '({shield} {countable}) '({protection} {uncountable})) (new-knext-is-a '({ship} {countable}) '({vessel} {countable})) (new-knext-is-a '({shirt} {countable}) '({garment} {countable})) (new-knext-type {shoe} {countable}) (new-knext-type {footgear} {countable}) (new-statement {footgear} {consists of} {shoe}) (new-knext-is-a '({shooting brake} {countable}) '({beach wagon} {countable})) (new-knext-is-a '({shop} {countable}) '({mercantile establishment} {countable})) (new-knext-is-a '({short pants} {uncountable}) '({trousers} {uncountable})) (new-knext-is-a '({berm} {countable}) '({edge} {countable})) (new-knext-is-a '({shutter} {countable}) '({screen} {countable})) (new-knext-is-a '({shutter} {countable}) '({mechanical device} {countable})) (new-knext-is-a '({side} {countable}) '({surface} {countable})) (new-knext-is-a '({sidewalk} {countable}) '({walkway} {countable})) (new-knext-type {pavement} {uncountable}) (new-knext-type {walkway} {uncountable}) (new-statement {pavement} {consists of} {walkway}) (new-knext-is-a '({signboard} {countable}) '({structure} {countable})) (new-knext-is-a '({silk} {countable}) '({fabric} {uncountable})) (new-knext-is-a '({silk} {countable}) '({textile} {countable})) (new-knext-is-a '({sinker} {countable}) '({weight} {countable})) (new-knext-is-a '({skirt} {countable}) '({garment} {countable})) (new-knext-is-a '({ski tow} {countable}) '({transport} {countable})) (new-knext-is-a '({slab} {countable}) '({block} {countable})) (new-knext-is-a '({sleeve} {countable}) '({cloth covering} {countable})) (new-knext-is-a '({slide} {countable}) '({plate glass} {countable})) (new-knext-is-a '({playground slide} {countable}) '({plaything} {countable})) (new-knext-is-a '({slot} {countable}) '({slit} {countable})) (new-knext-is-a '({small boat} {countable}) '({boat} {countable})) (new-knext-is-a '({snapshot} {countable}) '({photograph} {countable})) (new-knext-is-a '({soap} {uncountable}) '({cleansing agent} {countable})) (new-knext-is-a '({sofa} {countable}) '({seat} {countable})) (new-knext-is-a '({sorter} {countable}) '({machine} {countable})) (new-knext-is-a '({source} {countable}) '({facility} {countable})) (new-knext-is-a '({source of illumination} {countable}) '({device} {countable})) (new-knext-is-a '({fizgig} {countable}) '({implement} {countable})) (new-knext-is-a '({spoon} {countable}) '({container} {countable})) (new-knext-type {spoon} {countable}) (new-knext-type {cutlery} {countable}) (new-statement {cutlery} {consists of} {spoon}) (new-knext-is-a '({spoon} {countable}) '({eating utensil} {countable})) (new-knext-is-a '({sports equipment} {uncountable}) '({equipment} {uncountable})) (new-knext-is-a '({spreader} {countable}) '({hand tool} {countable})) (new-knext-is-a '({squeaker} {countable}) '({artifact} {countable})) (new-knext-is-a '({stadium} {countable}) '({structure} {countable})) (new-knext-is-a '({stage} {countable}) '({platform} {countable})) (new-knext-is-a '({stage set} {countable}) '({representation} {countable})) (new-knext-is-a '({stairway} {countable}) '({way} {countable})) (new-knext-is-a '({starboard} {countable}) '({side} {countable})) (new-knext-is-a '({station} {countable}) '({facility} {countable})) (new-knext-is-a '({statue} {countable}) '({sculpture} {countable})) (new-knext-is-a '({steamship} {countable}) '({ship} {countable})) (new-knext-is-a '({stick} {countable}) '({implement} {countable})) (new-knext-is-a '({stimulant drug} {countable}) '({drug} {countable})) (new-knext-is-a '({stinker} {countable}) '({thing} {countable})) (new-knext-is-a '({stitch} {countable}) '({stitchery} {uncountable})) (new-knext-is-a '({stock} {uncountable}) '({merchandise} {uncountable})) (new-knext-is-a '({stock} {uncountable}) '({product} {uncountable})) (new-knext-is-a '({inventory} {uncountable}) '({merchandise} {uncountable})) (new-knext-is-a '({inventory} {uncountable}) '({product} {uncountable})) (new-knext-is-a '({stool} {countable}) '({seat} {countable})) (new-knext-type {storage space} {uncountable}) (new-knext-type {area} {uncountable}) (new-statement {storage space} {consists of} {area}) (new-knext-is-a '({storehouse} {countable}) '({depository} {countable})) (new-knext-type {storage} {uncountable}) (new-knext-type {depository} {uncountable}) (new-statement {storage} {consists of} {depository}) (new-knext-is-a '({shoulder strap} {countable}) '({band} {countable})) (new-knext-is-a '({drinking straw} {countable}) '({tube} {countable})) (new-knext-is-a '({strengthener} {countable}) '({device} {countable})) (new-knext-is-a '({stretcher} {countable}) '({mechanical device} {countable})) (new-knext-is-a '({striker} {countable}) '({mechanical device} {countable})) (new-knext-is-a '({string} {countable}) '({cord} {countable})) (new-knext-is-a '({string} {countable}) '({collection} {countable})) (new-knext-is-a '({stringed instrument} {countable}) '({musical instrument} {countable})) (new-knext-is-a '({strip} {countable}) '({artifact} {countable})) (new-knext-is-a '({structure} {countable}) '({artifact} {countable})) (new-knext-is-a '({studio} {countable}) '({workplace} {countable})) (new-knext-is-a '({study} {countable}) '({room} {countable})) (new-knext-type {stuff} {uncountable}) (new-knext-type {object} {uncountable}) (new-statement {stuff} {consists of} {object}) (new-knext-is-a '({suit} {countable}) '({garment} {countable})) (new-knext-is-a '({suite} {countable}) '({apartment} {countable})) (new-knext-type {rooms} {uncountable}) (new-knext-type {apartment} {uncountable}) (new-statement {rooms} {consists of} {apartment}) (new-knext-is-a '({total} {countable}) '({whole} {countable})) (new-knext-is-a '({supermarket} {countable}) '({grocery store} {countable})) (new-knext-is-a '({support} {countable}) '({supporting structure} {countable})) (new-knext-is-a '({supporting structure} {countable}) '({structure} {countable})) (new-knext-is-a '({surface} {countable}) '({artifact} {countable})) (new-knext-is-a '({swathe} {countable}) '({bandage} {countable})) (new-knext-is-a '({sweater} {countable}) '({garment} {countable})) (new-knext-is-a '({swing} {countable}) '({plaything} {countable})) (new-knext-is-a '({swing} {countable}) '({mechanical device} {countable})) (new-knext-is-a '({switch} {countable}) '({controller} {countable})) (new-knext-is-a '({sword} {countable}) '({weapon} {countable})) (new-knext-type {table} {countable}) (new-knext-type {furniture} {countable}) (new-statement {furniture} {consists of} {table}) (new-knext-is-a '({table} {countable}) '({piece of furniture} {countable})) (new-knext-type {table} {countable}) (new-knext-type {furniture} {countable}) (new-statement {furniture} {consists of} {table}) (new-knext-is-a '({table} {countable}) '({piece of furniture} {countable})) (new-knext-is-a '({tank} {countable}) '({military vehicle} {countable})) (new-knext-is-a '({tank} {countable}) '({tracked vehicle} {countable})) (new-knext-is-a '({tank} {countable}) '({armored vehicle} {countable})) (new-knext-is-a '({tape} {countable}) '({strip} {countable})) (new-knext-is-a '({tape recording} {countable}) '({recording} {countable})) (new-knext-is-a '({tapeline} {countable}) '({measuring instrument} {countable})) (new-knext-type {teaching aid} {countable}) (new-knext-type {equipment} {countable}) (new-statement {equipment} {consists of} {teaching aid}) (new-knext-is-a '({teacup} {countable}) '({cup} {countable})) (new-knext-is-a '({teddy} {countable}) '({plaything} {countable})) (new-knext-type {telephone} {countable}) (new-knext-type {electronic equipment} {countable}) (new-statement {electronic equipment} {consists of} {telephone}) (new-knext-is-a '({phone line} {countable}) '({connector} {countable})) (new-knext-is-a '({temple} {countable}) '({place of worship} {countable})) (new-knext-is-a '({temple} {countable}) '({building} {countable})) (new-knext-is-a '({tent} {countable}) '({shelter} {countable})) (new-knext-type {terminal} {countable}) (new-knext-type {electronic equipment} {countable}) (new-statement {electronic equipment} {consists of} {terminal}) (new-knext-is-a '({theater} {countable}) '({building} {countable})) (new-knext-is-a '({thing} {countable}) '({artifact} {countable})) (new-knext-is-a '({thread} {countable}) '({cord} {countable})) (new-knext-is-a '({tie} {countable}) '({cord} {countable})) (new-knext-is-a '({tier} {countable}) '({rope} {countable})) (new-knext-is-a '({tile} {countable}) '({slab} {countable})) (new-knext-is-a '({timepiece} {countable}) '({measuring instrument} {countable})) (new-knext-is-a '({timer} {countable}) '({timepiece} {countable})) (new-knext-is-a '({tire} {countable}) '({hoop} {countable})) (new-knext-is-a '({tobacco} {uncountable}) '({drug of abuse} {countable})) (new-knext-is-a '({toilet} {countable}) '({room} {countable})) (new-knext-is-a '({tool} {countable}) '({implement} {countable})) (new-knext-is-a '({cover} {countable}) '({covering} {countable})) (new-knext-is-a '({whirligig} {countable}) '({plaything} {countable})) (new-knext-is-a '({torch} {countable}) '({light source} {countable})) (new-knext-is-a '({towel} {countable}) '({piece of cloth} {countable})) (new-knext-is-a '({tower} {countable}) '({structure} {countable})) (new-knext-is-a '({tracer} {countable}) '({instrument} {countable})) (new-knext-is-a '({tracing} {countable}) '({drawing} {countable})) (new-knext-type {rails} {uncountable}) (new-knext-type {bar} {uncountable}) (new-statement {rails} {consists of} {bar}) (new-knext-is-a '({runway} {countable}) '({bar} {countable})) (new-knext-is-a '({data track} {countable}) '({route} {countable})) (new-knext-type {train} {countable}) (new-knext-type {public transport} {countable}) (new-statement {public transport} {consists of} {train}) (new-knext-is-a '({transmission system} {countable}) '({gear mechanism} {countable})) (new-knext-is-a '({transportation system} {countable}) '({facility} {countable})) (new-knext-type {transportation} {uncountable}) (new-knext-type {facility} {uncountable}) (new-statement {transportation} {consists of} {facility}) (new-knext-is-a '({transporter} {countable}) '({truck} {countable})) (new-knext-is-a '({trap} {countable}) '({device} {countable})) (new-knext-is-a '({trophy} {countable}) '({accolade} {countable})) (new-knext-type {trophy} {countable}) (new-knext-type {laurels} {countable}) (new-statement {laurels} {consists of} {trophy}) (new-knext-type {trousers} {uncountable}) (new-knext-type {garment} {uncountable}) (new-statement {trousers} {consists of} {garment}) (new-knext-is-a '({truck} {countable}) '({motor vehicle} {countable})) (new-knext-is-a '({tub} {countable}) '({vessel} {countable})) (new-knext-is-a '({tube} {countable}) '({conduit} {countable})) (new-knext-is-a '({type} {countable}) '({block} {countable})) (new-knext-is-a '({undergarment} {countable}) '({garment} {countable})) (new-knext-type {underwear} {uncountable}) (new-knext-type {undergarment} {uncountable}) (new-statement {underwear} {consists of} {undergarment}) (new-knext-type {underclothing} {uncountable}) (new-knext-type {undergarment} {uncountable}) (new-statement {underclothing} {consists of} {undergarment}) (new-knext-type {uniform} {countable}) (new-knext-type {clothing} {countable}) (new-statement {clothing} {consists of} {uniform}) (new-knext-is-a '({uniform} {countable}) '({article of clothing} {countable})) (new-knext-is-a '({university} {countable}) '({establishment} {countable})) (new-knext-is-a '({swage} {countable}) '({tool} {countable})) (new-knext-is-a '({utensil} {countable}) '({implement} {countable})) (new-knext-is-a '({utility} {countable}) '({facility} {countable})) (new-knext-is-a '({van} {countable}) '({truck} {countable})) (new-knext-is-a '({vault} {countable}) '({roof} {countable})) (new-knext-is-a '({vaulting horse} {countable}) '({gymnastic horse} {countable})) (new-knext-is-a '({vehicle} {countable}) '({transport} {countable})) (new-knext-is-a '({velvet} {uncountable}) '({fabric} {uncountable})) (new-knext-is-a '({velvet} {uncountable}) '({textile} {countable})) (new-knext-is-a '({ventilator} {countable}) '({device} {countable})) (new-knext-is-a '({vertical surface} {countable}) '({surface} {countable})) (new-knext-is-a '({vessel} {countable}) '({craft} {countable})) (new-knext-is-a '({vessel} {countable}) '({container} {countable})) (new-knext-is-a '({video recording} {countable}) '({recording} {countable})) (new-knext-is-a '({wagon} {countable}) '({wheeled vehicle} {countable})) (new-knext-is-a '({wagon wheel} {countable}) '({wheel} {countable})) (new-knext-is-a '({walkway} {countable}) '({path} {countable})) (new-knext-is-a '({wall} {countable}) '({partition} {countable})) (new-knext-is-a '({hospital ward} {countable}) '({block} {countable})) (new-knext-type {wardrobe} {countable}) (new-knext-type {furniture} {countable}) (new-statement {furniture} {consists of} {wardrobe}) (new-knext-is-a '({wardrobe} {countable}) '({piece of furniture} {countable})) (new-knext-is-a '({wardrobe} {countable}) '({collection} {countable})) (new-knext-is-a '({warhead} {countable}) '({explosive} {countable})) (new-knext-is-a '({warship} {countable}) '({ship} {countable})) (new-knext-is-a '({warship} {countable}) '({military vehicle} {countable})) (new-knext-is-a '({washbasin} {countable}) '({sink} {countable})) (new-knext-is-a '({watch} {countable}) '({timepiece} {countable})) (new-knext-is-a '({water faucet} {countable}) '({faucet} {countable})) (new-knext-is-a '({watering can} {countable}) '({container} {countable})) (new-knext-is-a '({water supply} {countable}) '({facility} {countable})) (new-knext-type {water} {uncountable}) (new-knext-type {facility} {uncountable}) (new-statement {water} {consists of} {facility}) (new-knext-is-a '({way} {countable}) '({artifact} {countable})) (new-knext-is-a '({weapon} {countable}) '({instrument} {countable})) (new-knext-is-a '({weight} {countable}) '({artifact} {countable})) (new-knext-type {free weight} {countable}) (new-knext-type {sports equipment} {countable}) (new-statement {sports equipment} {consists of} {free weight}) (new-knext-is-a '({well} {countable}) '({excavation} {countable})) (new-knext-is-a '({wheel} {countable}) '({simple machine} {countable})) (new-knext-is-a '({wheeled vehicle} {countable}) '({vehicle} {countable})) (new-knext-is-a '({wheeled vehicle} {countable}) '({container} {countable})) (new-knext-is-a '({whip} {countable}) '({instrument} {countable})) (new-knext-is-a '({wind instrument} {countable}) '({musical instrument} {countable})) (new-knext-is-a '({window} {countable}) '({framework} {countable})) (new-knext-is-a '({windshield wiper} {countable}) '({mechanical device} {countable})) (new-knext-is-a '({wool} {uncountable}) '({fabric} {uncountable})) (new-knext-is-a '({wool} {uncountable}) '({textile} {countable})) (add-english-names (list {woolen} {woollen} {woollen}) (list "woolen" "woollen" "woollen")) (add-english-names (list {woolen} {woollen} {woollen}) (list "woolen" "woollen" "woollen")) (new-knext-is-a '({piece of work} {countable}) '({product} {countable})) (new-knext-is-a '({workplace} {countable}) '({geographic point} {countable})) (new-knext-is-a '({workshop} {countable}) '({workplace} {countable})) (new-knext-is-a '({wrapping} {countable}) '({covering} {countable})) (new-knext-is-a '({yacht} {countable}) '({vessel} {countable})) (new-knext-is-a '({yard} {countable}) '({enclosure} {countable})) (new-knext-is-a '({curtilage} {countable}) '({field} {countable})) (new-knext-is-a '({railway yard} {countable}) '({tract} {countable})) (new-knext-is-a '({fruit} {countable}) '({product} {countable})) (new-knext-is-a '({identity} {countable}) '({personality} {countable})) (new-knext-is-a '({character} {uncountable}) '({trait} {countable})) (new-knext-is-a '({spirit} {uncountable}) '({character} {uncountable})) (new-knext-is-a '({nature} {uncountable}) '({trait} {countable})) (new-knext-is-a '({disposition} {countable}) '({nature} {uncountable})) (new-knext-is-a '({heart} {uncountable}) '({disposition} {countable})) (new-knext-is-a '({esprit de corps} {uncountable}) '({disposition} {countable})) (new-knext-is-a '({emotionality} {countable}) '({trait} {countable})) (new-knext-type {passion} {uncountable}) (new-knext-type {emotionality} {uncountable}) (new-statement {passion} {consists of} {emotionality}) (new-knext-is-a '({unemotionality} {uncountable}) '({trait} {countable})) (new-knext-is-a '({coldness} {uncountable}) '({unemotionality} {uncountable})) (new-knext-is-a '({activeness} {uncountable}) '({trait} {countable})) (new-knext-is-a '({inertia} {uncountable}) '({trait} {countable})) (new-knext-is-a '({communicativeness} {uncountable}) '({trait} {countable})) (new-knext-is-a '({uncommunicativeness} {uncountable}) '({trait} {countable})) (new-knext-is-a '({secrecy} {uncountable}) '({uncommunicativeness} {uncountable})) (new-knext-is-a '({reticence} {uncountable}) '({uncommunicativeness} {uncountable})) (new-knext-is-a '({attentiveness} {uncountable}) '({trait} {countable})) (new-knext-is-a '({carefulness} {uncountable}) '({attentiveness} {uncountable})) (new-knext-is-a '({neglectfulness} {uncountable}) '({carelessness} {uncountable})) (new-knext-is-a '({nonchalance} {uncountable}) '({carefreeness} {uncountable})) (new-knext-is-a '({appearance} {countable}) '({quality} {countable})) (new-knext-is-a '({look} {countable}) '({appearance} {countable})) (new-knext-is-a '({color} {countable}) '({appearance} {countable})) (new-knext-is-a '({impression} {countable}) '({appearance} {countable})) (new-knext-is-a '({cast} {countable}) '({appearance} {countable})) (new-knext-is-a '({face} {countable}) '({appearance} {countable})) (new-knext-is-a '({countenance} {countable}) '({appearance} {countable})) (new-knext-is-a '({expression} {countable}) '({countenance} {countable})) (new-knext-is-a '({beauty} {uncountable}) '({appearance} {countable})) (new-knext-is-a '({resplendence} {uncountable}) '({beauty} {uncountable})) (new-knext-is-a '({resplendency} {countable}) '({beauty} {uncountable})) (new-knext-is-a '({attractiveness} {uncountable}) '({quality} {countable})) (new-knext-is-a '({affinity} {countable}) '({attractiveness} {uncountable})) (new-knext-is-a '({ugliness} {uncountable}) '({appearance} {countable})) (new-knext-is-a '({blemish} {countable}) '({appearance} {countable})) (new-knext-is-a '({mole} {countable}) '({blemish} {countable})) (new-knext-is-a '({scar} {countable}) '({blemish} {countable})) (new-knext-is-a '({burn mark} {countable}) '({blemish} {countable})) (new-knext-is-a '({blot} {countable}) '({blemish} {countable})) (new-knext-is-a '({stain} {countable}) '({appearance} {countable})) (new-knext-is-a '({ease} {uncountable}) '({quality} {countable})) (new-knext-is-a '({difficultness} {uncountable}) '({quality} {countable})) (new-knext-is-a '({asperity} {uncountable}) '({difficultness} {uncountable})) (new-knext-is-a '({hardship} {countable}) '({difficultness} {uncountable})) (new-knext-is-a '({subtlety} {uncountable}) '({difficultness} {uncountable})) (new-knext-is-a '({compatibility} {uncountable}) '({characteristic} {countable})) (new-knext-is-a '({harmony} {countable}) '({compatibility} {uncountable})) (new-knext-is-a '({harmoniousness} {uncountable}) '({compatibility} {uncountable})) (new-knext-is-a '({accord} {uncountable}) '({compatibility} {uncountable})) (new-knext-is-a '({agreement} {uncountable}) '({compatibility} {uncountable})) (new-knext-is-a '({incompatibility} {uncountable}) '({characteristic} {countable})) (new-knext-is-a '({conflict} {countable}) '({incompatibility} {uncountable})) (new-knext-is-a '({publicity} {uncountable}) '({quality} {countable})) (new-knext-is-a '({nature} {countable}) '({quality} {countable})) (new-knext-is-a '({humanness} {uncountable}) '({quality} {countable})) (new-knext-is-a '({air} {countable}) '({quality} {countable})) (new-knext-is-a '({note} {countable}) '({air} {countable})) (new-knext-is-a '({caliber} {countable}) '({degree} {countable})) (new-knext-is-a '({characteristic} {countable}) '({quality} {countable})) (new-knext-is-a '({sameness} {uncountable}) '({quality} {countable})) (new-knext-is-a '({identity} {countable}) '({sameness} {uncountable})) (new-knext-is-a '({identicalness} {uncountable}) '({sameness} {uncountable})) (new-knext-is-a '({similarity} {uncountable}) '({sameness} {uncountable})) (add-english-names (list {analog} {analogue} {analogue}) (list "analog" "analogue" "analogue")) (new-knext-is-a '({difference} {uncountable}) '({quality} {countable})) (new-knext-is-a '({distinction} {countable}) '({difference} {uncountable})) (new-knext-is-a '({dissimilarity} {uncountable}) '({difference} {uncountable})) (new-knext-is-a '({sure thing} {countable}) '({quality} {countable})) (new-knext-is-a '({probability} {uncountable}) '({quality} {countable})) (new-knext-is-a '({uncertainty} {uncountable}) '({quality} {countable})) (new-knext-is-a '({doubt} {uncountable}) '({uncertainty} {uncountable})) (new-knext-is-a '({question} {countable}) '({uncertainty} {uncountable})) (new-knext-is-a '({physicalness} {uncountable}) '({quality} {countable})) (new-knext-is-a '({simplicity} {uncountable}) '({quality} {countable})) (new-knext-is-a '({regularity} {uncountable}) '({quality} {countable})) (new-knext-is-a '({irregularity} {countable}) '({quality} {countable})) (new-knext-is-a '({unregularity} {uncountable}) '({quality} {countable})) (new-knext-type {wavering} {uncountable}) (new-knext-type {irregularity} {uncountable}) (new-statement {wavering} {consists of} {irregularity}) (new-knext-is-a '({wavering} {uncountable}) '({unregularity} {uncountable})) (new-knext-type {haphazardness} {uncountable}) (new-knext-type {irregularity} {uncountable}) (new-statement {haphazardness} {consists of} {irregularity}) (new-knext-is-a '({haphazardness} {uncountable}) '({unregularity} {uncountable})) (new-knext-is-a '({lodgment} {countable}) '({fastness} {uncountable})) (new-knext-is-a '({credibility} {uncountable}) '({quality} {countable})) (new-knext-is-a '({originality} {uncountable}) '({quality} {countable})) (new-knext-is-a '({heterodoxy} {uncountable}) '({originality} {uncountable})) (new-knext-is-a '({unoriginality} {uncountable}) '({quality} {countable})) (new-knext-is-a '({orthodoxy} {uncountable}) '({unoriginality} {uncountable})) (new-knext-is-a '({conventionalism} {countable}) '({orthodoxy} {uncountable})) (new-knext-is-a '({popularity} {uncountable}) '({quality} {countable})) (new-knext-is-a '({unpopularity} {uncountable}) '({quality} {countable})) (new-knext-is-a '({legality} {uncountable}) '({lawfulness} {uncountable})) (new-knext-is-a '({validness} {uncountable}) '({legality} {uncountable})) (new-knext-is-a '({lawfulness} {uncountable}) '({quality} {countable})) (new-knext-is-a '({elegance} {uncountable}) '({quality} {countable})) (new-knext-is-a '({dash} {uncountable}) '({elegance} {uncountable})) (new-knext-is-a '({elan} {countable}) '({elegance} {uncountable})) (new-knext-is-a '({grandeur} {uncountable}) '({elegance} {uncountable})) (new-knext-is-a '({inelegance} {uncountable}) '({quality} {countable})) (new-knext-is-a '({righteousness} {uncountable}) '({morality} {uncountable})) (new-knext-is-a '({unrighteousness} {uncountable}) '({immorality} {uncountable})) (new-knext-is-a '({egocentrism} {uncountable}) '({trait} {countable})) (new-knext-is-a '({drive} {uncountable}) '({trait} {countable})) (new-knext-is-a '({ambitiousness} {uncountable}) '({drive} {uncountable})) (new-knext-is-a '({morality} {uncountable}) '({quality} {countable})) (new-knext-is-a '({virtue} {uncountable}) '({good} {uncountable})) (new-knext-type {hope} {uncountable}) (new-knext-type {theological virtue} {uncountable}) (new-statement {hope} {consists of} {theological virtue}) (new-knext-is-a '({good} {uncountable}) '({morality} {uncountable})) (new-knext-type {justice} {uncountable}) (new-knext-type {natural virtue} {uncountable}) (new-statement {justice} {consists of} {natural virtue}) (new-knext-is-a '({justice} {uncountable}) '({righteousness} {uncountable})) (new-knext-is-a '({right} {countable}) '({justice} {uncountable})) (new-knext-is-a '({rightfulness} {uncountable}) '({justice} {uncountable})) (new-knext-is-a '({immorality} {uncountable}) '({quality} {countable})) (new-knext-is-a '({unjustness} {uncountable}) '({unrighteousness} {uncountable})) (new-knext-is-a '({wrong} {countable}) '({unjustness} {uncountable})) (new-knext-is-a '({wrongfulness} {uncountable}) '({unjustness} {uncountable})) (new-knext-is-a '({courage} {uncountable}) '({spirit} {uncountable})) (new-knext-is-a '({resoluteness} {uncountable}) '({trait} {countable})) (new-knext-type {assiduity} {uncountable}) (new-knext-type {diligence} {uncountable}) (new-statement {assiduity} {consists of} {diligence}) (new-knext-is-a '({assiduity} {uncountable}) '({industriousness} {uncountable})) (new-knext-is-a '({intentness} {uncountable}) '({assiduity} {uncountable})) (new-knext-is-a '({engrossment} {countable}) '({assiduity} {uncountable})) (new-knext-is-a '({irresoluteness} {uncountable}) '({trait} {countable})) (new-knext-is-a '({honor} {uncountable}) '({righteousness} {uncountable})) (new-knext-is-a '({patriotism} {uncountable}) '({loyalty} {uncountable})) (new-knext-is-a '({discipline} {uncountable}) '({trait} {countable})) (new-knext-is-a '({restraint} {countable}) '({discipline} {uncountable})) (new-knext-is-a '({indiscipline} {uncountable}) '({trait} {countable})) (new-knext-is-a '({pride} {uncountable}) '({trait} {countable})) (new-knext-is-a '({humility} {uncountable}) '({trait} {countable})) (new-knext-is-a '({wisdom} {uncountable}) '({trait} {countable})) (new-knext-is-a '({discretion} {uncountable}) '({wisdom} {uncountable})) (new-knext-is-a '({folly} {uncountable}) '({trait} {countable})) (new-knext-is-a '({fatuity} {countable}) '({folly} {uncountable})) (new-knext-is-a '({fatuousness} {uncountable}) '({folly} {uncountable})) (new-knext-is-a '({sound judgment} {countable}) '({trait} {countable})) (new-knext-is-a '({perspicacity} {uncountable}) '({trait} {countable})) (new-knext-is-a '({trustingness} {uncountable}) '({trait} {countable})) (new-knext-is-a '({credulity} {uncountable}) '({trustingness} {uncountable})) (new-knext-is-a '({demeanor} {uncountable}) '({trait} {countable})) (new-knext-is-a '({manners} {uncountable}) '({demeanor} {uncountable})) (new-knext-is-a '({composure} {uncountable}) '({disposition} {countable})) (new-knext-is-a '({discomposure} {uncountable}) '({disposition} {countable})) (new-knext-is-a '({tractability} {uncountable}) '({trait} {countable})) (new-knext-is-a '({obedience} {uncountable}) '({tractability} {uncountable})) (new-knext-is-a '({intractability} {uncountable}) '({trait} {countable})) (new-knext-is-a '({defiance} {uncountable}) '({intractability} {uncountable})) (new-knext-is-a '({personal manner} {countable}) '({demeanor} {uncountable})) (new-knext-is-a '({comportment} {countable}) '({personal manner} {countable})) (new-knext-is-a '({isotropy} {uncountable}) '({property} {countable})) (new-knext-is-a '({age} {uncountable}) '({property} {countable})) (new-knext-is-a '({manner} {countable}) '({property} {countable})) (new-knext-is-a '({fit} {countable}) '({manner} {countable})) (new-knext-is-a '({life style} {countable}) '({manner} {countable})) (new-knext-is-a '({structure} {countable}) '({physical composition} {countable})) (new-knext-is-a '({structure} {countable}) '({makeup} {uncountable})) (new-knext-is-a '({physical composition} {countable}) '({property} {countable})) (new-knext-is-a '({makeup} {uncountable}) '({property} {countable})) (new-knext-type {hunger} {uncountable}) (new-knext-type {desire} {uncountable}) (new-statement {hunger} {consists of} {desire}) (new-knext-is-a '({visual property} {uncountable}) '({property} {countable})) (new-knext-is-a '({lightness} {uncountable}) '({visual property} {uncountable})) (new-knext-is-a '({polish} {uncountable}) '({radiancy} {uncountable})) (new-knext-is-a '({color} {countable}) '({visual property} {uncountable})) (add-english-names (list {coloring} {colouring}) (list "coloring" "colouring")) (new-knext-is-a '({colorlessness} {uncountable}) '({visual property} {uncountable})) (new-knext-is-a '({tint} {countable}) '({color} {countable})) (add-english-names (list {coloring} {colouring}) (list "coloring" "colouring")) (new-knext-is-a '({crimson} {uncountable}) '({red} {uncountable})) (new-knext-is-a '({dark blue} {uncountable}) '({blue} {uncountable})) (new-knext-is-a '({olfactory property} {countable}) '({property} {countable})) (new-knext-is-a '({odor} {uncountable}) '({property} {countable})) (new-knext-is-a '({bouquet} {countable}) '({olfactory property} {countable})) (new-knext-is-a '({bouquet} {countable}) '({odor} {uncountable})) (new-knext-is-a '({fragrancy} {uncountable}) '({olfactory property} {countable})) (new-knext-is-a '({fragrancy} {uncountable}) '({odor} {uncountable})) (new-knext-is-a '({sound} {uncountable}) '({sound property} {uncountable})) (new-knext-is-a '({ring} {countable}) '({sound} {uncountable})) (new-knext-is-a '({voice} {countable}) '({sound} {uncountable})) (new-knext-is-a '({silence} {uncountable}) '({sound property} {uncountable})) (new-knext-is-a '({sound property} {uncountable}) '({property} {countable})) (new-knext-is-a '({pitch} {countable}) '({sound property} {uncountable})) (new-knext-is-a '({loudness} {uncountable}) '({sound property} {uncountable})) (new-knext-is-a '({intensity} {countable}) '({sound property} {uncountable})) (new-knext-is-a '({bodily property} {uncountable}) '({property} {countable})) (new-knext-is-a '({fatness} {countable}) '({bodily property} {uncountable})) (new-knext-is-a '({posture} {countable}) '({bodily property} {uncountable})) (new-knext-is-a '({manner of walking} {countable}) '({posture} {countable})) (new-knext-is-a '({physiological property} {uncountable}) '({bodily property} {uncountable})) (new-knext-is-a '({gender} {countable}) '({physiological property} {uncountable})) (new-knext-is-a '({sexuality} {uncountable}) '({physiological property} {uncountable})) (new-knext-is-a '({physical property} {uncountable}) '({property} {countable})) (new-knext-is-a '({temperature} {countable}) '({fundamental quantity} {countable})) (new-knext-is-a '({temperature} {countable}) '({physical property} {uncountable})) (new-knext-is-a '({boiling point} {countable}) '({temperature} {countable})) (new-knext-is-a '({low temperature} {countable}) '({temperature} {countable})) (new-knext-is-a '({frigidity} {uncountable}) '({temperature} {countable})) (new-knext-is-a '({chill} {countable}) '({low temperature} {countable})) (new-knext-is-a '({chill} {countable}) '({frigidity} {uncountable})) (new-knext-is-a '({iciness} {uncountable}) '({low temperature} {countable})) (new-knext-is-a '({iciness} {uncountable}) '({frigidity} {uncountable})) (new-knext-is-a '({cool} {uncountable}) '({low temperature} {countable})) (new-knext-is-a '({cool} {uncountable}) '({frigidity} {uncountable})) (new-knext-is-a '({hotness} {uncountable}) '({temperature} {countable})) (new-knext-is-a '({high temperature} {countable}) '({temperature} {countable})) (new-knext-is-a '({luminosity} {uncountable}) '({physical property} {uncountable})) (new-knext-is-a '({brightness level} {countable}) '({physical property} {uncountable})) (new-knext-is-a '({illuminance} {uncountable}) '({luminosity} {uncountable})) (new-knext-is-a '({illuminance} {uncountable}) '({brightness level} {countable})) (new-knext-is-a '({mass} {countable}) '({fundamental quantity} {countable})) (new-knext-is-a '({mass} {countable}) '({physical property} {uncountable})) (new-knext-is-a '({weight} {uncountable}) '({physical property} {uncountable})) (new-knext-is-a '({momentum} {uncountable}) '({physical property} {uncountable})) (new-knext-is-a '({strength} {uncountable}) '({property} {countable})) (new-knext-is-a '({might} {uncountable}) '({strength} {uncountable})) (new-knext-is-a '({heartiness} {uncountable}) '({strength} {uncountable})) (new-knext-is-a '({endurance} {uncountable}) '({strength} {uncountable})) (new-knext-is-a '({sufferance} {uncountable}) '({endurance} {uncountable})) (new-knext-is-a '({potency} {uncountable}) '({power} {uncountable})) (new-knext-is-a '({valence} {countable}) '({power} {uncountable})) (new-knext-is-a '({forcefulness} {uncountable}) '({intensiveness} {uncountable})) (new-knext-is-a '({momentum} {countable}) '({forcefulness} {uncountable})) (new-knext-is-a '({vigor} {countable}) '({forcefulness} {uncountable})) (add-english-names (list {vigor} {vigour}) (list "vigor" "vigour")) (new-knext-type {intensiveness} {uncountable}) (new-knext-type {degree} {uncountable}) (new-statement {intensiveness} {consists of} {degree}) (new-knext-is-a '({concentration} {uncountable}) '({property} {countable})) (new-knext-is-a '({weakness} {uncountable}) '({property} {countable})) (new-knext-is-a '({slackness} {uncountable}) '({weakness} {uncountable})) (new-knext-is-a '({temporal property} {uncountable}) '({property} {countable})) (new-knext-is-a '({length} {countable}) '({temporal property} {uncountable})) (new-knext-is-a '({prolongation} {countable}) '({length} {countable})) (new-knext-type {protraction} {uncountable}) (new-knext-type {length} {uncountable}) (new-statement {protraction} {consists of} {length}) (new-knext-type {swiftness} {uncountable}) (new-knext-type {pace} {uncountable}) (new-statement {swiftness} {consists of} {pace}) (new-knext-is-a '({pace} {countable}) '({temporal property} {uncountable})) (new-knext-is-a '({beat} {countable}) '({pace} {countable})) (new-knext-is-a '({haste} {uncountable}) '({swiftness} {uncountable})) (new-knext-is-a '({spatial property} {countable}) '({property} {countable})) (new-knext-is-a '({spatiality} {uncountable}) '({property} {countable})) (new-knext-is-a '({dimensionality} {uncountable}) '({spatial property} {countable})) (new-knext-is-a '({dimensionality} {uncountable}) '({spatiality} {uncountable})) (new-knext-is-a '({shape} {countable}) '({spatial property} {countable})) (new-knext-is-a '({shape} {countable}) '({spatiality} {uncountable})) (new-knext-is-a '({symmetry} {uncountable}) '({spatial property} {countable})) (new-knext-is-a '({symmetry} {uncountable}) '({spatiality} {uncountable})) (new-knext-is-a '({correspondence} {countable}) '({spatial property} {countable})) (new-knext-is-a '({correspondence} {countable}) '({spatiality} {uncountable})) (new-knext-is-a '({asymmetry} {uncountable}) '({spatial property} {countable})) (new-knext-is-a '({asymmetry} {uncountable}) '({spatiality} {uncountable})) (new-knext-is-a '({lean} {countable}) '({spatial relation} {countable})) (new-knext-is-a '({gradient} {countable}) '({spatial relation} {countable})) (new-knext-is-a '({grade} {countable}) '({gradient} {countable})) (new-knext-is-a '({rising slope} {countable}) '({grade} {countable})) (new-knext-is-a '({rake} {countable}) '({gradient} {countable})) (new-knext-is-a '({curvature} {uncountable}) '({shape} {countable})) (new-knext-is-a '({placement} {countable}) '({spatial relation} {countable})) (new-knext-is-a '({point of view} {uncountable}) '({spatial relation} {countable})) (new-knext-is-a '({composition} {countable}) '({placement} {countable})) (new-knext-is-a '({composing} {uncountable}) '({placement} {countable})) (new-knext-is-a '({proportionality} {countable}) '({placement} {countable})) (new-knext-is-a '({posture} {countable}) '({bodily property} {uncountable})) (new-knext-is-a '({stance} {countable}) '({posture} {countable})) (new-knext-is-a '({spacing} {uncountable}) '({placement} {countable})) (new-knext-is-a '({spatial arrangement} {countable}) '({placement} {countable})) (new-knext-is-a '({distance} {countable}) '({spacing} {uncountable})) (new-knext-is-a '({distance} {countable}) '({spatial arrangement} {countable})) (new-knext-is-a '({magnitude} {countable}) '({property} {countable})) (new-knext-is-a '({proportion} {countable}) '({magnitude} {countable})) (new-knext-is-a '({order of magnitude} {countable}) '({magnitude} {countable})) (new-knext-is-a '({probability} {countable}) '({quantity} {countable})) (new-knext-is-a '({dimension} {countable}) '({magnitude} {countable})) (new-knext-is-a '({degree} {countable}) '({property} {countable})) (new-knext-is-a '({degree} {countable}) '({magnitude} {countable})) (new-knext-is-a '({extreme} {countable}) '({degree} {countable})) (new-knext-is-a '({size} {countable}) '({magnitude} {countable})) (new-knext-is-a '({amount} {countable}) '({magnitude} {countable})) (new-knext-is-a '({increment} {countable}) '({amount} {countable})) (new-knext-is-a '({decrement} {countable}) '({amount} {countable})) (new-knext-is-a '({raise} {countable}) '({increment} {countable})) (new-knext-is-a '({adequacy} {uncountable}) '({quality} {countable})) (new-knext-type {inadequacy} {uncountable}) (new-knext-type {amount} {uncountable}) (new-statement {inadequacy} {consists of} {amount}) (new-knext-is-a '({deficit} {countable}) '({inadequacy} {uncountable})) (new-knext-type {moderation} {uncountable}) (new-knext-type {degree} {uncountable}) (new-statement {moderation} {consists of} {degree}) (new-knext-is-a '({number} {countable}) '({amount} {countable})) (new-knext-is-a '({preponderance} {countable}) '({number} {countable})) (new-knext-type {prevalence} {uncountable}) (new-knext-type {number} {uncountable}) (new-statement {prevalence} {consists of} {number}) (new-knext-is-a '({majority} {countable}) '({number} {countable})) (new-knext-is-a '({minority} {countable}) '({number} {countable})) (new-knext-is-a '({extent} {countable}) '({magnitude} {countable})) (new-knext-type {coverage} {uncountable}) (new-knext-type {extent} {uncountable}) (new-statement {coverage} {consists of} {extent}) (new-knext-is-a '({limit} {countable}) '({extent} {countable})) (new-knext-is-a '({scope} {countable}) '({extent} {countable})) (new-knext-is-a '({spectrum} {countable}) '({scope} {countable})) (new-knext-is-a '({surface area} {countable}) '({extent} {countable})) (new-knext-is-a '({elevation} {countable}) '({distance} {countable})) (new-knext-is-a '({altitude} {countable}) '({elevation} {countable})) (new-knext-type {height} {uncountable}) (new-knext-type {elevation} {uncountable}) (new-statement {height} {consists of} {elevation}) (new-knext-is-a '({length} {countable}) '({extent} {countable})) (new-knext-is-a '({width} {countable}) '({dimension} {countable})) (new-knext-is-a '({height} {uncountable}) '({dimension} {countable})) (new-knext-is-a '({worth} {uncountable}) '({quality} {countable})) (new-knext-is-a '({value} {uncountable}) '({worth} {uncountable})) (new-knext-is-a '({merit} {countable}) '({worth} {uncountable})) (new-knext-is-a '({demerit} {countable}) '({worth} {uncountable})) (new-knext-is-a '({fault} {uncountable}) '({worth} {uncountable})) (new-knext-is-a '({worthlessness} {uncountable}) '({quality} {countable})) (new-knext-is-a '({price} {countable}) '({worth} {uncountable})) (new-knext-is-a '({advantage} {countable}) '({benefit} {uncountable})) (new-knext-is-a '({bad} {uncountable}) '({quality} {countable})) (new-knext-is-a '({monetary value} {countable}) '({value} {uncountable})) (new-knext-is-a '({usefulness} {uncountable}) '({quality} {countable})) (new-knext-is-a '({function} {countable}) '({usefulness} {uncountable})) (new-knext-is-a '({competence} {uncountable}) '({ability} {countable})) (new-knext-is-a '({asset} {countable}) '({quality} {countable})) (new-knext-is-a '({resource} {countable}) '({asset} {countable})) (new-knext-is-a '({aid} {countable}) '({resource} {countable})) (new-knext-type {assistance} {uncountable}) (new-knext-type {resource} {uncountable}) (new-statement {assistance} {consists of} {resource}) (new-knext-is-a '({advantage} {countable}) '({asset} {countable})) (new-knext-is-a '({lead} {countable}) '({advantage} {countable})) (new-knext-type {profit} {uncountable}) (new-knext-type {advantage} {uncountable}) (new-statement {profit} {consists of} {advantage}) (new-knext-is-a '({privilege} {countable}) '({advantage} {countable})) (new-knext-is-a '({forte} {countable}) '({asset} {countable})) (new-knext-is-a '({liability} {uncountable}) '({bad} {uncountable})) (new-knext-is-a '({disadvantage} {uncountable}) '({liability} {uncountable})) (new-knext-is-a '({limitation} {uncountable}) '({disadvantage} {uncountable})) (new-knext-is-a '({toll} {countable}) '({value} {uncountable})) (new-knext-is-a '({importance} {uncountable}) '({value} {uncountable})) (new-knext-is-a '({significance} {uncountable}) '({importance} {uncountable})) (new-knext-is-a '({unimportance} {uncountable}) '({value} {uncountable})) (new-knext-is-a '({insignificance} {uncountable}) '({unimportance} {uncountable})) (new-knext-is-a '({access} {countable}) '({right} {countable})) (new-knext-is-a '({claim} {countable}) '({right} {countable})) (new-knext-is-a '({entree} {uncountable}) '({right} {countable})) (new-knext-is-a '({access} {uncountable}) '({right} {countable})) (new-knext-is-a '({grant} {countable}) '({right} {countable})) (new-knext-is-a '({authorization} {uncountable}) '({permission} {uncountable})) (new-knext-is-a '({sanction} {countable}) '({permission} {uncountable})) (new-knext-is-a '({entitlement} {countable}) '({claim} {countable})) (new-knext-is-a '({power} {uncountable}) '({quality} {countable})) (new-knext-is-a '({puissance} {uncountable}) '({power} {uncountable})) (new-knext-is-a '({interestingness} {uncountable}) '({power} {uncountable})) (new-knext-is-a '({sway} {uncountable}) '({power} {uncountable})) (new-knext-is-a '({influence} {uncountable}) '({power} {uncountable})) (new-knext-is-a '({force} {countable}) '({influence} {uncountable})) (new-knext-is-a '({grasp} {countable}) '({influence} {uncountable})) (new-knext-type {pressure} {uncountable}) (new-knext-type {force} {uncountable}) (new-statement {pressure} {consists of} {force}) (new-knext-is-a '({control} {uncountable}) '({power} {uncountable})) (new-knext-is-a '({legal power} {uncountable}) '({power} {uncountable})) (new-knext-is-a '({jurisdiction} {countable}) '({power} {uncountable})) (new-knext-is-a '({effectiveness} {uncountable}) '({power} {uncountable})) (new-knext-is-a '({effectuality} {countable}) '({power} {uncountable})) (new-knext-is-a '({ability} {countable}) '({quality} {countable})) (new-knext-is-a '({powerlessness} {uncountable}) '({quality} {countable})) (new-knext-is-a '({helplessness} {uncountable}) '({powerlessness} {uncountable})) (new-knext-is-a '({uninterestingness} {uncountable}) '({powerlessness} {uncountable})) (new-knext-is-a '({inability} {uncountable}) '({quality} {countable})) (new-knext-is-a '({ineffectiveness} {uncountable}) '({powerlessness} {uncountable})) (new-knext-is-a '({optimism} {uncountable}) '({disposition} {countable})) (new-knext-is-a '({body} {countable}) '({natural object} {countable})) (new-knext-is-a '({human body} {countable}) '({body} {countable})) (new-knext-is-a '({dead body} {countable}) '({natural object} {countable})) (new-knext-is-a '({cadaver} {countable}) '({dead body} {countable})) (new-knext-type {remains} {uncountable}) (new-knext-type {dead body} {uncountable}) (new-statement {remains} {consists of} {dead body}) (new-knext-is-a '({body part} {countable}) '({part} {countable})) (new-knext-is-a '({region} {countable}) '({body part} {countable})) (new-knext-is-a '({external body part} {countable}) '({body part} {countable})) (new-knext-is-a '({anatomical structure} {countable}) '({body part} {countable})) (new-knext-is-a '({interstice} {countable}) '({anatomical structure} {countable})) (new-knext-is-a '({rib} {countable}) '({anatomical structure} {countable})) (new-knext-is-a '({system} {countable}) '({body part} {countable})) (new-knext-is-a '({body covering} {countable}) '({covering} {countable})) (new-knext-is-a '({skin} {uncountable}) '({connective tissue} {uncountable})) (new-knext-is-a '({skin} {uncountable}) '({body covering} {countable})) (new-knext-is-a '({passageway} {countable}) '({anatomical structure} {countable})) (new-knext-is-a '({orifice} {countable}) '({passageway} {countable})) (new-knext-is-a '({duct} {countable}) '({passageway} {countable})) (new-knext-is-a '({hair} {uncountable}) '({body covering} {countable})) (new-knext-is-a '({lock} {countable}) '({hair} {uncountable})) (new-knext-type {tissue} {uncountable}) (new-knext-type {body part} {uncountable}) (new-statement {tissue} {consists of} {body part}) (new-knext-is-a '({animal tissue} {uncountable}) '({tissue} {uncountable})) (new-knext-is-a '({flesh} {uncountable}) '({animal tissue} {uncountable})) (new-knext-is-a '({adipose tissue} {countable}) '({animal tissue} {uncountable})) (new-knext-is-a '({bone} {countable}) '({connective tissue} {uncountable})) (new-knext-is-a '({rib} {countable}) '({bone} {countable})) (new-knext-is-a '({tooth} {countable}) '({bone} {countable})) (new-knext-is-a '({connective tissue} {uncountable}) '({animal tissue} {uncountable})) (new-knext-is-a '({muscle} {countable}) '({contractile organ} {countable})) (new-knext-is-a '({contractile organ} {countable}) '({organ} {countable})) (new-knext-is-a '({articulatory system} {countable}) '({system} {countable})) (new-knext-is-a '({organ} {countable}) '({body part} {countable})) (new-knext-is-a '({vital organ} {countable}) '({organ} {countable})) (new-knext-is-a '({internal organ} {countable}) '({organ} {countable})) (new-knext-is-a '({tongue} {countable}) '({articulator} {countable})) (new-knext-is-a '({tongue} {countable}) '({organ} {countable})) (new-knext-is-a '({mouth} {countable}) '({orifice} {countable})) (new-knext-is-a '({mouth} {countable}) '({rima} {countable})) (new-knext-is-a '({bodily cavity} {countable}) '({anatomical structure} {countable})) (new-knext-is-a '({lip} {countable}) '({articulator} {countable})) (new-knext-is-a '({lip} {countable}) '({external body part} {countable})) (new-knext-is-a '({molar} {countable}) '({tooth} {countable})) (new-knext-is-a '({crown} {countable}) '({top} {countable})) (new-knext-is-a '({eyebrow} {countable}) '({hair} {uncountable})) (new-knext-is-a '({crystalline lens} {countable}) '({organ} {countable})) (new-knext-is-a '({artery} {countable}) '({blood vessel} {countable})) (new-knext-is-a '({liver} {countable}) '({internal organ} {countable})) (new-knext-is-a '({ticker} {countable}) '({internal organ} {countable})) (new-knext-is-a '({flap} {countable}) '({animal tissue} {uncountable})) (new-knext-is-a '({stomach} {countable}) '({internal organ} {countable})) (new-knext-is-a '({vascular structure} {countable}) '({anatomical structure} {countable})) (new-knext-is-a '({liquid body substance} {countable}) '({body substance} {countable})) (new-knext-is-a '({blood} {uncountable}) '({liquid body substance} {countable})) (new-knext-is-a '({blood group} {countable}) '({blood} {uncountable})) (new-knext-is-a '({semen} {uncountable}) '({liquid body substance} {countable})) (new-knext-is-a '({secretion} {uncountable}) '({liquid body substance} {countable})) (new-knext-is-a '({lacrimal secretion} {uncountable}) '({secretion} {uncountable})) (new-knext-is-a '({tear} {countable}) '({drib} {countable})) (new-knext-is-a '({perspiration} {uncountable}) '({secretion} {uncountable})) (new-knext-is-a '({hormone} {uncountable}) '({secretion} {uncountable})) (new-knext-is-a '({blood vessel} {countable}) '({vessel} {countable})) (new-knext-is-a '({vein} {countable}) '({blood vessel} {countable})) (new-knext-is-a '({tissue layer} {countable}) '({animal tissue} {uncountable})) (new-knext-is-a '({gene} {countable}) '({sequence} {countable})) (new-knext-is-a '({reproductive cell} {countable}) '({cell} {countable})) (new-knext-is-a '({gamete} {countable}) '({reproductive cell} {countable})) (new-knext-is-a '({ovum} {countable}) '({gamete} {countable})) (new-knext-is-a '({integumentary system} {countable}) '({system} {countable})) (new-knext-is-a '({musculoskeletal system} {countable}) '({system} {countable})) (new-knext-is-a '({nervous system} {countable}) '({system} {countable})) (new-knext-is-a '({neural structure} {countable}) '({anatomical structure} {countable})) (new-knext-is-a '({appendage} {countable}) '({body part} {countable})) (new-knext-is-a '({cerebral hemisphere} {countable}) '({neural structure} {countable})) (new-knext-is-a '({brain} {countable}) '({neural structure} {countable})) (new-knext-is-a '({reproductive system} {countable}) '({system} {countable})) (new-knext-is-a '({vascular system} {countable}) '({system} {countable})) (new-knext-is-a '({circulatory system} {countable}) '({vascular system} {countable})) (new-knext-is-a '({reproductive organ} {countable}) '({organ} {countable})) (new-knext-is-a '({female reproductive system} {countable}) '({reproductive system} {countable})) (new-knext-is-a '({alimentary canal} {countable}) '({duct} {countable})) (new-knext-is-a '({intestine} {countable}) '({internal organ} {countable})) (new-knext-is-a '({vermiform appendix} {countable}) '({appendage} {countable})) (new-knext-is-a '({head} {countable}) '({external body part} {countable})) (new-knext-is-a '({skull} {countable}) '({bone} {countable})) (new-knext-is-a '({jaw} {countable}) '({bone} {countable})) (new-knext-is-a '({neck} {countable}) '({external body part} {countable})) (new-knext-is-a '({throat} {countable}) '({tubular cavity} {countable})) (new-knext-is-a '({tubular cavity} {countable}) '({bodily cavity} {countable})) (new-knext-is-a '({shoulder} {countable}) '({body part} {countable})) (new-knext-is-a '({torso} {countable}) '({body part} {countable})) (new-knext-is-a '({chest} {countable}) '({body part} {countable})) (new-knext-is-a '({breast} {countable}) '({external body part} {countable})) (new-knext-is-a '({bosom} {countable}) '({breast} {countable})) (new-knext-is-a '({waist} {countable}) '({region} {countable})) (new-knext-is-a '({hip} {countable}) '({body part} {countable})) (new-knext-is-a '({navel} {countable}) '({point} {countable})) (new-knext-is-a '({abdomen} {countable}) '({body part} {countable})) (new-knext-is-a '({back} {countable}) '({body part} {countable})) (new-knext-is-a '({buttocks} {countable}) '({body part} {countable})) (new-knext-type {buns} {uncountable}) (new-knext-type {body part} {uncountable}) (new-statement {buns} {consists of} {body part}) (new-knext-is-a '({buttock} {countable}) '({body part} {countable})) (new-knext-is-a '({extremity} {countable}) '({external body part} {countable})) (new-knext-is-a '({limb} {countable}) '({extremity} {countable})) (new-knext-is-a '({leg} {countable}) '({limb} {countable})) (new-knext-is-a '({thigh} {countable}) '({limb} {countable})) (new-knext-is-a '({lap} {countable}) '({thigh} {countable})) (new-knext-is-a '({shin} {countable}) '({body part} {countable})) (new-knext-is-a '({arm} {countable}) '({limb} {countable})) (new-knext-is-a '({hand} {countable}) '({extremity} {countable})) (new-knext-is-a '({fist} {countable}) '({hand} {countable})) (new-knext-is-a '({palm} {countable}) '({region} {countable})) (new-knext-is-a '({dactyl} {countable}) '({extremity} {countable})) (new-knext-is-a '({finger} {countable}) '({extremity} {countable})) (new-knext-is-a '({finger} {countable}) '({dactyl} {countable})) (new-knext-is-a '({extremity} {countable}) '({external body part} {countable})) (new-knext-is-a '({thumb} {countable}) '({finger} {countable})) (new-knext-is-a '({index finger} {countable}) '({finger} {countable})) (new-knext-is-a '({knee} {countable}) '({hinge joint} {countable})) (new-knext-is-a '({sole} {countable}) '({region} {countable})) (new-knext-is-a '({toe} {countable}) '({extremity} {countable})) (new-knext-is-a '({toe} {countable}) '({dactyl} {countable})) (new-knext-is-a '({heel} {countable}) '({skeletal structure} {countable})) (new-knext-is-a '({ankle} {countable}) '({gliding joint} {countable})) (new-knext-is-a '({elbow} {countable}) '({hinge joint} {countable})) (new-knext-is-a '({plate} {countable}) '({anatomical structure} {countable})) (new-knext-is-a '({wrist} {countable}) '({gliding joint} {countable})) (new-knext-is-a '({skeletal system} {countable}) '({system} {countable})) (new-knext-is-a '({skeletal structure} {countable}) '({anatomical structure} {countable})) (new-knext-is-a '({endoskeleton} {countable}) '({skeletal system} {countable})) (new-knext-is-a '({appendicular skeleton} {countable}) '({skeletal structure} {countable})) (new-knext-is-a '({spinal column} {countable}) '({skeletal structure} {countable})) (new-knext-is-a '({joint} {countable}) '({body part} {countable})) (new-knext-is-a '({bridge} {countable}) '({anatomical structure} {countable})) (new-knext-is-a '({chin} {countable}) '({feature} {countable})) (new-knext-is-a '({face} {countable}) '({external body part} {countable})) (new-knext-is-a '({face} {countable}) '({external body part} {countable})) (new-knext-is-a '({feature} {countable}) '({body part} {countable})) (new-knext-is-a '({brow} {countable}) '({feature} {countable})) (new-knext-is-a '({temple} {countable}) '({feature} {countable})) (new-knext-is-a '({cheek} {countable}) '({feature} {countable})) (new-knext-is-a '({jaw} {countable}) '({feature} {countable})) (new-knext-is-a '({rima} {countable}) '({orifice} {countable})) (new-knext-is-a '({leadership} {uncountable}) '({ability} {uncountable})) (new-knext-is-a '({leadership} {uncountable}) '({power} {countable})) (new-knext-is-a '({intelligence} {uncountable}) '({ability} {uncountable})) (new-knext-is-a '({intelligence} {uncountable}) '({power} {countable})) (new-knext-is-a '({brainpower} {uncountable}) '({intelligence} {uncountable})) (new-knext-is-a '({mental capacity} {countable}) '({intelligence} {uncountable})) (new-knext-is-a '({intellect} {countable}) '({intelligence} {uncountable})) (new-knext-is-a '({brilliance} {uncountable}) '({intelligence} {uncountable})) (new-knext-is-a '({genius} {countable}) '({intelligence} {uncountable})) (new-knext-is-a '({craftiness} {uncountable}) '({shrewdness} {uncountable})) (new-knext-is-a '({slyness} {countable}) '({shrewdness} {uncountable})) (new-knext-is-a '({shrewdness} {uncountable}) '({intelligence} {uncountable})) (new-knext-is-a '({aptitude} {countable}) '({ability} {uncountable})) (new-knext-is-a '({aptitude} {countable}) '({power} {countable})) (new-knext-is-a '({instinct} {countable}) '({aptitude} {countable})) (new-knext-is-a '({creativity} {uncountable}) '({ability} {uncountable})) (new-knext-is-a '({creativity} {uncountable}) '({power} {countable})) (new-knext-is-a '({imagination} {uncountable}) '({creativity} {uncountable})) (new-knext-is-a '({vision} {countable}) '({creativity} {uncountable})) (new-knext-is-a '({imaginary place} {countable}) '({imagination} {uncountable})) (new-knext-is-a '({imaginary place} {countable}) '({vision} {countable})) (new-knext-type {imaginary place} {countable}) (new-knext-indv {heaven} {imaginary place}) (new-knext-type {imaginary place} {countable}) (new-knext-indv {netherworld} {imaginary place}) (new-knext-type {imaginary place} {countable}) (new-knext-indv {perdition} {imaginary place}) (new-knext-is-a '({fancy} {uncountable}) '({imagination} {uncountable})) (new-knext-type {fancy} {uncountable}) (new-knext-type {vision} {uncountable}) (new-statement {fancy} {consists of} {vision}) (new-knext-is-a '({invention} {countable}) '({creativity} {uncountable})) (new-knext-is-a '({concoction} {countable}) '({invention} {countable})) (new-knext-is-a '({skill} {countable}) '({ability} {uncountable})) (new-knext-is-a '({skill} {countable}) '({power} {countable})) (new-knext-is-a '({craftsmanship} {uncountable}) '({skill} {countable})) (new-knext-is-a '({literacy} {uncountable}) '({skill} {countable})) (new-knext-is-a '({skillfulness} {uncountable}) '({state} {countable})) (new-knext-is-a '({expertness} {uncountable}) '({skillfulness} {uncountable})) (new-knext-is-a '({command} {countable}) '({skillfulness} {uncountable})) (new-knext-is-a '({mastery} {uncountable}) '({skillfulness} {uncountable})) (new-knext-is-a '({adeptness} {uncountable}) '({skillfulness} {uncountable})) (new-knext-is-a '({facility} {countable}) '({skillfulness} {uncountable})) (new-knext-is-a '({proficiency} {uncountable}) '({skillfulness} {uncountable})) (new-knext-is-a '({mental block} {countable}) '({inability} {countable})) (new-knext-type {stupidity} {uncountable}) (new-knext-type {inability} {uncountable}) (new-statement {stupidity} {consists of} {inability}) (new-knext-is-a '({inaptitude} {countable}) '({inability} {countable})) (new-knext-type {unskillfulness} {uncountable}) (new-knext-type {inability} {uncountable}) (new-statement {unskillfulness} {consists of} {inability}) (new-knext-type {uncreativeness} {uncountable}) (new-knext-type {inability} {uncountable}) (new-statement {uncreativeness} {consists of} {inability}) (new-knext-is-a '({faculty} {countable}) '({ability} {uncountable})) (new-knext-is-a '({faculty} {countable}) '({power} {countable})) (new-knext-is-a '({attention} {uncountable}) '({faculty} {countable})) (new-knext-is-a '({language} {countable}) '({faculty} {countable})) (new-knext-is-a '({retentiveness} {uncountable}) '({faculty} {countable})) (new-knext-is-a '({intellect} {uncountable}) '({faculty} {countable})) (new-knext-is-a '({sentiency} {uncountable}) '({faculty} {countable})) (new-knext-is-a '({sensory faculty} {countable}) '({faculty} {countable})) (new-knext-is-a '({volition} {uncountable}) '({faculty} {countable})) (new-knext-type {eyesight} {uncountable}) (new-knext-type {visual sense} {uncountable}) (new-statement {eyesight} {consists of} {visual sense}) (new-knext-is-a '({nose} {countable}) '({sense of smell} {uncountable})) (new-knext-is-a '({methodology} {countable}) '({method} {countable})) (new-knext-is-a '({system of rules} {countable}) '({method} {countable})) (new-knext-is-a '({accounting} {uncountable}) '({system of rules} {countable})) (new-knext-is-a '({government} {uncountable}) '({system of rules} {countable})) (new-knext-is-a '({custom} {countable}) '({practice} {countable})) (new-knext-is-a '({normal} {countable}) '({practice} {countable})) (new-knext-is-a '({habit} {countable}) '({custom} {countable})) (new-knext-is-a '({cognitive state} {countable}) '({psychological state} {countable})) (new-knext-type {enthusiasm} {uncountable}) (new-knext-type {interest} {uncountable}) (new-statement {enthusiasm} {consists of} {interest}) (new-knext-is-a '({enthusiasm} {uncountable}) '({involvement} {uncountable})) (new-knext-is-a '({concern} {countable}) '({interest} {countable})) (new-knext-is-a '({concern} {countable}) '({involvement} {uncountable})) (new-knext-is-a '({worldly concern} {countable}) '({concern} {countable})) (new-knext-is-a '({matter} {countable}) '({concern} {countable})) (new-knext-is-a '({readiness} {uncountable}) '({cognitive state} {countable})) (new-knext-is-a '({consciousness} {uncountable}) '({cognitive state} {countable})) (new-knext-is-a '({self} {countable}) '({consciousness} {uncountable})) (new-knext-is-a '({awareness} {uncountable}) '({knowing} {uncountable})) (new-knext-is-a '({unconsciousness} {uncountable}) '({cognitive state} {countable})) (new-knext-is-a '({coma} {countable}) '({unconsciousness} {uncountable})) (new-knext-is-a '({sleeping} {uncountable}) '({sleep} {uncountable})) (new-knext-type {sleeping} {uncountable}) (new-knext-type {slumber} {uncountable}) (new-statement {sleeping} {consists of} {slumber}) (new-knext-is-a '({curiosity} {uncountable}) '({cognitive state} {countable})) (new-knext-is-a '({interest} {countable}) '({curiosity} {uncountable})) (new-knext-is-a '({involvement} {uncountable}) '({curiosity} {uncountable})) (new-knext-is-a '({difficulty} {countable}) '({cognitive factor} {countable})) (new-knext-type {trouble} {uncountable}) (new-knext-type {difficulty} {uncountable}) (new-statement {trouble} {consists of} {difficulty}) (new-knext-is-a '({problem} {countable}) '({difficulty} {countable})) (new-knext-is-a '({matter} {countable}) '({trouble} {uncountable})) (new-knext-is-a '({matter} {countable}) '({problem} {countable})) (new-knext-is-a '({hindrance} {countable}) '({difficulty} {countable})) (new-knext-is-a '({support} {countable}) '({influence} {countable})) (new-knext-is-a '({temptation} {countable}) '({influence} {countable})) (new-knext-is-a '({bait} {countable}) '({temptation} {countable})) (new-knext-is-a '({certainty} {uncountable}) '({cognitive state} {countable})) (new-knext-is-a '({assurance} {uncountable}) '({certainty} {uncountable})) (new-knext-is-a '({reliance} {uncountable}) '({certainty} {uncountable})) (new-knext-is-a '({doubt} {uncountable}) '({cognitive state} {countable})) (new-knext-is-a '({mistrust} {uncountable}) '({doubt} {uncountable})) (new-knext-is-a '({suspicion} {countable}) '({doubt} {uncountable})) (new-knext-is-a '({incredulity} {uncountable}) '({doubt} {uncountable})) (new-knext-is-a '({preoccupation} {countable}) '({cognitive state} {countable})) (new-knext-is-a '({preoccupancy} {uncountable}) '({cognitive state} {countable})) (new-knext-type {abstractedness} {uncountable}) (new-knext-type {preoccupation} {uncountable}) (new-statement {abstractedness} {consists of} {preoccupation}) (new-knext-is-a '({abstractedness} {uncountable}) '({preoccupancy} {uncountable})) (new-knext-is-a '({revery} {countable}) '({abstractedness} {uncountable})) (new-knext-is-a '({basic cognitive process} {countable}) '({cognitive process} {countable})) (new-knext-is-a '({attention} {uncountable}) '({basic cognitive process} {countable})) (new-knext-is-a '({attentiveness} {uncountable}) '({attention} {uncountable})) (new-knext-is-a '({notice} {countable}) '({attention} {uncountable})) (new-knext-is-a '({mind} {countable}) '({notice} {countable})) (new-knext-is-a '({engrossment} {countable}) '({attention} {uncountable})) (new-knext-is-a '({immersion} {uncountable}) '({attention} {uncountable})) (new-knext-is-a '({focus} {countable}) '({engrossment} {countable})) (new-knext-is-a '({focus} {countable}) '({immersion} {uncountable})) (new-knext-is-a '({inattention} {uncountable}) '({basic cognitive process} {countable})) (new-knext-is-a '({inattentiveness} {uncountable}) '({inattention} {uncountable})) (new-knext-is-a '({disregard} {uncountable}) '({inattention} {uncountable})) (new-knext-is-a '({perception} {uncountable}) '({basic cognitive process} {countable})) (new-knext-is-a '({remark} {countable}) '({notice} {countable})) (new-knext-is-a '({visual perception} {countable}) '({perception} {uncountable})) (new-knext-is-a '({beholding} {uncountable}) '({perception} {uncountable})) (new-knext-is-a '({sensation} {countable}) '({perception} {uncountable})) (new-knext-is-a '({smell} {uncountable}) '({sensation} {countable})) (add-english-names (list {odor} {odour}) (list "odor" "odour")) (new-knext-is-a '({scent} {countable}) '({smell} {uncountable})) (add-english-names (list {odor} {odour}) (list "odor" "odour")) (new-knext-is-a '({malodor} {countable}) '({smell} {uncountable})) (add-english-names (list {odor} {odour}) (list "odor" "odour")) (new-knext-is-a '({taste} {uncountable}) '({sensation} {countable})) (new-knext-is-a '({taste sensation} {countable}) '({sensation} {countable})) (new-knext-is-a '({flavor} {countable}) '({taste} {uncountable})) (new-knext-is-a '({flavor} {countable}) '({taste sensation} {countable})) (new-knext-is-a '({sapidity} {uncountable}) '({taste} {uncountable})) (new-knext-type {sapidity} {uncountable}) (new-knext-type {taste sensation} {uncountable}) (new-statement {sapidity} {consists of} {taste sensation}) (new-knext-is-a '({sound} {countable}) '({sensation} {countable})) (new-knext-is-a '({auditory sensation} {uncountable}) '({sensation} {countable})) (new-knext-is-a '({noise} {countable}) '({sound} {countable})) (new-knext-is-a '({noise} {countable}) '({auditory sensation} {uncountable})) (new-knext-is-a '({touch sensation} {countable}) '({perception} {uncountable})) (new-knext-is-a '({twinge} {countable}) '({pain} {uncountable})) (new-knext-is-a '({twinge} {countable}) '({pain sensation} {countable})) (new-knext-is-a '({organization} {countable}) '({structure} {countable})) (new-knext-is-a '({coordinate system} {countable}) '({organization} {countable})) (new-knext-is-a '({design} {countable}) '({organization} {countable})) (new-knext-is-a '({configuration} {countable}) '({design} {countable})) (new-knext-is-a '({categorization} {uncountable}) '({basic cognitive process} {countable})) (new-knext-is-a '({appraisal} {countable}) '({categorization} {uncountable})) (new-knext-is-a '({attribution} {countable}) '({categorization} {uncountable})) (new-knext-is-a '({imputation} {countable}) '({attribution} {countable})) (new-knext-is-a '({valuation} {countable}) '({appraisal} {countable})) (new-knext-is-a '({mark} {countable}) '({valuation} {countable})) (new-knext-is-a '({assay} {countable}) '({appraisal} {countable})) (new-knext-is-a '({discrimination} {uncountable}) '({basic cognitive process} {countable})) (new-knext-is-a '({differentiation} {uncountable}) '({discrimination} {uncountable})) (new-knext-is-a '({distinction} {countable}) '({discrimination} {uncountable})) (new-knext-is-a '({dividing line} {countable}) '({differentiation} {uncountable})) (new-knext-is-a '({dividing line} {countable}) '({distinction} {countable})) (new-knext-is-a '({appreciation} {uncountable}) '({discrimination} {uncountable})) (new-knext-is-a '({vogue} {countable}) '({appreciation} {uncountable})) (new-knext-is-a '({fashion} {countable}) '({vogue} {countable})) (new-knext-is-a '({learning} {uncountable}) '({basic cognitive process} {countable})) (new-knext-is-a '({education} {uncountable}) '({learning} {uncountable})) (new-knext-is-a '({experience} {uncountable}) '({education} {uncountable})) (new-knext-is-a '({remembering} {uncountable}) '({basic cognitive process} {countable})) (new-knext-is-a '({retrieval} {countable}) '({remembering} {uncountable})) (new-knext-is-a '({recollection} {countable}) '({remembering} {uncountable})) (new-knext-is-a '({remembrance} {countable}) '({retentiveness} {uncountable})) (new-knext-is-a '({recollection} {uncountable}) '({retentiveness} {uncountable})) (new-knext-is-a '({mind} {countable}) '({recollection} {countable})) (new-knext-is-a '({recognition} {uncountable}) '({remembering} {uncountable})) (new-knext-is-a '({identity} {countable}) '({recognition} {uncountable})) (new-knext-is-a '({association} {countable}) '({remembering} {uncountable})) (new-knext-type {colligation} {uncountable}) (new-knext-type {association} {uncountable}) (new-statement {colligation} {consists of} {association}) (new-knext-type {interpreting} {uncountable}) (new-knext-type {explanation} {uncountable}) (new-statement {interpreting} {consists of} {explanation}) (new-knext-is-a '({rendition} {countable}) '({explanation} {countable})) (new-knext-is-a '({vision} {countable}) '({imaging} {uncountable})) (new-knext-is-a '({picturing} {uncountable}) '({imaging} {uncountable})) (new-knext-is-a '({envisioning} {countable}) '({imaging} {uncountable})) (new-knext-is-a '({dream} {countable}) '({imaging} {uncountable})) (new-knext-is-a '({nightmare} {countable}) '({dream} {countable})) (new-knext-is-a '({search} {uncountable}) '({higher cognitive process} {countable})) (new-knext-is-a '({pursuance} {uncountable}) '({search} {uncountable})) (new-knext-is-a '({quest} {countable}) '({search} {uncountable})) (new-knext-is-a '({higher cognitive process} {countable}) '({cognitive process} {countable})) (new-knext-is-a '({thinking} {uncountable}) '({higher cognitive process} {countable})) (new-knext-is-a '({thought process} {countable}) '({higher cognitive process} {countable})) (new-knext-is-a '({reasoning} {uncountable}) '({thinking} {uncountable})) (new-knext-is-a '({reasoning} {uncountable}) '({thought process} {countable})) (new-knext-is-a '({analysis} {countable}) '({reasoning} {uncountable})) (new-knext-is-a '({analytic thinking} {uncountable}) '({reasoning} {uncountable})) (new-knext-is-a '({argumentation} {uncountable}) '({reasoning} {uncountable})) (new-knext-is-a '({logical argument} {countable}) '({reasoning} {uncountable})) (new-knext-is-a '({conjecture} {countable}) '({reasoning} {uncountable})) (new-knext-is-a '({theorization} {countable}) '({conjecture} {countable})) (new-knext-is-a '({supposal} {countable}) '({conjecture} {countable})) (new-knext-type {cogitation} {uncountable}) (new-knext-type {reflection} {uncountable}) (new-statement {cogitation} {consists of} {reflection}) (new-knext-is-a '({cogitation} {uncountable}) '({thoughtfulness} {uncountable})) (new-knext-is-a '({study} {countable}) '({reflection} {countable})) (new-knext-is-a '({study} {countable}) '({thoughtfulness} {uncountable})) (new-knext-is-a '({ideation} {uncountable}) '({thinking} {uncountable})) (new-knext-is-a '({ideation} {uncountable}) '({thought process} {countable})) (new-knext-is-a '({consideration} {countable}) '({thinking} {uncountable})) (new-knext-is-a '({consideration} {countable}) '({thought process} {countable})) (new-knext-is-a '({reflection} {countable}) '({consideration} {countable})) (new-knext-type {thoughtfulness} {uncountable}) (new-knext-type {consideration} {uncountable}) (new-statement {thoughtfulness} {consists of} {consideration}) (new-knext-type {meditation} {uncountable}) (new-knext-type {reflection} {uncountable}) (new-statement {meditation} {consists of} {reflection}) (new-knext-is-a '({meditation} {uncountable}) '({thoughtfulness} {uncountable})) (new-knext-is-a '({speculation} {countable}) '({reflection} {countable})) (new-knext-is-a '({speculation} {countable}) '({thoughtfulness} {uncountable})) (new-knext-is-a '({decision making} {uncountable}) '({higher cognitive process} {countable})) (new-knext-is-a '({closure} {countable}) '({decision making} {uncountable})) (new-knext-is-a '({judging} {uncountable}) '({decision making} {uncountable})) (new-knext-is-a '({alternative} {countable}) '({decision making} {uncountable})) (new-knext-is-a '({default option} {countable}) '({alternative} {countable})) (new-knext-is-a '({possible action} {countable}) '({alternative} {countable})) (new-knext-is-a '({explanation} {countable}) '({thinking} {uncountable})) (new-knext-is-a '({explanation} {countable}) '({thought process} {countable})) (new-knext-type {fundament} {uncountable}) (new-knext-type {assumption} {uncountable}) (new-statement {fundament} {consists of} {assumption}) (new-knext-is-a '({fundament} {uncountable}) '({supposal} {uncountable})) (new-knext-is-a '({cornerstone} {countable}) '({assumption} {countable})) (new-knext-is-a '({cornerstone} {countable}) '({supposal} {uncountable})) (new-knext-is-a '({planning} {uncountable}) '({thinking} {uncountable})) (new-knext-is-a '({planning} {uncountable}) '({thought process} {countable})) (new-knext-is-a '({preparation} {countable}) '({thinking} {uncountable})) (new-knext-is-a '({preparation} {countable}) '({thought process} {countable})) (new-knext-is-a '({arrangement} {countable}) '({planning} {uncountable})) (new-knext-is-a '({arrangement} {countable}) '({preparation} {countable})) (new-knext-is-a '({calculation} {countable}) '({planning} {uncountable})) (new-knext-is-a '({calculation} {countable}) '({preparation} {countable})) (new-knext-is-a '({estimate} {countable}) '({figuring} {uncountable})) (new-knext-is-a '({estimate} {countable}) '({reckoning} {countable})) (new-knext-type {guesswork} {uncountable}) (new-knext-type {estimate} {uncountable}) (new-statement {guesswork} {consists of} {estimate}) (new-knext-is-a '({guessing} {countable}) '({estimate} {countable})) (new-knext-is-a '({knowing} {uncountable}) '({higher cognitive process} {countable})) (new-knext-is-a '({understanding} {uncountable}) '({knowing} {uncountable})) (new-knext-is-a '({discernment} {countable}) '({knowing} {uncountable})) (new-knext-is-a '({comprehension} {uncountable}) '({understanding} {uncountable})) (new-knext-type {comprehension} {uncountable}) (new-knext-type {discernment} {uncountable}) (new-statement {comprehension} {consists of} {discernment}) (new-knext-is-a '({appreciation} {countable}) '({understanding} {uncountable})) (new-knext-is-a '({appreciation} {countable}) '({discernment} {countable})) (new-knext-is-a '({grasping} {countable}) '({understanding} {uncountable})) (new-knext-is-a '({grasping} {countable}) '({discernment} {countable})) (new-knext-is-a '({brainstorm} {countable}) '({understanding} {uncountable})) (new-knext-is-a '({brainstorm} {countable}) '({discernment} {countable})) (new-knext-is-a '({realization} {countable}) '({understanding} {uncountable})) (new-knext-is-a '({realization} {countable}) '({discernment} {countable})) (new-knext-is-a '({recognition} {uncountable}) '({understanding} {uncountable})) (new-knext-type {recognition} {uncountable}) (new-knext-type {discernment} {uncountable}) (new-statement {recognition} {consists of} {discernment}) (new-knext-is-a '({revelation} {countable}) '({brainstorm} {countable})) (new-knext-is-a '({breakthrough} {countable}) '({brainstorm} {countable})) (new-knext-is-a '({world} {countable}) '({experience} {countable})) (new-knext-type {reality} {uncountable}) (new-knext-type {experience} {uncountable}) (new-statement {reality} {consists of} {experience}) (new-knext-type {living} {uncountable}) (new-knext-type {experience} {uncountable}) (new-statement {living} {consists of} {experience}) (new-knext-is-a '({center of attention} {countable}) '({object} {countable})) (new-knext-type {love} {uncountable}) (new-knext-type {object} {uncountable}) (new-statement {love} {consists of} {object}) (new-knext-is-a '({passion} {countable}) '({object} {countable})) (new-knext-is-a '({area} {countable}) '({topic} {countable})) (new-knext-is-a '({datum} {countable}) '({information} {uncountable})) (new-knext-is-a '({meter reading} {countable}) '({datum} {countable})) (new-knext-is-a '({acquaintance} {countable}) '({information} {uncountable})) (new-knext-is-a '({familiarity} {uncountable}) '({information} {uncountable})) (new-knext-is-a '({fact} {countable}) '({information} {uncountable})) (new-knext-is-a '({detail} {countable}) '({fact} {countable})) (new-knext-is-a '({observation} {countable}) '({fact} {countable})) (new-knext-is-a '({example} {countable}) '({information} {uncountable})) (new-knext-is-a '({exception} {countable}) '({example} {countable})) (new-knext-is-a '({precedent} {countable}) '({example} {countable})) (new-knext-is-a '({sample} {countable}) '({example} {countable})) (new-knext-is-a '({tasting} {countable}) '({sample} {countable})) (new-knext-is-a '({consideration} {countable}) '({information} {uncountable})) (new-knext-type {justification} {uncountable}) (new-knext-type {consideration} {uncountable}) (new-statement {justification} {consists of} {consideration}) (new-knext-is-a '({background knowledge} {uncountable}) '({information} {uncountable})) (new-knext-is-a '({evidence} {uncountable}) '({information} {uncountable})) (new-knext-is-a '({proof} {countable}) '({evidence} {uncountable})) (new-knext-is-a '({confirmation} {countable}) '({proof} {countable})) (new-knext-is-a '({establishment} {countable}) '({proof} {countable})) (new-knext-type {validation} {uncountable}) (new-knext-type {proof} {uncountable}) (new-statement {validation} {consists of} {proof}) (new-knext-is-a '({disproof} {countable}) '({evidence} {uncountable})) (new-knext-is-a '({lead} {countable}) '({evidence} {uncountable})) (new-knext-is-a '({kick} {countable}) '({stimulus} {countable})) (new-knext-is-a '({stimulus} {countable}) '({information} {uncountable})) (new-knext-is-a '({negative stimulus} {countable}) '({stimulus} {countable})) (new-knext-type {bother} {uncountable}) (new-knext-type {negative stimulus} {uncountable}) (new-statement {bother} {consists of} {negative stimulus}) (new-knext-is-a '({pain in the ass} {countable}) '({negative stimulus} {countable})) (new-knext-is-a '({plague} {countable}) '({bother} {uncountable})) (new-knext-is-a '({plague} {countable}) '({pain in the ass} {countable})) (new-knext-is-a '({worry} {countable}) '({negative stimulus} {countable})) (new-knext-type {grief} {uncountable}) (new-knext-type {negative stimulus} {uncountable}) (new-statement {grief} {consists of} {negative stimulus}) (new-knext-is-a '({concept} {countable}) '({idea} {countable})) (add-english-names (list {conceptualization} {conceptualisation} {conceptualization} {conceptualisation}) (list "conceptualization" "conceptualisation" "conceptualization" "conceptualisation")) (new-knext-is-a '({notion} {countable}) '({concept} {countable})) (new-knext-is-a '({preoccupation} {countable}) '({idea} {countable})) (new-knext-is-a '({layout} {countable}) '({design} {countable})) (new-knext-is-a '({judgment} {countable}) '({opinion} {countable})) (new-knext-is-a '({conclusion} {countable}) '({judgment} {countable})) (new-knext-is-a '({category} {countable}) '({concept} {countable})) (new-knext-is-a '({kind} {countable}) '({category} {countable})) (new-knext-is-a '({type} {countable}) '({kind} {countable})) (new-knext-is-a '({version} {countable}) '({type} {countable})) (new-knext-is-a '({antitype} {countable}) '({kind} {countable})) (new-knext-is-a '({style} {countable}) '({kind} {countable})) (new-knext-is-a '({make} {countable}) '({kind} {countable})) (new-knext-is-a '({regulation} {countable}) '({concept} {countable})) (new-knext-is-a '({restriction} {countable}) '({regulation} {countable})) (new-knext-is-a '({formula} {uncountable}) '({procedure} {countable})) (new-knext-is-a '({guidepost} {countable}) '({regulation} {countable})) (new-knext-is-a '({attribute} {countable}) '({concept} {countable})) (new-knext-is-a '({lineament} {countable}) '({attribute} {countable})) (new-knext-is-a '({feature} {countable}) '({attribute} {countable})) (new-knext-is-a '({aspect} {countable}) '({feature} {countable})) (new-knext-is-a '({sector} {countable}) '({aspect} {countable})) (new-knext-is-a '({surface} {countable}) '({aspect} {countable})) (new-knext-is-a '({quantity} {countable}) '({concept} {countable})) (new-knext-is-a '({variable quantity} {countable}) '({quantity} {countable})) (new-knext-is-a '({mathematical product} {countable}) '({quantity} {countable})) (new-knext-is-a '({sum} {countable}) '({quantity} {countable})) (new-knext-is-a '({vector} {countable}) '({variable quantity} {countable})) (new-knext-is-a '({point} {countable}) '({component} {countable})) (new-knext-is-a '({division} {countable}) '({concept} {countable})) (new-knext-is-a '({beginning} {countable}) '({division} {countable})) (new-knext-is-a '({middle} {countable}) '({division} {countable})) (new-knext-is-a '({end} {countable}) '({division} {countable})) (new-knext-is-a '({component} {countable}) '({division} {countable})) (new-knext-is-a '({whole} {countable}) '({concept} {countable})) (new-knext-is-a '({unit} {countable}) '({whole} {countable})) (new-knext-is-a '({compound} {countable}) '({whole} {countable})) (new-knext-is-a '({complex} {countable}) '({whole} {countable})) (new-knext-is-a '({hybrid} {countable}) '({complex} {countable})) (new-knext-is-a '({natural law} {countable}) '({concept} {countable})) (new-knext-is-a '({logic} {uncountable}) '({principle} {countable})) (new-knext-is-a '({principle} {countable}) '({natural law} {countable})) (new-knext-is-a '({law of nature} {countable}) '({concept} {countable})) (new-knext-is-a '({principle} {countable}) '({law of nature} {countable})) (new-knext-is-a '({hypothesis} {countable}) '({concept} {countable})) (new-knext-is-a '({model} {countable}) '({hypothesis} {countable})) (new-knext-is-a '({conjecture} {countable}) '({hypothesis} {countable})) (new-knext-is-a '({assumption} {countable}) '({hypothesis} {countable})) (new-knext-type {supposal} {uncountable}) (new-knext-type {hypothesis} {uncountable}) (new-statement {supposal} {consists of} {hypothesis}) (new-knext-is-a '({requirement} {countable}) '({duty} {countable})) (new-knext-is-a '({demand} {countable}) '({duty} {countable})) (new-knext-is-a '({given} {countable}) '({assumption} {countable})) (new-knext-is-a '({given} {countable}) '({supposal} {uncountable})) (new-knext-is-a '({misconception} {countable}) '({idea} {countable})) (new-knext-is-a '({erroneous belief} {countable}) '({misconception} {countable})) (new-knext-is-a '({misapprehension} {countable}) '({misconception} {countable})) (new-knext-is-a '({phantasy} {countable}) '({misconception} {countable})) (new-knext-is-a '({delusion} {countable}) '({misconception} {countable})) (new-knext-is-a '({plan} {countable}) '({idea} {countable})) (new-knext-is-a '({plan of action} {countable}) '({plan} {countable})) (new-knext-is-a '({tactic} {countable}) '({plan of action} {countable})) (new-knext-type {tactics} {uncountable}) (new-knext-type {plan of action} {uncountable}) (new-statement {tactics} {consists of} {plan of action}) (new-knext-is-a '({scheme} {countable}) '({plan of action} {countable})) (new-knext-is-a '({dodge} {countable}) '({scheme} {countable})) (new-knext-is-a '({plant} {countable}) '({dodge} {countable})) (new-knext-is-a '({plot} {countable}) '({scheme} {countable})) (new-knext-is-a '({conspiracy} {countable}) '({plot} {countable})) (new-knext-is-a '({heart} {countable}) '({hunch} {countable})) (new-knext-is-a '({meaning} {countable}) '({idea} {countable})) (new-knext-is-a '({burden} {countable}) '({idea} {countable})) (new-knext-is-a '({theme} {countable}) '({idea} {countable})) (new-knext-is-a '({significance} {countable}) '({meaning} {countable})) (new-knext-is-a '({denotation} {countable}) '({meaning} {countable})) (new-knext-is-a '({ideal} {countable}) '({idea} {countable})) (new-knext-is-a '({value} {countable}) '({ideal} {countable})) (new-knext-is-a '({exemplar} {countable}) '({ideal} {countable})) (new-knext-is-a '({schema} {countable}) '({representation} {countable})) (new-knext-is-a '({image} {countable}) '({representation} {countable})) (new-knext-is-a '({interpretation} {countable}) '({representation} {countable})) (new-knext-is-a '({character} {countable}) '({portrayal} {countable})) (new-knext-is-a '({character} {countable}) '({enactment} {countable})) (new-knext-is-a '({theatrical role} {countable}) '({portrayal} {countable})) (new-knext-is-a '({theatrical role} {countable}) '({enactment} {countable})) (new-knext-is-a '({percept} {countable}) '({representation} {countable})) (new-knext-is-a '({pattern} {countable}) '({structure} {countable})) (new-knext-is-a '({background} {countable}) '({vista} {countable})) (new-knext-is-a '({glimpse} {countable}) '({vista} {countable})) (new-knext-is-a '({memory} {countable}) '({representation} {countable})) (new-knext-is-a '({visual image} {countable}) '({image} {countable})) (new-knext-is-a '({mental picture} {countable}) '({image} {countable})) (new-knext-is-a '({pattern} {countable}) '({exemplar} {countable})) (new-knext-is-a '({appearance} {countable}) '({representation} {countable})) (new-knext-is-a '({illusion} {countable}) '({appearance} {countable})) (new-knext-is-a '({conviction} {countable}) '({belief} {countable})) (new-knext-type {faith} {uncountable}) (new-knext-type {belief} {uncountable}) (new-statement {faith} {consists of} {belief}) (new-knext-is-a '({doctrine} {countable}) '({belief} {countable})) (new-knext-type {philosophy} {uncountable}) (new-knext-type {belief} {uncountable}) (new-statement {philosophy} {consists of} {belief}) (new-knext-is-a '({expectation} {countable}) '({belief} {countable})) (new-knext-is-a '({opinion} {countable}) '({belief} {countable})) (new-knext-is-a '({religion} {countable}) '({theological virtue} {countable})) (new-knext-is-a '({religion} {countable}) '({belief} {countable})) (new-knext-is-a '({public opinion} {countable}) '({belief} {countable})) (new-knext-is-a '({promise} {countable}) '({expectation} {countable})) (new-knext-is-a '({anticipation} {countable}) '({expectation} {countable})) (new-knext-is-a '({theory} {countable}) '({belief} {countable})) (new-knext-type {values} {uncountable}) (new-knext-type {belief} {uncountable}) (new-statement {values} {consists of} {belief}) (new-knext-is-a '({creed} {countable}) '({doctrine} {countable})) (new-knext-is-a '({creed} {countable}) '({philosophy} {uncountable})) (new-knext-is-a '({objective} {countable}) '({goal} {countable})) (new-knext-is-a '({objective} {countable}) '({end} {uncountable})) (new-knext-is-a '({destination} {countable}) '({goal} {countable})) (new-knext-is-a '({destination} {countable}) '({end} {uncountable})) (new-knext-is-a '({purpose} {countable}) '({goal} {countable})) (new-knext-is-a '({purpose} {countable}) '({end} {uncountable})) (new-knext-is-a '({will} {countable}) '({purpose} {countable})) (new-knext-type {business} {uncountable}) (new-knext-type {objective} {uncountable}) (new-statement {business} {consists of} {objective}) (new-knext-is-a '({inexperience} {uncountable}) '({ignorance} {uncountable})) (new-knext-is-a '({theory} {countable}) '({explanation} {countable})) (new-knext-is-a '({discipline} {countable}) '({knowledge domain} {countable})) (new-knext-is-a '({territory} {countable}) '({area} {countable})) (new-knext-is-a '({scientific knowledge} {uncountable}) '({knowledge domain} {countable})) (new-knext-is-a '({science} {countable}) '({discipline} {countable})) (new-knext-is-a '({natural science} {uncountable}) '({science} {countable})) (new-knext-is-a '({mathematics} {uncountable}) '({science} {countable})) (new-knext-is-a '({origin} {countable}) '({intersection} {countable})) (new-knext-is-a '({universe} {countable}) '({collection} {countable})) (new-knext-is-a '({dentistry} {uncountable}) '({medical specialty} {countable})) (new-knext-is-a '({architecture} {uncountable}) '({discipline} {countable})) (new-knext-is-a '({engineering science} {uncountable}) '({discipline} {countable})) (new-knext-is-a '({applied science} {countable}) '({discipline} {countable})) (new-knext-is-a '({psychology} {uncountable}) '({science} {countable})) (new-knext-is-a '({cognitive science} {uncountable}) '({science} {countable})) (new-knext-is-a '({linguistics} {uncountable}) '({science} {countable})) (new-knext-is-a '({theology} {uncountable}) '({discipline} {countable})) (new-knext-type {credence} {uncountable}) (new-knext-type {attitude} {uncountable}) (new-statement {credence} {consists of} {attitude}) (new-knext-is-a '({acceptance} {countable}) '({attitude} {countable})) (new-knext-is-a '({culture} {countable}) '({attitude} {countable})) (new-knext-is-a '({mentality} {countable}) '({attitude} {countable})) (new-knext-is-a '({stance} {countable}) '({attitude} {countable})) (new-knext-is-a '({inclination} {countable}) '({attitude} {countable})) (new-knext-is-a '({direction} {countable}) '({inclination} {countable})) (new-knext-is-a '({sympathy} {uncountable}) '({inclination} {countable})) (new-knext-is-a '({bent} {countable}) '({inclination} {countable})) (new-knext-is-a '({perseveration} {countable}) '({inclination} {countable})) (new-knext-is-a '({partiality} {countable}) '({inclination} {countable})) (add-english-names (list {partizanship} {partisanship} {partizanship} {partisanship}) (list "partizanship" "partisanship" "partizanship" "partisanship")) (new-knext-is-a '({partizanship} {uncountable}) '({inclination} {countable})) (new-knext-is-a '({bias} {countable}) '({partiality} {countable})) (add-english-names (list {partizanship} {partisanship} {partizanship} {partisanship}) (list "partizanship" "partisanship" "partizanship" "partisanship")) (new-knext-is-a '({impartiality} {uncountable}) '({inclination} {countable})) (new-knext-is-a '({racism} {uncountable}) '({bias} {countable})) (new-knext-type {tolerance} {uncountable}) (new-knext-type {attitude} {uncountable}) (new-statement {tolerance} {consists of} {attitude}) (new-knext-type {intolerance} {uncountable}) (new-knext-type {attitude} {uncountable}) (new-statement {intolerance} {consists of} {attitude}) (new-knext-is-a '({fanaticism} {uncountable}) '({intolerance} {uncountable})) (new-knext-type {respect} {uncountable}) (new-knext-type {attitude} {uncountable}) (new-statement {respect} {consists of} {attitude}) (new-knext-is-a '({estimation} {countable}) '({respect} {uncountable})) (new-knext-is-a '({reputation} {countable}) '({estimation} {countable})) (new-knext-type {disrespect} {uncountable}) (new-knext-type {attitude} {uncountable}) (new-statement {disrespect} {consists of} {attitude}) (new-knext-is-a '({orientation} {countable}) '({attitude} {countable})) (new-knext-is-a '({view} {countable}) '({orientation} {countable})) (new-knext-is-a '({point of view} {countable}) '({stance} {countable})) (new-knext-is-a '({slant} {countable}) '({point of view} {countable})) (new-knext-is-a '({political orientation} {countable}) '({orientation} {countable})) (new-knext-is-a '({christianity} {uncountable}) '({religion} {countable})) (new-knext-is-a '({layer} {countable}) '({place} {countable})) (new-knext-is-a '({restraint} {countable}) '({restriction} {countable})) (new-knext-is-a '({transmission} {countable}) '({communication} {countable})) (new-knext-is-a '({transmission} {uncountable}) '({communicating} {uncountable})) (new-knext-is-a '({communication} {uncountable}) '({human action} {countable})) (new-knext-is-a '({communicating} {uncountable}) '({human action} {countable})) (new-knext-is-a '({intercommunication} {countable}) '({communication} {countable})) (new-knext-is-a '({intercommunication} {uncountable}) '({communicating} {uncountable})) (new-knext-is-a '({conveyance} {countable}) '({transmission} {countable})) (new-knext-is-a '({imparting} {countable}) '({transmission} {countable})) (new-knext-is-a '({message} {countable}) '({communication} {uncountable})) (new-knext-is-a '({broadcast} {countable}) '({message} {countable})) (new-knext-is-a '({cipher} {countable}) '({message} {countable})) (new-knext-is-a '({piece of paper} {countable}) '({paper} {uncountable})) (new-knext-is-a '({leaf} {countable}) '({piece of paper} {countable})) (new-knext-is-a '({page} {countable}) '({leaf} {countable})) (new-knext-is-a '({channel} {countable}) '({transmission} {countable})) (new-knext-is-a '({communication channel} {countable}) '({communication} {countable})) (new-knext-is-a '({communication channel} {countable}) '({communicating} {uncountable})) (new-knext-is-a '({frequency band} {countable}) '({band} {countable})) (new-knext-is-a '({liaison} {countable}) '({communication channel} {countable})) (new-knext-is-a '({mass medium} {countable}) '({transmission} {countable})) (new-knext-is-a '({multimedia system} {countable}) '({transmission} {countable})) (new-knext-is-a '({cinema} {countable}) '({medium} {countable})) (new-knext-type {celluloid} {uncountable}) (new-knext-type {medium} {uncountable}) (new-statement {celluloid} {consists of} {medium}) (new-knext-is-a '({press} {countable}) '({print media} {countable})) (new-knext-is-a '({print media} {countable}) '({medium} {countable})) (new-knext-is-a '({mail} {countable}) '({communication} {countable})) (new-knext-is-a '({mail} {uncountable}) '({communicating} {uncountable})) (new-knext-is-a '({mail service} {countable}) '({communication} {countable})) (new-knext-is-a '({mail service} {countable}) '({communicating} {uncountable})) (new-knext-is-a '({newspaper} {countable}) '({press} {countable})) (new-knext-is-a '({article} {countable}) '({nonfiction} {uncountable})) (new-knext-is-a '({article} {countable}) '({piece} {countable})) (new-knext-is-a '({news article} {countable}) '({article} {countable})) (new-knext-is-a '({piece} {countable}) '({creation} {countable})) (new-knext-is-a '({paper} {countable}) '({article} {countable})) (new-knext-type {telecommunication} {uncountable}) (new-knext-type {medium} {uncountable}) (new-statement {telecommunication} {consists of} {medium}) (new-knext-is-a '({telephony} {uncountable}) '({telecommunication} {uncountable})) (new-knext-is-a '({call} {countable}) '({telephony} {uncountable})) (new-knext-type {mail} {uncountable}) (new-knext-type {message} {uncountable}) (new-statement {mail} {consists of} {message}) (new-knext-is-a '({audio} {uncountable}) '({auditory communication} {uncountable})) (new-knext-is-a '({language} {countable}) '({communication} {uncountable})) (new-knext-is-a '({sentence} {countable}) '({string of words} {countable})) (new-knext-is-a '({sentence} {countable}) '({word string} {uncountable})) (new-knext-is-a '({word} {countable}) '({language unit} {countable})) (new-knext-is-a '({form} {countable}) '({word} {countable})) (new-knext-is-a '({plural form} {countable}) '({form} {countable})) (new-knext-is-a '({term} {countable}) '({word} {countable})) (new-knext-type {terminology} {uncountable}) (new-knext-type {word} {uncountable}) (new-statement {terminology} {consists of} {word}) (new-knext-type {nomenclature} {uncountable}) (new-knext-type {word} {uncountable}) (new-statement {nomenclature} {consists of} {word}) (new-knext-is-a '({syllable} {countable}) '({language unit} {countable})) (new-knext-is-a '({grammatical category} {countable}) '({class} {countable})) (new-knext-is-a '({grammatical case} {countable}) '({grammatical category} {countable})) (new-knext-is-a '({part of speech} {countable}) '({grammatical category} {countable})) (new-knext-is-a '({person} {countable}) '({grammatical category} {countable})) (new-knext-is-a '({tense} {countable}) '({grammatical category} {countable})) (new-knext-is-a '({name} {countable}) '({language unit} {countable})) (new-knext-is-a '({surname} {countable}) '({name} {countable})) (new-knext-is-a '({appellation} {countable}) '({name} {countable})) (new-knext-is-a '({title} {countable}) '({appellation} {countable})) (new-knext-is-a '({heading} {countable}) '({line} {countable})) (new-knext-is-a '({headline} {countable}) '({heading} {countable})) (new-knext-is-a '({legend} {countable}) '({title} {countable})) (new-knext-is-a '({written communication} {uncountable}) '({communication} {uncountable})) (new-knext-is-a '({cryptograph} {countable}) '({code} {countable})) (new-knext-is-a '({web site} {countable}) '({computer} {countable})) (new-knext-is-a '({written material} {uncountable}) '({written communication} {uncountable})) (new-knext-is-a '({piece of writing} {countable}) '({written communication} {uncountable})) (new-knext-is-a '({literary composition} {countable}) '({written material} {uncountable})) (new-knext-is-a '({literary composition} {countable}) '({piece of writing} {countable})) (new-knext-is-a '({literature} {uncountable}) '({written material} {uncountable})) (new-knext-type {literature} {uncountable}) (new-knext-type {piece of writing} {uncountable}) (new-statement {literature} {consists of} {piece of writing}) (new-knext-is-a '({matter} {countable}) '({written material} {uncountable})) (new-knext-is-a '({matter} {countable}) '({piece of writing} {countable})) (new-knext-is-a '({prescription} {countable}) '({written communication} {uncountable})) (new-knext-is-a '({fiction} {countable}) '({literary composition} {countable})) (new-knext-is-a '({nonfiction} {uncountable}) '({prose} {uncountable})) (new-knext-is-a '({novel} {countable}) '({fiction} {countable})) (new-knext-is-a '({action} {countable}) '({plot} {countable})) (new-knext-type {prose} {uncountable}) (new-knext-type {writing style} {uncountable}) (new-statement {prose} {consists of} {writing style}) (new-knext-is-a '({lucubration} {countable}) '({literary composition} {countable})) (new-knext-is-a '({poem} {countable}) '({literary composition} {countable})) (new-knext-type {dictation} {uncountable}) (new-knext-type {matter} {uncountable}) (new-statement {dictation} {consists of} {matter}) (new-knext-type {text} {uncountable}) (new-knext-type {matter} {uncountable}) (new-statement {text} {consists of} {matter}) (new-knext-is-a '({margin} {countable}) '({blank space} {countable})) (new-knext-is-a '({blank space} {countable}) '({surface area} {countable})) (new-knext-is-a '({written matter} {uncountable}) '({text} {uncountable})) (new-knext-is-a '({draft} {countable}) '({text} {uncountable})) (new-knext-is-a '({section} {countable}) '({written material} {uncountable})) (new-knext-is-a '({section} {countable}) '({piece of writing} {countable})) (new-knext-is-a '({section} {countable}) '({music} {uncountable})) (new-knext-is-a '({chapter} {countable}) '({section} {countable})) (new-knext-is-a '({introduction} {countable}) '({section} {countable})) (new-knext-is-a '({narration} {countable}) '({section} {countable})) (new-knext-is-a '({foreword} {countable}) '({introduction} {countable})) (new-knext-is-a '({close} {countable}) '({section} {countable})) (new-knext-is-a '({appendix} {countable}) '({addendum} {countable})) (new-knext-is-a '({addendum} {countable}) '({matter} {countable})) (new-knext-is-a '({paragraph} {countable}) '({written material} {uncountable})) (new-knext-is-a '({paragraph} {countable}) '({piece of writing} {countable})) (new-knext-is-a '({passage} {countable}) '({section} {countable})) (new-knext-is-a '({excerpt} {countable}) '({passage} {countable})) (new-knext-is-a '({diary} {countable}) '({written material} {uncountable})) (new-knext-is-a '({diary} {countable}) '({piece of writing} {countable})) (new-knext-is-a '({signature} {countable}) '({name} {countable})) (new-knext-is-a '({inscription} {countable}) '({written material} {uncountable})) (new-knext-is-a '({inscription} {countable}) '({piece of writing} {countable})) (new-knext-is-a '({manuscript} {countable}) '({written material} {uncountable})) (new-knext-is-a '({manuscript} {countable}) '({piece of writing} {countable})) (new-knext-is-a '({adaptation} {countable}) '({written material} {uncountable})) (new-knext-is-a '({adaptation} {countable}) '({piece of writing} {countable})) (new-knext-is-a '({essay} {countable}) '({written material} {uncountable})) (new-knext-is-a '({essay} {countable}) '({piece of writing} {countable})) (new-knext-is-a '({paper} {countable}) '({essay} {countable})) (new-knext-is-a '({book} {countable}) '({publication} {countable})) (new-knext-is-a '({authority} {countable}) '({book} {countable})) (new-knext-is-a '({volume} {countable}) '({publication} {countable})) (new-knext-is-a '({booklet} {countable}) '({book} {countable})) (new-knext-is-a '({textbook} {countable}) '({book} {countable})) (new-knext-is-a '({introduction} {countable}) '({textbook} {countable})) (new-knext-is-a '({notebook} {countable}) '({book} {countable})) (new-knext-is-a '({catalog} {countable}) '({book} {countable})) (new-knext-is-a '({reference book} {countable}) '({book} {countable})) (new-knext-is-a '({directory} {countable}) '({reference book} {countable})) (new-knext-is-a '({number} {countable}) '({positive identification} {countable})) (new-knext-is-a '({phone number} {countable}) '({signal} {countable})) (new-knext-is-a '({summary} {countable}) '({statement} {countable})) (new-knext-is-a '({abridgement} {countable}) '({summary} {countable})) (new-knext-is-a '({synopsis} {countable}) '({summary} {countable})) (new-knext-is-a '({overview} {countable}) '({summary} {countable})) (new-knext-is-a '({resume} {countable}) '({summary} {countable})) (new-knext-is-a '({document} {countable}) '({written material} {uncountable})) (new-knext-is-a '({document} {countable}) '({piece of writing} {countable})) (new-knext-is-a '({papers} {uncountable}) '({written material} {uncountable})) (new-knext-type {papers} {uncountable}) (new-knext-type {piece of writing} {uncountable}) (new-statement {papers} {consists of} {piece of writing}) (new-knext-is-a '({ballot} {countable}) '({document} {countable})) (new-knext-type {ballot} {countable}) (new-knext-type {papers} {countable}) (new-statement {papers} {consists of} {ballot}) (new-knext-is-a '({certificate} {countable}) '({document} {countable})) (new-knext-type {certificate} {countable}) (new-knext-type {papers} {countable}) (new-statement {papers} {consists of} {certificate}) (new-knext-type {credentials} {uncountable}) (new-knext-type {document} {uncountable}) (new-statement {credentials} {consists of} {document}) (new-knext-is-a '({credentials} {uncountable}) '({papers} {uncountable})) (new-knext-is-a '({charter} {countable}) '({document} {countable})) (new-knext-type {charter} {countable}) (new-knext-type {papers} {countable}) (new-statement {papers} {consists of} {charter}) (new-knext-is-a '({confession} {countable}) '({document} {countable})) (new-knext-type {confession} {countable}) (new-knext-type {papers} {countable}) (new-statement {papers} {consists of} {confession}) (new-knext-is-a '({copyright} {countable}) '({document} {countable})) (new-knext-type {copyright} {countable}) (new-knext-type {papers} {countable}) (new-statement {papers} {consists of} {copyright}) (new-knext-is-a '({form} {countable}) '({document} {countable})) (new-knext-type {form} {countable}) (new-knext-type {papers} {countable}) (new-statement {papers} {consists of} {form}) (new-knext-is-a '({questionnaire} {countable}) '({form} {countable})) (new-knext-is-a '({identity card} {countable}) '({positive identification} {countable})) (new-knext-is-a '({registration} {countable}) '({certificate} {countable})) (new-knext-type {registration} {countable}) (new-knext-type {credentials} {countable}) (new-statement {credentials} {consists of} {registration}) (new-knext-is-a '({legal document} {countable}) '({document} {countable})) (new-knext-type {legal document} {countable}) (new-knext-type {papers} {countable}) (new-statement {papers} {consists of} {legal document}) (new-knext-is-a '({list} {countable}) '({database} {countable})) (new-knext-is-a '({agendum} {countable}) '({list} {countable})) (new-knext-is-a '({bill} {countable}) '({list} {countable})) (new-knext-is-a '({character set} {countable}) '({list} {countable})) (new-knext-is-a '({criminal record} {countable}) '({list} {countable})) (new-knext-is-a '({index} {countable}) '({list} {countable})) (new-knext-is-a '({menu} {countable}) '({bill} {countable})) (new-knext-is-a '({computer menu} {countable}) '({list} {countable})) (new-knext-is-a '({roster} {countable}) '({list} {countable})) (new-knext-is-a '({schedule} {countable}) '({list} {countable})) (new-knext-is-a '({timetable} {countable}) '({schedule} {countable})) (new-knext-is-a '({alphabet} {countable}) '({script} {countable})) (new-knext-is-a '({alphabet} {countable}) '({character set} {countable})) (new-knext-is-a '({passport} {countable}) '({legal document} {countable})) (new-knext-is-a '({patent} {countable}) '({document} {countable})) (new-knext-type {patent} {countable}) (new-knext-type {papers} {countable}) (new-statement {papers} {consists of} {patent}) (new-knext-is-a '({memo} {countable}) '({note} {countable})) (new-knext-is-a '({scorecard} {countable}) '({record book} {countable})) (new-knext-is-a '({file} {countable}) '({record} {countable})) (new-knext-is-a '({resignation} {countable}) '({document} {countable})) (new-knext-type {resignation} {countable}) (new-knext-type {papers} {countable}) (new-statement {papers} {consists of} {resignation}) (new-knext-is-a '({resolution} {countable}) '({document} {countable})) (new-knext-type {resolution} {countable}) (new-knext-type {papers} {countable}) (new-statement {papers} {consists of} {resolution}) (new-knext-is-a '({application} {countable}) '({request} {countable})) (new-knext-is-a '({request} {countable}) '({message} {countable})) (new-knext-is-a '({ingathering} {countable}) '({request} {countable})) (new-knext-is-a '({account} {countable}) '({record} {countable})) (new-knext-is-a '({biography} {countable}) '({account} {countable})) (new-knext-is-a '({invoice} {countable}) '({financial statement} {countable})) (new-knext-is-a '({tab} {countable}) '({invoice} {countable})) (new-knext-is-a '({receipt} {countable}) '({acknowledgement} {countable})) (new-knext-is-a '({charter} {countable}) '({contract} {countable})) (new-knext-is-a '({lease} {countable}) '({contract} {countable})) (new-knext-type {policy} {uncountable}) (new-knext-type {contract} {uncountable}) (new-statement {policy} {consists of} {contract}) (new-knext-is-a '({insurance policy} {countable}) '({contract} {countable})) (new-knext-is-a '({partnership} {countable}) '({contract} {countable})) (new-knext-is-a '({act} {countable}) '({legal document} {countable})) (new-knext-is-a '({law} {countable}) '({legal document} {countable})) (new-knext-is-a '({fundamental law} {countable}) '({law} {countable})) (new-knext-is-a '({legislation} {countable}) '({civil law} {uncountable})) (new-knext-is-a '({statute law} {uncountable}) '({civil law} {uncountable})) (new-knext-is-a '({decree} {countable}) '({act} {countable})) (new-knext-is-a '({ban} {countable}) '({decree} {countable})) (new-knext-is-a '({testament} {countable}) '({legal document} {countable})) (new-knext-is-a '({deed} {countable}) '({legal document} {countable})) (new-knext-is-a '({commutation} {countable}) '({warrant} {countable})) (new-knext-is-a '({tax return} {countable}) '({legal document} {countable})) (new-knext-is-a '({license} {countable}) '({legal document} {countable})) (new-knext-is-a '({legal opinion} {countable}) '({legal document} {countable})) (new-knext-is-a '({pardon} {countable}) '({warrant} {countable})) (new-knext-is-a '({acquittance} {countable}) '({legal document} {countable})) (new-knext-type {software} {uncountable}) (new-knext-type {computer code} {uncountable}) (new-statement {software} {consists of} {computer code}) (new-knext-is-a '({software program} {countable}) '({computer code} {countable})) (new-knext-type {computer program} {countable}) (new-knext-type {software} {countable}) (new-statement {software} {consists of} {computer program}) (new-knext-is-a '({computer program} {countable}) '({software program} {countable})) (new-knext-is-a '({user interface} {countable}) '({computer program} {countable})) (new-knext-type {subroutine} {countable}) (new-knext-type {software} {countable}) (new-statement {software} {consists of} {subroutine}) (new-knext-is-a '({subroutine} {countable}) '({software program} {countable})) (new-knext-is-a '({publication} {countable}) '({piece of work} {countable})) (new-knext-is-a '({read} {countable}) '({publication} {countable})) (new-knext-is-a '({compendium} {countable}) '({publication} {countable})) (new-knext-is-a '({album} {countable}) '({medium} {countable})) (new-knext-is-a '({periodical} {countable}) '({publication} {countable})) (new-knext-is-a '({serial publication} {countable}) '({periodical} {countable})) (new-knext-is-a '({issue} {countable}) '({periodical} {countable})) (new-knext-is-a '({journal} {countable}) '({periodical} {countable})) (new-knext-is-a '({review} {countable}) '({periodical} {countable})) (new-knext-is-a '({message} {countable}) '({communication} {uncountable})) (new-knext-is-a '({subject} {countable}) '({message} {countable})) (new-knext-is-a '({meaning} {countable}) '({message} {countable})) (new-knext-type {signification} {uncountable}) (new-knext-type {message} {uncountable}) (new-statement {signification} {consists of} {message}) (new-knext-is-a '({signified} {countable}) '({meaning} {countable})) (new-knext-is-a '({signified} {countable}) '({signification} {uncountable})) (new-knext-is-a '({word meaning} {countable}) '({signified} {countable})) (new-knext-is-a '({dysphemism} {countable}) '({saying} {countable})) (new-knext-type {intent} {uncountable}) (new-knext-type {meaning} {uncountable}) (new-statement {intent} {consists of} {meaning}) (new-knext-is-a '({intent} {uncountable}) '({signification} {uncountable})) (new-knext-is-a '({purport} {countable}) '({meaning} {countable})) (new-knext-is-a '({purport} {countable}) '({signification} {uncountable})) (new-knext-is-a '({nuance} {countable}) '({meaning} {countable})) (new-knext-is-a '({nuance} {countable}) '({signification} {uncountable})) (new-knext-type {nonsense} {uncountable}) (new-knext-type {message} {uncountable}) (new-statement {nonsense} {consists of} {message}) (new-knext-is-a '({balderdash} {uncountable}) '({nonsense} {uncountable})) (new-knext-is-a '({empty words} {uncountable}) '({nonsense} {uncountable})) (new-knext-is-a '({empty talk} {uncountable}) '({nonsense} {uncountable})) (new-knext-is-a '({baloney} {uncountable}) '({nonsense} {uncountable})) (new-knext-is-a '({bosh} {countable}) '({nonsense} {uncountable})) (new-knext-is-a '({clipping} {countable}) '({excerpt} {countable})) (new-knext-is-a '({quotation} {countable}) '({excerpt} {countable})) (new-knext-is-a '({movie} {countable}) '({show} {countable})) (new-knext-is-a '({movie} {countable}) '({product} {countable})) (new-knext-is-a '({scene} {countable}) '({photograph} {countable})) (new-knext-type {attraction} {uncountable}) (new-knext-type {show} {uncountable}) (new-statement {attraction} {consists of} {show}) (new-knext-is-a '({show} {countable}) '({social event} {countable})) (new-knext-is-a '({broadcast} {countable}) '({show} {countable})) (new-knext-is-a '({news program} {countable}) '({broadcast} {countable})) (new-knext-is-a '({news} {uncountable}) '({broadcast} {countable})) (new-knext-is-a '({serial} {countable}) '({broadcast} {countable})) (add-english-names (list {installment} {instalment} {instalment}) (list "installment" "instalment" "instalment")) (new-knext-is-a '({telegram} {countable}) '({message} {countable})) (new-knext-is-a '({correspondence} {uncountable}) '({written communication} {uncountable})) (new-knext-is-a '({letter} {countable}) '({text} {uncountable})) (new-knext-is-a '({letter} {countable}) '({document} {countable})) (new-knext-type {card} {countable}) (new-knext-type {correspondence} {countable}) (new-statement {correspondence} {consists of} {card}) (new-knext-is-a '({postcard} {countable}) '({card} {countable})) (new-knext-is-a '({acknowledgement} {countable}) '({message} {countable})) (new-knext-is-a '({greeting} {countable}) '({acknowledgement} {countable})) (new-knext-is-a '({reception} {countable}) '({greeting} {countable})) (new-knext-is-a '({welcome} {countable}) '({greeting} {countable})) (new-knext-is-a '({cordial reception} {countable}) '({welcome} {countable})) (new-knext-type {hospitality} {uncountable}) (new-knext-type {welcome} {uncountable}) (new-statement {hospitality} {consists of} {welcome}) (new-knext-is-a '({visiting card} {countable}) '({greeting} {countable})) (new-knext-is-a '({apology} {countable}) '({acknowledgement} {countable})) (new-knext-type {information} {uncountable}) (new-knext-type {message} {uncountable}) (new-statement {information} {consists of} {message}) (new-knext-is-a '({misinformation} {uncountable}) '({information} {uncountable})) (new-knext-is-a '({material} {countable}) '({information} {uncountable})) (new-knext-is-a '({fact} {countable}) '({information} {uncountable})) (new-knext-is-a '({record book} {countable}) '({fact} {countable})) (new-knext-is-a '({format} {countable}) '({information} {uncountable})) (new-knext-is-a '({database} {countable}) '({information} {uncountable})) (new-knext-is-a '({news} {uncountable}) '({information} {uncountable})) (new-knext-is-a '({tidings} {uncountable}) '({information} {uncountable})) (new-knext-is-a '({news} {uncountable}) '({information} {uncountable})) (new-knext-type {evidence} {uncountable}) (new-knext-type {indication} {uncountable}) (new-statement {evidence} {consists of} {indication}) (new-knext-is-a '({clue} {countable}) '({evidence} {uncountable})) (new-knext-is-a '({footprint} {countable}) '({print} {countable})) (new-knext-is-a '({sign} {countable}) '({clue} {countable})) (new-knext-is-a '({trace} {countable}) '({print} {countable})) (new-knext-is-a '({record} {countable}) '({evidence} {uncountable})) (new-knext-is-a '({testimonial} {countable}) '({evidence} {uncountable})) (new-knext-type {guidance} {uncountable}) (new-knext-type {message} {uncountable}) (new-statement {guidance} {consists of} {message}) (new-knext-is-a '({steer} {countable}) '({guidance} {uncountable})) (new-knext-is-a '({confidential information} {uncountable}) '({guidance} {uncountable})) (new-knext-is-a '({prescript} {countable}) '({instruction} {countable})) (new-knext-is-a '({policy} {countable}) '({argumentation} {uncountable})) (new-knext-is-a '({policy} {countable}) '({logical argument} {countable})) (new-knext-is-a '({regulation} {countable}) '({prescript} {countable})) (new-knext-type {advice} {uncountable}) (new-knext-type {proposal} {uncountable}) (new-statement {advice} {consists of} {proposal}) (new-knext-is-a '({recommendation} {countable}) '({advice} {uncountable})) (new-knext-is-a '({referral} {countable}) '({recommendation} {countable})) (new-knext-is-a '({admonition} {countable}) '({advice} {uncountable})) (new-knext-is-a '({arcanum} {countable}) '({information} {uncountable})) (new-knext-is-a '({secret} {countable}) '({information} {uncountable})) (new-knext-is-a '({password} {countable}) '({positive identification} {countable})) (new-knext-is-a '({password} {countable}) '({arcanum} {countable})) (new-knext-is-a '({propaganda} {uncountable}) '({information} {uncountable})) (new-knext-is-a '({filler} {uncountable}) '({written matter} {uncountable})) (new-knext-is-a '({course of study} {countable}) '({information} {uncountable})) (new-knext-is-a '({print} {countable}) '({written communication} {uncountable})) (new-knext-is-a '({news} {uncountable}) '({information} {uncountable})) (new-knext-is-a '({news report} {countable}) '({news} {uncountable})) (new-knext-is-a '({bulletin} {countable}) '({news report} {countable})) (new-knext-is-a '({dispatch} {countable}) '({news report} {countable})) (new-knext-is-a '({reporting} {uncountable}) '({news} {uncountable})) (new-knext-is-a '({dedication} {countable}) '({message} {countable})) (new-knext-is-a '({oath} {countable}) '({dedication} {countable})) (new-knext-type {swearing} {uncountable}) (new-knext-type {dedication} {uncountable}) (new-statement {swearing} {consists of} {dedication}) (new-knext-is-a '({guarantee} {countable}) '({assurance} {countable})) (new-knext-is-a '({approval} {countable}) '({message} {countable})) (new-knext-type {commendation} {uncountable}) (new-knext-type {message} {uncountable}) (new-statement {commendation} {consists of} {message}) (new-knext-is-a '({approbation} {countable}) '({approval} {countable})) (new-knext-is-a '({approbation} {countable}) '({commendation} {uncountable})) (new-knext-is-a '({sanction} {countable}) '({approval} {countable})) (new-knext-is-a '({sanction} {countable}) '({commendation} {uncountable})) (new-knext-type {credit} {uncountable}) (new-knext-type {approval} {uncountable}) (new-statement {credit} {consists of} {approval}) (new-knext-is-a '({credit} {uncountable}) '({commendation} {uncountable})) (new-knext-is-a '({memorial} {countable}) '({credit} {uncountable})) (new-knext-type {permission} {uncountable}) (new-knext-type {approval} {uncountable}) (new-statement {permission} {consists of} {approval}) (new-knext-is-a '({permission} {uncountable}) '({commendation} {uncountable})) (new-knext-is-a '({consent} {uncountable}) '({permission} {uncountable})) (new-knext-is-a '({laissez passer} {countable}) '({permission} {uncountable})) (new-knext-is-a '({passport} {countable}) '({permission} {uncountable})) (new-knext-is-a '({praise} {countable}) '({approval} {countable})) (new-knext-is-a '({praise} {countable}) '({commendation} {uncountable})) (new-knext-type {congratulations} {uncountable}) (new-knext-type {approval} {uncountable}) (new-statement {congratulations} {consists of} {approval}) (new-knext-is-a '({congratulations} {uncountable}) '({commendation} {uncountable})) (new-knext-is-a '({good word} {countable}) '({praise} {countable})) (new-knext-type {good word} {countable}) (new-knext-type {congratulations} {countable}) (new-statement {congratulations} {consists of} {good word}) (new-knext-is-a '({character reference} {countable}) '({good word} {countable})) (new-knext-is-a '({blandishment} {countable}) '({flattery} {uncountable})) (new-knext-is-a '({cajolery} {uncountable}) '({flattery} {uncountable})) (new-knext-is-a '({accolade} {countable}) '({symbol} {countable})) (new-knext-type {laurels} {uncountable}) (new-knext-type {symbol} {uncountable}) (new-statement {laurels} {consists of} {symbol}) (new-knext-is-a '({tribute} {countable}) '({approval} {countable})) (new-knext-is-a '({tribute} {countable}) '({commendation} {uncountable})) (new-knext-is-a '({academic degree} {countable}) '({accolade} {countable})) (new-knext-type {academic degree} {countable}) (new-knext-type {laurels} {countable}) (new-statement {laurels} {consists of} {academic degree}) (new-knext-is-a '({laurel wreath} {countable}) '({accolade} {countable})) (new-knext-type {laurel wreath} {countable}) (new-knext-type {laurels} {countable}) (new-statement {laurels} {consists of} {laurel wreath}) (new-knext-type {disapproval} {uncountable}) (new-knext-type {message} {uncountable}) (new-statement {disapproval} {consists of} {message}) (new-knext-is-a '({criticism} {uncountable}) '({disapproval} {uncountable})) (new-knext-is-a '({flak} {uncountable}) '({criticism} {uncountable})) (new-knext-is-a '({flack} {countable}) '({criticism} {uncountable})) (new-knext-is-a '({statement} {countable}) '({message} {countable})) (new-knext-is-a '({amendment} {countable}) '({statement} {countable})) (new-knext-is-a '({thing} {countable}) '({statement} {countable})) (new-knext-type {truth} {uncountable}) (new-knext-type {statement} {uncountable}) (new-statement {truth} {consists of} {statement}) (new-knext-is-a '({true statement} {countable}) '({statement} {countable})) (new-knext-is-a '({paradox} {countable}) '({contradiction in terms} {countable})) (new-knext-is-a '({description} {countable}) '({statement} {countable})) (new-knext-is-a '({declaration} {countable}) '({statement} {countable})) (new-knext-is-a '({announcement} {countable}) '({statement} {countable})) (new-knext-is-a '({pronouncement} {countable}) '({declaration} {countable})) (new-knext-is-a '({assertion} {countable}) '({declaration} {countable})) (new-knext-is-a '({claim} {countable}) '({assertion} {countable})) (new-knext-is-a '({claim} {countable}) '({assertion} {countable})) (new-knext-is-a '({accusation} {countable}) '({assertion} {countable})) (new-knext-is-a '({formula} {countable}) '({statement} {countable})) (new-knext-is-a '({avowal} {countable}) '({assertion} {countable})) (new-knext-is-a '({testimony} {countable}) '({assertion} {countable})) (new-knext-is-a '({professing} {countable}) '({avowal} {countable})) (new-knext-is-a '({evidence} {uncountable}) '({information} {uncountable})) (new-knext-is-a '({bid} {countable}) '({statement} {countable})) (new-knext-type {bidding} {uncountable}) (new-knext-type {statement} {uncountable}) (new-statement {bidding} {consists of} {statement}) (new-knext-is-a '({explanation} {countable}) '({statement} {countable})) (new-knext-is-a '({reason} {countable}) '({explanation} {countable})) (new-knext-is-a '({exposition} {countable}) '({explanation} {countable})) (new-knext-is-a '({exposition} {countable}) '({interpretation} {countable})) (new-knext-type {expounding} {uncountable}) (new-knext-type {interpretation} {uncountable}) (new-statement {expounding} {consists of} {interpretation}) (new-knext-is-a '({construal} {countable}) '({interpretation} {countable})) (new-knext-is-a '({explication} {countable}) '({explanation} {countable})) (new-knext-is-a '({solution} {countable}) '({statement} {countable})) (new-knext-is-a '({definition} {countable}) '({explanation} {countable})) (new-knext-is-a '({answer} {countable}) '({statement} {countable})) (new-knext-type {feedback} {uncountable}) (new-knext-type {answer} {uncountable}) (new-statement {feedback} {consists of} {answer}) (new-knext-is-a '({promulgation} {countable}) '({statement} {countable})) (new-knext-is-a '({notice} {countable}) '({promulgation} {countable})) (add-english-names (list {program} {programme} {program} {programme}) (list "program" "programme" "program" "programme")) (new-knext-is-a '({proposition} {countable}) '({statement} {countable})) (new-knext-is-a '({precondition} {countable}) '({premise} {countable})) (new-knext-is-a '({scenario} {countable}) '({premise} {countable})) (new-knext-is-a '({quotation} {countable}) '({statement} {countable})) (new-knext-is-a '({fib} {countable}) '({lie} {countable})) (new-knext-is-a '({reservation} {countable}) '({statement} {countable})) (new-knext-is-a '({cite} {countable}) '({annotation} {countable})) (new-knext-is-a '({remark} {countable}) '({statement} {countable})) (new-knext-is-a '({observation} {countable}) '({remark} {countable})) (new-knext-is-a '({rib} {countable}) '({remark} {countable})) (new-knext-is-a '({wisecrack} {countable}) '({remark} {countable})) (new-knext-is-a '({restatement} {countable}) '({statement} {countable})) (new-knext-type {strings} {uncountable}) (new-knext-type {statement} {uncountable}) (new-statement {strings} {consists of} {statement}) (new-knext-is-a '({term} {countable}) '({statement} {countable})) (new-knext-is-a '({opinion} {countable}) '({message} {countable})) (new-knext-is-a '({guess} {countable}) '({opinion} {countable})) (new-knext-is-a '({estimate} {countable}) '({statement} {countable})) (new-knext-is-a '({instruction} {countable}) '({message} {countable})) (new-knext-is-a '({rule} {countable}) '({instruction} {countable})) (new-knext-is-a '({style} {countable}) '({instruction} {countable})) (new-knext-is-a '({signal} {countable}) '({communication} {uncountable})) (new-knext-is-a '({sign} {countable}) '({communication} {uncountable})) (new-knext-is-a '({poster} {countable}) '({sign} {countable})) (new-knext-is-a '({stigma} {countable}) '({symbol} {countable})) (new-knext-is-a '({token} {countable}) '({symbol} {countable})) (new-knext-is-a '({postage stamp} {countable}) '({token} {countable})) (new-knext-is-a '({indication} {countable}) '({communication} {uncountable})) (new-knext-is-a '({print} {countable}) '({indication} {countable})) (new-knext-is-a '({line} {countable}) '({print} {countable})) (new-knext-is-a '({harbinger} {countable}) '({indication} {countable})) (new-knext-is-a '({warning signal} {countable}) '({signal} {countable})) (new-knext-is-a '({symbol} {countable}) '({signal} {countable})) (new-knext-is-a '({numeral} {countable}) '({symbol} {countable})) (new-knext-is-a '({written symbol} {countable}) '({symbol} {countable})) (new-knext-is-a '({grapheme} {countable}) '({written symbol} {countable})) (new-knext-is-a '({capital letter} {countable}) '({grapheme} {countable})) (new-knext-is-a '({asterisk} {countable}) '({grapheme} {countable})) (new-knext-is-a '({letter of the alphabet} {countable}) '({grapheme} {countable})) (new-knext-is-a '({initial} {countable}) '({letter of the alphabet} {countable})) (new-knext-type {space} {uncountable}) (new-knext-type {grapheme} {uncountable}) (new-statement {space} {consists of} {grapheme}) (new-knext-is-a '({blank} {countable}) '({grapheme} {countable})) (new-knext-type {angle bracket} {countable}) (new-knext-type {punctuation} {countable}) (new-statement {punctuation} {consists of} {angle bracket}) (new-knext-is-a '({angle bracket} {countable}) '({punctuation mark} {countable})) (new-knext-type {colon} {countable}) (new-knext-type {punctuation} {countable}) (new-statement {punctuation} {consists of} {colon}) (new-knext-is-a '({colon} {countable}) '({punctuation mark} {countable})) (new-knext-type {full stop} {countable}) (new-knext-type {punctuation} {countable}) (new-statement {punctuation} {consists of} {full stop}) (new-knext-is-a '({full stop} {countable}) '({punctuation mark} {countable})) (new-knext-is-a '({trade name} {countable}) '({name} {countable})) (new-knext-is-a '({trill} {countable}) '({musical note} {countable})) (new-knext-is-a '({eighth note} {countable}) '({musical note} {countable})) (new-knext-is-a '({visual communication} {countable}) '({communication} {uncountable})) (new-knext-is-a '({sign language} {uncountable}) '({language} {countable})) (new-knext-is-a '({sign} {countable}) '({motion} {countable})) (new-knext-is-a '({motion} {countable}) '({visual communication} {countable})) (new-knext-is-a '({gesticulation} {countable}) '({motion} {countable})) (new-knext-is-a '({demo} {countable}) '({visual communication} {countable})) (new-knext-is-a '({expression} {countable}) '({demo} {countable})) (new-knext-is-a '({emblem} {countable}) '({symbolic representation} {countable})) (new-knext-is-a '({eagle} {countable}) '({emblem} {countable})) (new-knext-is-a '({identification} {countable}) '({evidence} {uncountable})) (new-knext-is-a '({positive identification} {countable}) '({identification} {countable})) (new-knext-is-a '({personal identification number} {countable}) '({number} {countable})) (new-knext-is-a '({projection} {countable}) '({visual communication} {countable})) (new-knext-is-a '({performance} {countable}) '({show} {countable})) (new-knext-is-a '({routine} {countable}) '({performance} {countable})) (new-knext-is-a '({benefit} {countable}) '({performance} {countable})) (new-knext-is-a '({concert} {countable}) '({performance} {countable})) (new-knext-is-a '({theatrical performance} {countable}) '({performance} {countable})) (new-knext-is-a '({artificial language} {countable}) '({language} {countable})) (new-knext-is-a '({natural language} {countable}) '({language} {countable})) (new-knext-type {artwork} {uncountable}) (new-knext-type {visual communication} {uncountable}) (new-statement {artwork} {consists of} {visual communication}) (new-knext-type {graphics} {uncountable}) (new-knext-type {visual communication} {uncountable}) (new-statement {graphics} {consists of} {visual communication}) (new-knext-is-a '({chart} {countable}) '({visual communication} {countable})) (new-knext-is-a '({plot} {countable}) '({chart} {countable})) (new-knext-is-a '({graph} {countable}) '({visual communication} {countable})) (new-knext-is-a '({curve} {countable}) '({line} {countable})) (new-knext-type {drawing} {countable}) (new-knext-type {artwork} {countable}) (new-statement {artwork} {consists of} {drawing}) (new-knext-is-a '({drawing} {countable}) '({graphics} {uncountable})) (new-knext-is-a '({comic strip} {countable}) '({cartoon} {countable})) (new-knext-type {funnies} {uncountable}) (new-knext-type {cartoon} {uncountable}) (new-statement {funnies} {consists of} {cartoon}) (new-knext-is-a '({dramaturgy} {uncountable}) '({communication} {uncountable})) (new-knext-is-a '({dramaturgy} {uncountable}) '({communicating} {uncountable})) (new-knext-is-a '({dramatic art} {countable}) '({communication} {countable})) (new-knext-is-a '({dramatic art} {countable}) '({communicating} {uncountable})) (new-knext-is-a '({dramatics} {countable}) '({communication} {countable})) (new-knext-is-a '({dramatics} {uncountable}) '({communicating} {uncountable})) (new-knext-is-a '({production} {countable}) '({presentation} {countable})) (new-knext-is-a '({fragment} {countable}) '({piece} {countable})) (new-knext-is-a '({line} {countable}) '({text} {uncountable})) (new-knext-is-a '({string} {countable}) '({sequence} {countable})) (new-knext-is-a '({string of words} {countable}) '({language} {countable})) (new-knext-is-a '({word string} {uncountable}) '({language} {countable})) (new-knext-is-a '({string of words} {countable}) '({string} {countable})) (new-knext-is-a '({play} {countable}) '({show} {countable})) (new-knext-is-a '({dance} {countable}) '({art} {uncountable})) (new-knext-is-a '({music} {uncountable}) '({auditory communication} {uncountable})) (new-knext-is-a '({musical harmony} {countable}) '({music} {uncountable})) (new-knext-is-a '({tune} {countable}) '({music} {uncountable})) (new-knext-is-a '({melodic theme} {countable}) '({tune} {countable})) (new-knext-is-a '({musical composition} {countable}) '({music} {uncountable})) (new-knext-is-a '({song} {countable}) '({musical composition} {countable})) (new-knext-is-a '({stanza} {countable}) '({text} {uncountable})) (new-knext-is-a '({marching music} {uncountable}) '({music genre} {countable})) (new-knext-is-a '({march} {countable}) '({music genre} {countable})) (new-knext-is-a '({expressive style} {countable}) '({communication} {uncountable})) (new-knext-is-a '({device} {countable}) '({expressive style} {countable})) (new-knext-is-a '({manner of speaking} {countable}) '({expressive style} {countable})) (new-knext-is-a '({music genre} {countable}) '({expressive style} {countable})) (new-knext-is-a '({music genre} {countable}) '({music} {uncountable})) (new-knext-type {rhetoric} {uncountable}) (new-knext-type {expressive style} {uncountable}) (new-statement {rhetoric} {consists of} {expressive style}) (new-knext-is-a '({articulation} {countable}) '({verbal expression} {countable})) (new-knext-is-a '({articulation} {countable}) '({verbalism} {countable})) (new-knext-is-a '({verbalization} {countable}) '({wording} {countable})) (new-knext-is-a '({verbalization} {countable}) '({diction} {uncountable})) (new-knext-is-a '({tone} {countable}) '({manner of speaking} {countable})) (new-knext-is-a '({rhythm} {countable}) '({musical time} {countable})) (new-knext-is-a '({writing style} {countable}) '({expressive style} {countable})) (new-knext-type {poetry} {uncountable}) (new-knext-type {writing style} {uncountable}) (new-statement {poetry} {consists of} {writing style}) (new-knext-is-a '({poesy} {countable}) '({writing style} {countable})) (new-knext-is-a '({rhetorical device} {countable}) '({device} {countable})) (new-knext-is-a '({auditory communication} {uncountable}) '({communication} {uncountable})) (new-knext-is-a '({speech communication} {uncountable}) '({auditory communication} {uncountable})) (new-knext-is-a '({utterance} {countable}) '({auditory communication} {uncountable})) (new-knext-is-a '({speech} {uncountable}) '({speaking} {uncountable})) (new-knext-is-a '({vocalization} {countable}) '({communication} {uncountable})) (new-knext-is-a '({speech sound} {countable}) '({language unit} {countable})) (new-knext-type {sound} {uncountable}) (new-knext-type {language unit} {uncountable}) (new-statement {sound} {consists of} {language unit}) (new-knext-is-a '({cry} {countable}) '({utterance} {countable})) (new-knext-is-a '({scream} {countable}) '({cry} {countable})) (new-knext-type {shrieking} {uncountable}) (new-knext-type {cry} {uncountable}) (new-statement {shrieking} {consists of} {cry}) (new-knext-is-a '({laugh} {countable}) '({utterance} {countable})) (new-knext-type {laughter} {uncountable}) (new-knext-type {utterance} {uncountable}) (new-statement {laughter} {consists of} {utterance}) (new-knext-is-a '({pronunciation} {uncountable}) '({speech communication} {uncountable})) (new-knext-type {pronunciation} {uncountable}) (new-knext-type {utterance} {uncountable}) (new-statement {pronunciation} {consists of} {utterance}) (new-knext-type {exultation} {uncountable}) (new-knext-type {utterance} {uncountable}) (new-statement {exultation} {consists of} {utterance}) (new-knext-type {speaking} {uncountable}) (new-knext-type {utterance} {uncountable}) (new-statement {speaking} {consists of} {utterance}) (new-knext-is-a '({speech} {countable}) '({utterance} {countable})) (new-knext-is-a '({whisper} {countable}) '({speaking} {uncountable})) (new-knext-is-a '({voicelessness} {uncountable}) '({speaking} {uncountable})) (new-knext-is-a '({articulation} {uncountable}) '({pronunciation} {uncountable})) (new-knext-is-a '({enunciation} {countable}) '({articulation} {uncountable})) (new-knext-is-a '({diction} {uncountable}) '({articulation} {uncountable})) (new-knext-is-a '({mumbling} {countable}) '({enunciation} {countable})) (new-knext-is-a '({mumbling} {countable}) '({diction} {uncountable})) (new-knext-is-a '({conversation} {countable}) '({speech communication} {uncountable})) (new-knext-is-a '({exchange} {countable}) '({conversation} {countable})) (new-knext-is-a '({chat} {countable}) '({conversation} {countable})) (new-knext-type {chitchat} {uncountable}) (new-knext-type {chat} {uncountable}) (new-statement {chitchat} {consists of} {chat}) (new-knext-is-a '({gab} {countable}) '({chat} {countable})) (new-knext-type {talking} {uncountable}) (new-knext-type {conversation} {uncountable}) (new-statement {talking} {consists of} {conversation}) (add-english-names (list {dialog} {dialogue} {dialogue}) (list "dialog" "dialogue" "dialogue")) (new-knext-is-a '({dilation} {countable}) '({discussion} {countable})) (new-knext-is-a '({discussion} {countable}) '({communication} {countable})) (new-knext-is-a '({discussion} {uncountable}) '({communicating} {uncountable})) (new-knext-is-a '({consideration} {countable}) '({discussion} {countable})) (new-knext-is-a '({expatiation} {countable}) '({expansion} {countable})) (new-knext-is-a '({expatiation} {countable}) '({elaboration} {countable})) (new-knext-is-a '({talk} {countable}) '({discussion} {countable})) (new-knext-is-a '({exhortation} {countable}) '({communication} {countable})) (new-knext-is-a '({exhortation} {countable}) '({communicating} {uncountable})) (new-knext-is-a '({verbal expression} {countable}) '({communication} {countable})) (new-knext-is-a '({verbal expression} {countable}) '({communicating} {uncountable})) (new-knext-is-a '({verbalism} {countable}) '({communication} {countable})) (new-knext-is-a '({verbalism} {uncountable}) '({communicating} {uncountable})) (new-knext-is-a '({discussion} {countable}) '({speech communication} {uncountable})) (new-knext-is-a '({debate} {countable}) '({discussion} {countable})) (new-knext-is-a '({negotiation} {countable}) '({discussion} {countable})) (new-knext-type {talks} {uncountable}) (new-knext-type {discussion} {uncountable}) (new-statement {talks} {consists of} {discussion}) (new-knext-is-a '({saying} {countable}) '({speech communication} {uncountable})) (new-knext-is-a '({motto} {countable}) '({saying} {countable})) (new-knext-is-a '({idiomatic expression} {countable}) '({saying} {countable})) (new-knext-is-a '({magic spell} {countable}) '({speech communication} {uncountable})) (new-knext-is-a '({dictation} {uncountable}) '({speech communication} {uncountable})) (new-knext-is-a '({speech act} {countable}) '({human action} {countable})) (new-knext-is-a '({proposal} {countable}) '({speech act} {countable})) (new-knext-is-a '({marriage proposal} {countable}) '({offering} {countable})) (new-knext-is-a '({proposal} {countable}) '({message} {countable})) (new-knext-is-a '({hypothesis} {countable}) '({proposal} {countable})) (new-knext-is-a '({proffer} {countable}) '({proposal} {countable})) (new-knext-is-a '({offering} {countable}) '({message} {countable})) (new-knext-is-a '({reward} {countable}) '({offering} {countable})) (new-knext-is-a '({presentation} {countable}) '({proposal} {countable})) (new-knext-is-a '({submission} {countable}) '({message} {countable})) (new-knext-is-a '({command} {countable}) '({speech act} {countable})) (new-knext-is-a '({bid} {countable}) '({speech act} {countable})) (new-knext-type {bidding} {uncountable}) (new-knext-type {speech act} {uncountable}) (new-statement {bidding} {consists of} {speech act}) (new-knext-is-a '({order} {countable}) '({command} {countable})) (new-knext-is-a '({order} {countable}) '({bid} {countable})) (new-knext-is-a '({order} {countable}) '({bidding} {uncountable})) (new-knext-is-a '({summons} {countable}) '({order} {countable})) (new-knext-is-a '({commission} {countable}) '({command} {countable})) (new-knext-is-a '({commission} {countable}) '({bid} {countable})) (new-knext-is-a '({commission} {uncountable}) '({bidding} {uncountable})) (new-knext-is-a '({commandment} {countable}) '({command} {countable})) (new-knext-is-a '({commandment} {countable}) '({bid} {countable})) (new-knext-is-a '({commandment} {countable}) '({bidding} {uncountable})) (new-knext-is-a '({directive} {countable}) '({pronouncement} {countable})) (new-knext-is-a '({injunction} {countable}) '({command} {countable})) (new-knext-is-a '({injunction} {countable}) '({bid} {countable})) (new-knext-is-a '({injunction} {countable}) '({bidding} {uncountable})) (new-knext-is-a '({interpretation} {countable}) '({explanation} {countable})) (new-knext-is-a '({clarification} {countable}) '({interpretation} {countable})) (new-knext-is-a '({expansion} {countable}) '({discussion} {countable})) (new-knext-is-a '({elaboration} {countable}) '({discussion} {countable})) (new-knext-is-a '({version} {countable}) '({interpretation} {countable})) (new-knext-is-a '({agreement} {countable}) '({speech act} {countable})) (new-knext-is-a '({concurrence} {countable}) '({agreement} {countable})) (new-knext-is-a '({concordance} {countable}) '({agreement} {countable})) (new-knext-is-a '({disagreement} {countable}) '({speech act} {countable})) (new-knext-is-a '({dispute} {countable}) '({disagreement} {countable})) (new-knext-is-a '({difference} {countable}) '({disagreement} {countable})) (new-knext-is-a '({quarrel} {countable}) '({dispute} {countable})) (new-knext-is-a '({quarrel} {countable}) '({difference} {countable})) (new-knext-type {words} {uncountable}) (new-knext-type {dispute} {uncountable}) (new-statement {words} {consists of} {dispute}) (new-knext-is-a '({words} {uncountable}) '({difference} {uncountable})) (new-knext-is-a '({offer} {countable}) '({speech act} {countable})) (new-knext-is-a '({asking} {countable}) '({speech act} {countable})) (new-knext-is-a '({indirect request} {countable}) '({asking} {countable})) (new-knext-is-a '({invitation} {countable}) '({letter} {countable})) (new-knext-is-a '({invitation} {countable}) '({asking} {countable})) (new-knext-is-a '({bidding} {uncountable}) '({invitation} {uncountable})) (new-knext-is-a '({summons} {countable}) '({invitation} {countable})) (new-knext-is-a '({invite} {countable}) '({invitation} {countable})) (new-knext-is-a '({entreaty} {countable}) '({asking} {countable})) (new-knext-is-a '({appeal} {countable}) '({asking} {countable})) (new-knext-is-a '({courtship} {countable}) '({entreaty} {countable})) (new-knext-is-a '({courtship} {countable}) '({appeal} {countable})) (new-knext-type {courting} {uncountable}) (new-knext-type {entreaty} {uncountable}) (new-statement {courting} {consists of} {entreaty}) (new-knext-is-a '({courting} {uncountable}) '({appeal} {uncountable})) (new-knext-is-a '({suit} {countable}) '({entreaty} {countable})) (new-knext-is-a '({suit} {countable}) '({appeal} {countable})) (new-knext-is-a '({orison} {countable}) '({asking} {countable})) (new-knext-is-a '({benediction} {countable}) '({orison} {countable})) (new-knext-is-a '({blessing} {countable}) '({orison} {countable})) (new-knext-is-a '({call} {countable}) '({asking} {countable})) (new-knext-is-a '({billing} {countable}) '({asking} {countable})) (new-knext-is-a '({demand} {countable}) '({request} {countable})) (new-knext-type {insistence} {uncountable}) (new-knext-type {demand} {uncountable}) (new-statement {insistence} {consists of} {demand}) (new-knext-is-a '({questioning} {countable}) '({asking} {countable})) (new-knext-is-a '({inquiring} {uncountable}) '({asking} {uncountable})) (new-knext-is-a '({challenge} {countable}) '({questioning} {countable})) (new-knext-is-a '({challenge} {uncountable}) '({inquiring} {uncountable})) (new-knext-is-a '({question} {countable}) '({questioning} {countable})) (new-knext-is-a '({question} {uncountable}) '({inquiring} {uncountable})) (new-knext-is-a '({enquiry} {countable}) '({questioning} {countable})) (new-knext-is-a '({enquiry} {countable}) '({inquiring} {uncountable})) (new-knext-is-a '({interrogation} {countable}) '({questioning} {countable})) (new-knext-is-a '({interrogation} {uncountable}) '({inquiring} {uncountable})) (new-knext-is-a '({interrogatory} {countable}) '({questioning} {countable})) (new-knext-is-a '({interrogatory} {countable}) '({inquiring} {uncountable})) (new-knext-is-a '({deposition} {countable}) '({interrogation} {countable})) (new-knext-is-a '({deposition} {countable}) '({interrogatory} {countable})) (new-knext-is-a '({interview} {countable}) '({interrogation} {countable})) (new-knext-is-a '({interview} {countable}) '({interrogatory} {countable})) (new-knext-is-a '({examination} {countable}) '({communication} {countable})) (new-knext-is-a '({examination} {uncountable}) '({communicating} {uncountable})) (new-knext-is-a '({exam} {countable}) '({communication} {countable})) (new-knext-is-a '({exam} {countable}) '({communicating} {uncountable})) (new-knext-is-a '({final examination} {countable}) '({examination} {countable})) (new-knext-is-a '({final examination} {countable}) '({exam} {countable})) (new-knext-is-a '({oral} {countable}) '({examination} {countable})) (new-knext-is-a '({oral} {countable}) '({exam} {countable})) (new-knext-is-a '({oral exam} {countable}) '({examination} {countable})) (new-knext-is-a '({oral exam} {countable}) '({exam} {countable})) (new-knext-is-a '({reply} {countable}) '({speech act} {countable})) (new-knext-is-a '({response} {countable}) '({speech act} {countable})) (new-knext-is-a '({echo} {countable}) '({reply} {countable})) (new-knext-is-a '({echo} {countable}) '({response} {countable})) (new-knext-is-a '({answer} {countable}) '({reply} {countable})) (new-knext-is-a '({answer} {countable}) '({response} {countable})) (new-knext-is-a '({refutation} {countable}) '({answer} {countable})) (add-english-names (list {defense} {defence}) (list "defense" "defence")) (new-knext-is-a '({defense} {countable}) '({answer} {countable})) (new-knext-is-a '({rebuttal} {countable}) '({refutation} {countable})) (add-english-names (list {defense} {defence}) (list "defense" "defence")) (new-knext-is-a '({rebuttal} {countable}) '({defense} {countable})) (new-knext-is-a '({description} {countable}) '({speech act} {countable})) (new-knext-is-a '({characterization} {countable}) '({description} {countable})) (new-knext-is-a '({word picture} {countable}) '({description} {countable})) (new-knext-is-a '({label} {countable}) '({description} {countable})) (new-knext-is-a '({affirmation} {countable}) '({speech act} {countable})) (new-knext-is-a '({statement} {countable}) '({speech act} {countable})) (new-knext-is-a '({disaffirmation} {countable}) '({assertion} {countable})) (new-knext-is-a '({denial} {countable}) '({speech act} {countable})) (new-knext-is-a '({refusal} {countable}) '({denial} {countable})) (new-knext-is-a '({disavowal} {countable}) '({denial} {countable})) (new-knext-is-a '({disclaimer} {countable}) '({denial} {countable})) (new-knext-is-a '({retraction} {countable}) '({disavowal} {countable})) (new-knext-is-a '({retraction} {countable}) '({disclaimer} {countable})) (new-knext-is-a '({withdrawal} {countable}) '({retraction} {countable})) (new-knext-is-a '({backdown} {countable}) '({retraction} {countable})) (new-knext-is-a '({disownment} {countable}) '({repudiation} {countable})) (new-knext-is-a '({objection} {countable}) '({speech act} {countable})) (new-knext-is-a '({complaint} {countable}) '({objection} {countable})) (new-knext-is-a '({grievance} {countable}) '({complaint} {countable})) (new-knext-is-a '({grumble} {countable}) '({complaint} {countable})) (new-knext-is-a '({grumbling} {countable}) '({complaint} {countable})) (new-knext-is-a '({whimper} {countable}) '({complaint} {countable})) (new-knext-is-a '({whine} {countable}) '({complaint} {countable})) (new-knext-type {making known} {uncountable}) (new-knext-type {speech act} {uncountable}) (new-statement {making known} {consists of} {speech act}) (new-knext-is-a '({apprisal} {countable}) '({making known} {uncountable})) (new-knext-is-a '({notification} {uncountable}) '({making known} {uncountable})) (new-knext-is-a '({notice} {countable}) '({apprisal} {countable})) (new-knext-is-a '({notice} {countable}) '({notification} {countable})) (new-knext-is-a '({dismission} {countable}) '({notice} {countable})) (new-knext-is-a '({disclosure} {countable}) '({speech act} {countable})) (new-knext-type {revealing} {uncountable}) (new-knext-type {speech act} {uncountable}) (new-statement {revealing} {consists of} {speech act}) (new-knext-is-a '({divulgence} {countable}) '({disclosure} {countable})) (new-knext-is-a '({divulgence} {countable}) '({revealing} {uncountable})) (new-knext-is-a '({discovery} {countable}) '({disclosure} {countable})) (new-knext-is-a '({discovery} {uncountable}) '({revealing} {uncountable})) (new-knext-is-a '({giveaway} {countable}) '({disclosure} {countable})) (new-knext-is-a '({giveaway} {countable}) '({revealing} {uncountable})) (new-knext-is-a '({exposure} {countable}) '({disclosure} {countable})) (new-knext-is-a '({exposure} {uncountable}) '({revealing} {uncountable})) (new-knext-is-a '({expose} {countable}) '({exposure} {countable})) (new-knext-is-a '({unmasking} {countable}) '({exposure} {countable})) (new-knext-is-a '({admission} {countable}) '({acknowledgement} {countable})) (new-knext-is-a '({confession} {countable}) '({admission} {countable})) (new-knext-is-a '({concession} {countable}) '({agreement} {countable})) (new-knext-is-a '({introduction} {uncountable}) '({making known} {uncountable})) (new-knext-is-a '({intro} {countable}) '({making known} {uncountable})) (new-knext-is-a '({report} {uncountable}) '({making known} {uncountable})) (new-knext-is-a '({report} {countable}) '({document} {countable})) (new-knext-type {report} {countable}) (new-knext-type {papers} {countable}) (new-statement {papers} {consists of} {report}) (new-knext-is-a '({anecdote} {countable}) '({report} {countable})) (new-knext-is-a '({recital} {countable}) '({report} {countable})) (new-knext-is-a '({yarn} {countable}) '({report} {countable})) (new-knext-is-a '({narrative} {countable}) '({message} {countable})) (new-knext-is-a '({recital} {countable}) '({account} {countable})) (new-knext-is-a '({telling} {countable}) '({recital} {countable})) (new-knext-is-a '({telling} {countable}) '({yarn} {countable})) (new-knext-is-a '({recounting} {countable}) '({recital} {countable})) (new-knext-is-a '({recounting} {countable}) '({yarn} {countable})) (new-knext-is-a '({gossip} {countable}) '({report} {countable})) (new-knext-is-a '({scuttlebutt} {countable}) '({report} {countable})) (new-knext-is-a '({rumor} {countable}) '({gossip} {countable})) (new-knext-is-a '({rumor} {countable}) '({scuttlebutt} {countable})) (add-english-names (list {rumor} {rumour}) (list "rumor" "rumour")) (new-knext-is-a '({rumor} {countable}) '({gossip} {countable})) (add-english-names (list {rumor} {rumour}) (list "rumor" "rumour")) (new-knext-is-a '({hearsay} {uncountable}) '({gossip} {uncountable})) (new-knext-type {hearsay} {uncountable}) (new-knext-type {scuttlebutt} {uncountable}) (new-statement {hearsay} {consists of} {scuttlebutt}) (new-knext-is-a '({warning} {uncountable}) '({making known} {uncountable})) (new-knext-is-a '({alert} {countable}) '({warning} {countable})) (new-knext-is-a '({alerting} {uncountable}) '({warning} {uncountable})) (new-knext-is-a '({promise} {countable}) '({speech act} {countable})) (new-knext-is-a '({promise} {countable}) '({dedication} {countable})) (new-knext-is-a '({word} {countable}) '({promise} {countable})) (new-knext-is-a '({word of honor} {countable}) '({promise} {countable})) (new-knext-is-a '({assurance} {countable}) '({statement} {countable})) (new-knext-is-a '({assurance} {countable}) '({dedication} {countable})) (new-knext-is-a '({betrothal} {countable}) '({promise} {countable})) (new-knext-is-a '({troth} {countable}) '({promise} {countable})) (new-knext-type {thanks} {uncountable}) (new-knext-type {acknowledgement} {uncountable}) (new-statement {thanks} {consists of} {acknowledgement}) (new-knext-is-a '({naming} {countable}) '({speech act} {countable})) (new-knext-is-a '({indication} {countable}) '({naming} {countable})) (new-knext-is-a '({denotation} {countable}) '({naming} {countable})) (new-knext-is-a '({challenge} {countable}) '({speech act} {countable})) (new-knext-is-a '({dare} {countable}) '({challenge} {countable})) (new-knext-is-a '({daring} {uncountable}) '({challenge} {uncountable})) (new-knext-is-a '({explanation} {countable}) '({speech act} {countable})) (new-knext-is-a '({elucidation} {countable}) '({explanation} {countable})) (new-knext-is-a '({explication} {countable}) '({explanation} {countable})) (new-knext-is-a '({recitation} {countable}) '({matter} {countable})) (new-knext-is-a '({speech} {countable}) '({speech act} {countable})) (new-knext-is-a '({lecture} {countable}) '({speech} {countable})) (new-knext-is-a '({talk} {countable}) '({speech} {countable})) (new-knext-is-a '({sermon} {countable}) '({speech} {countable})) (new-knext-is-a '({preaching} {countable}) '({speech} {countable})) (new-knext-is-a '({persuasion} {countable}) '({communication} {countable})) (new-knext-is-a '({persuasion} {uncountable}) '({communicating} {uncountable})) (new-knext-is-a '({exhortation} {countable}) '({persuasion} {countable})) (new-knext-is-a '({suggestion} {countable}) '({persuasion} {countable})) (new-knext-is-a '({prompting} {uncountable}) '({persuasion} {uncountable})) (new-knext-is-a '({weapon} {countable}) '({persuasion} {countable})) (new-knext-is-a '({artillery} {countable}) '({persuasion} {countable})) (new-knext-is-a '({promotion} {countable}) '({message} {countable})) (new-knext-type {publicity} {uncountable}) (new-knext-type {message} {uncountable}) (new-statement {publicity} {consists of} {message}) (new-knext-type {sales talk} {uncountable}) (new-knext-type {promotion} {uncountable}) (new-statement {sales talk} {consists of} {promotion}) (new-knext-is-a '({sales talk} {uncountable}) '({publicity} {uncountable})) (new-knext-is-a '({sales pitch} {countable}) '({promotion} {countable})) (new-knext-is-a '({sales pitch} {countable}) '({publicity} {uncountable})) (new-knext-is-a '({ad} {countable}) '({promotion} {countable})) (new-knext-is-a '({ad} {countable}) '({publicity} {uncountable})) (new-knext-is-a '({circular} {countable}) '({ad} {countable})) (new-knext-is-a '({relinquishment} {countable}) '({renunciation} {countable})) (new-knext-is-a '({relinquishment} {countable}) '({renouncement} {countable})) (new-knext-is-a '({relinquishing} {uncountable}) '({renunciation} {uncountable})) (new-knext-type {relinquishing} {uncountable}) (new-knext-type {renouncement} {uncountable}) (new-statement {relinquishing} {consists of} {renouncement}) (new-knext-is-a '({reference point} {countable}) '({indicator} {countable})) (new-knext-is-a '({reference} {countable}) '({publication} {countable})) (new-knext-is-a '({standard} {countable}) '({system of measurement} {countable})) (new-knext-is-a '({target} {countable}) '({reference point} {countable})) (new-knext-is-a '({indicator} {countable}) '({signal} {countable})) (new-knext-is-a '({staff} {countable}) '({symbol} {countable})) (new-knext-is-a '({marking} {countable}) '({symbol} {countable})) (new-knext-is-a '({label} {countable}) '({marking} {countable})) (new-knext-is-a '({gummed label} {countable}) '({label} {countable})) (new-knext-is-a '({tag} {countable}) '({label} {countable})) (new-knext-is-a '({nod} {countable}) '({motion} {countable})) (new-knext-is-a '({bow} {countable}) '({motion} {countable})) (new-knext-type {bowing} {uncountable}) (new-knext-type {motion} {uncountable}) (new-statement {bowing} {consists of} {motion}) (new-knext-is-a '({obeisance} {countable}) '({motion} {countable})) (new-knext-is-a '({touch} {countable}) '({communication} {countable})) (new-knext-is-a '({touch} {uncountable}) '({communicating} {uncountable})) (new-knext-is-a '({occurrence} {countable}) '({event} {countable})) (new-knext-is-a '({experience} {countable}) '({occurrence} {countable})) (new-knext-is-a '({augury} {countable}) '({experience} {countable})) (new-knext-is-a '({foretoken} {countable}) '({experience} {countable})) (new-knext-is-a '({social event} {countable}) '({event} {countable})) (new-knext-is-a '({miracle} {countable}) '({event} {countable})) (new-knext-is-a '({trouble} {countable}) '({occurrence} {countable})) (new-knext-is-a '({treat} {countable}) '({occurrence} {countable})) (new-knext-is-a '({wonder} {countable}) '({occurrence} {countable})) (new-knext-is-a '({marvel} {countable}) '({occurrence} {countable})) (new-knext-is-a '({thing} {countable}) '({occurrence} {countable})) (new-knext-is-a '({episode} {countable}) '({occurrence} {countable})) (new-knext-is-a '({drama} {countable}) '({episode} {countable})) (new-knext-is-a '({dramatic event} {countable}) '({episode} {countable})) (new-knext-is-a '({eventuality} {countable}) '({occurrence} {countable})) (new-knext-is-a '({contingency} {countable}) '({occurrence} {countable})) (new-knext-is-a '({beginning} {countable}) '({occurrence} {countable})) (new-knext-is-a '({ending} {countable}) '({occurrence} {countable})) (new-knext-is-a '({end} {countable}) '({ending} {countable})) (new-knext-is-a '({last} {countable}) '({ending} {countable})) (new-knext-type {passing} {uncountable}) (new-knext-type {end} {uncountable}) (new-statement {passing} {consists of} {end}) (new-knext-is-a '({passing} {uncountable}) '({last} {uncountable})) (new-knext-is-a '({final result} {countable}) '({ending} {countable})) (new-knext-is-a '({termination} {countable}) '({ending} {countable})) (new-knext-is-a '({deal} {countable}) '({final result} {countable})) (new-knext-is-a '({deal} {countable}) '({termination} {countable})) (new-knext-is-a '({decision} {countable}) '({final result} {countable})) (new-knext-is-a '({decision} {countable}) '({termination} {countable})) (new-knext-is-a '({decision} {countable}) '({final result} {countable})) (new-knext-is-a '({decision} {countable}) '({termination} {countable})) (new-knext-is-a '({consequence} {countable}) '({final result} {countable})) (new-knext-is-a '({consequence} {countable}) '({termination} {countable})) (new-knext-is-a '({offspring} {countable}) '({consequence} {countable})) (new-knext-is-a '({periodic event} {countable}) '({occurrence} {countable})) (new-knext-is-a '({change} {countable}) '({occurrence} {countable})) (new-knext-is-a '({surprise} {countable}) '({change} {countable})) (new-knext-is-a '({blow} {countable}) '({surprise} {countable})) (new-knext-is-a '({fortuity} {countable}) '({occurrence} {countable})) (new-knext-is-a '({chance event} {countable}) '({occurrence} {countable})) (new-knext-is-a '({accident} {countable}) '({mishap} {countable})) (new-knext-is-a '({accident} {countable}) '({misadventure} {countable})) (new-knext-is-a '({crash} {countable}) '({accident} {countable})) (new-knext-is-a '({wreck} {countable}) '({accident} {countable})) (new-knext-is-a '({collision} {countable}) '({impinging} {countable})) (new-knext-is-a '({collision} {countable}) '({striking} {countable})) (new-knext-is-a '({fire} {countable}) '({occurrence} {countable})) (new-knext-is-a '({misfortune} {countable}) '({trouble} {countable})) (new-knext-is-a '({bad luck} {uncountable}) '({trouble} {uncountable})) (new-knext-is-a '({pity} {countable}) '({misfortune} {countable})) (new-knext-is-a '({pity} {uncountable}) '({bad luck} {uncountable})) (new-knext-is-a '({affliction} {countable}) '({trouble} {countable})) (new-knext-is-a '({scandal} {countable}) '({trouble} {countable})) (new-knext-is-a '({incident} {countable}) '({occurrence} {countable})) (new-knext-is-a '({discharge} {countable}) '({occurrence} {countable})) (new-knext-is-a '({electrical discharge} {countable}) '({discharge} {countable})) (new-knext-is-a '({nerve impulse} {countable}) '({electrical discharge} {countable})) (new-knext-is-a '({impulse} {countable}) '({electrical discharge} {countable})) (new-knext-is-a '({explosion} {countable}) '({discharge} {countable})) (new-knext-is-a '({detonation} {countable}) '({discharge} {countable})) (new-knext-is-a '({case} {countable}) '({occurrence} {countable})) (new-knext-is-a '({instance} {countable}) '({occurrence} {countable})) (new-knext-is-a '({humiliation} {countable}) '({case} {countable})) (new-knext-is-a '({humiliation} {countable}) '({instance} {countable})) (new-knext-is-a '({time} {countable}) '({case} {countable})) (new-knext-is-a '({time} {countable}) '({instance} {countable})) (new-knext-is-a '({clip} {countable}) '({case} {countable})) (new-knext-is-a '({clip} {countable}) '({instance} {countable})) (new-knext-is-a '({motion} {countable}) '({occurrence} {countable})) (new-knext-is-a '({approach} {countable}) '({motion} {countable})) (new-knext-is-a '({approaching} {countable}) '({motion} {countable})) (new-knext-is-a '({passing} {countable}) '({motion} {countable})) (new-knext-is-a '({passage} {countable}) '({motion} {countable})) (new-knext-is-a '({change of location} {uncountable}) '({motion} {uncountable})) (new-knext-is-a '({travel} {countable}) '({motion} {countable})) (new-knext-is-a '({ascension} {uncountable}) '({change of location} {uncountable})) (new-knext-is-a '({ascension} {countable}) '({travel} {countable})) (new-knext-is-a '({creep} {uncountable}) '({change of location} {uncountable})) (new-knext-is-a '({creep} {countable}) '({travel} {countable})) (new-knext-type {shrinking} {uncountable}) (new-knext-type {decrease} {uncountable}) (new-statement {shrinking} {consists of} {decrease}) (new-knext-is-a '({shrinkage} {countable}) '({decrease} {countable})) (new-knext-is-a '({compression} {uncountable}) '({shrinking} {uncountable})) (new-knext-is-a '({compression} {countable}) '({shrinkage} {countable})) (new-knext-is-a '({injury} {countable}) '({accident} {countable})) (new-knext-is-a '({accidental injury} {countable}) '({accident} {countable})) (new-knext-is-a '({severance} {countable}) '({separation} {countable})) (new-knext-is-a '({severance} {countable}) '({breakup} {countable})) (new-knext-is-a '({falling out} {countable}) '({separation} {countable})) (new-knext-is-a '({falling out} {countable}) '({breakup} {countable})) (new-knext-is-a '({hap} {countable}) '({fortuity} {countable})) (new-knext-is-a '({hap} {countable}) '({chance event} {countable})) (new-knext-is-a '({mishap} {countable}) '({misfortune} {countable})) (new-knext-is-a '({mishap} {countable}) '({bad luck} {uncountable})) (new-knext-is-a '({misadventure} {countable}) '({misfortune} {countable})) (new-knext-is-a '({misadventure} {uncountable}) '({bad luck} {uncountable})) (new-knext-is-a '({calamity} {countable}) '({misfortune} {countable})) (new-knext-is-a '({calamity} {countable}) '({bad luck} {uncountable})) (new-knext-is-a '({tragedy} {countable}) '({misfortune} {countable})) (new-knext-is-a '({tragedy} {uncountable}) '({bad luck} {uncountable})) (new-knext-is-a '({act of god} {countable}) '({tragedy} {countable})) (new-knext-is-a '({force majeure} {countable}) '({calamity} {countable})) (new-knext-is-a '({force majeure} {countable}) '({tragedy} {countable})) (new-knext-is-a '({coincidence} {countable}) '({fortuity} {countable})) (new-knext-is-a '({coincidence} {countable}) '({chance event} {countable})) (new-knext-is-a '({failure} {countable}) '({occurrence} {countable})) (new-knext-is-a '({downfall} {countable}) '({failure} {countable})) (new-knext-is-a '({ruination} {countable}) '({failure} {countable})) (new-knext-is-a '({success} {countable}) '({occurrence} {countable})) (new-knext-is-a '({miscarriage} {countable}) '({failure} {countable})) (new-knext-is-a '({abortion} {countable}) '({failure} {countable})) (new-knext-is-a '({nativity} {countable}) '({change} {countable})) (new-knext-is-a '({nascency} {countable}) '({change} {countable})) (new-knext-is-a '({appearance} {countable}) '({occurrence} {countable})) (new-knext-is-a '({materialization} {countable}) '({appearance} {countable})) (new-knext-is-a '({manifestation} {countable}) '({appearance} {countable})) (new-knext-is-a '({origination} {countable}) '({beginning} {countable})) (new-knext-is-a '({inception} {countable}) '({beginning} {countable})) (new-knext-is-a '({start} {countable}) '({beginning} {countable})) (new-knext-is-a '({dawn} {countable}) '({start} {countable})) (new-knext-is-a '({morning} {countable}) '({start} {countable})) (new-knext-is-a '({cause} {countable}) '({origination} {countable})) (new-knext-is-a '({cause} {countable}) '({inception} {countable})) (new-knext-is-a '({factor} {countable}) '({cause} {countable})) (new-knext-is-a '({parameter} {countable}) '({factor} {countable})) (new-knext-is-a '({creation} {countable}) '({beginning} {countable})) (new-knext-is-a '({destiny} {countable}) '({occurrence} {countable})) (new-knext-is-a '({annihilation} {countable}) '({demolition} {countable})) (new-knext-is-a '({annihilation} {countable}) '({wipeout} {countable})) (new-knext-is-a '({separation} {countable}) '({change} {countable})) (new-knext-is-a '({breakup} {countable}) '({change} {countable})) (new-knext-is-a '({dispersion} {countable}) '({spread} {countable})) (new-knext-is-a '({dissipation} {countable}) '({dispersion} {countable})) (new-knext-is-a '({extermination} {countable}) '({annihilation} {countable})) (new-knext-is-a '({passing} {countable}) '({death} {countable})) (new-knext-is-a '({passing} {countable}) '({decease} {countable})) (new-knext-is-a '({exit} {countable}) '({death} {countable})) (new-knext-is-a '({exit} {countable}) '({decease} {countable})) (new-knext-is-a '({demolition} {countable}) '({ending} {countable})) (new-knext-is-a '({wipeout} {countable}) '({ending} {countable})) (new-knext-is-a '({ruination} {countable}) '({demolition} {countable})) (new-knext-is-a '({ruination} {countable}) '({wipeout} {countable})) (new-knext-is-a '({hardship} {countable}) '({misfortune} {countable})) (new-knext-is-a '({hardship} {uncountable}) '({bad luck} {uncountable})) (new-knext-is-a '({variation} {countable}) '({change} {countable})) (new-knext-is-a '({fluctuation} {countable}) '({change} {countable})) (new-knext-is-a '({mesh} {countable}) '({impinging} {countable})) (new-knext-is-a '({mesh} {countable}) '({striking} {countable})) (new-knext-type {meshing} {uncountable}) (new-knext-type {impinging} {uncountable}) (new-statement {meshing} {consists of} {impinging}) (new-knext-is-a '({meshing} {uncountable}) '({striking} {uncountable})) (new-knext-is-a '({impact} {countable}) '({impinging} {countable})) (new-knext-is-a '({impact} {countable}) '({striking} {countable})) (new-knext-is-a '({blow} {countable}) '({impact} {countable})) (new-knext-is-a '({impinging} {countable}) '({occurrence} {countable})) (new-knext-is-a '({striking} {countable}) '({occurrence} {countable})) (new-knext-is-a '({repeat} {countable}) '({periodic event} {countable})) (new-knext-is-a '({cycle} {countable}) '({repeat} {countable})) (new-knext-is-a '({recurrence} {countable}) '({repeat} {countable})) (new-knext-is-a '({return} {countable}) '({repeat} {countable})) (new-knext-is-a '({sunrise} {countable}) '({periodic event} {countable})) (new-knext-is-a '({swash} {countable}) '({wave} {countable})) (new-knext-is-a '({ripple} {countable}) '({wave} {countable})) (new-knext-is-a '({riffle} {countable}) '({wave} {countable})) (new-knext-is-a '({wave} {countable}) '({motion} {countable})) (new-knext-is-a '({lift} {countable}) '({wave} {countable})) (new-knext-is-a '({rolling wave} {countable}) '({wave} {countable})) (new-knext-is-a '({wring} {countable}) '({motion} {countable})) (new-knext-is-a '({turning} {countable}) '({motion} {countable})) (new-knext-is-a '({turn} {countable}) '({motion} {countable})) (new-knext-is-a '({wrench} {countable}) '({motion} {countable})) (new-knext-is-a '({undulation} {countable}) '({motion} {countable})) (new-knext-is-a '({wave} {countable}) '({motion} {countable})) (new-knext-is-a '({death} {countable}) '({change} {countable})) (new-knext-is-a '({decease} {countable}) '({change} {countable})) (new-knext-is-a '({decrease} {countable}) '({change} {countable})) (new-knext-is-a '({increase} {countable}) '({change} {countable})) (new-knext-is-a '({easing} {uncountable}) '({change} {uncountable})) (new-knext-is-a '({relief} {countable}) '({change} {countable})) (new-knext-is-a '({improvement} {countable}) '({transformation} {countable})) (new-knext-is-a '({advance} {countable}) '({transformation} {countable})) (new-knext-is-a '({refinement} {countable}) '({improvement} {countable})) (new-knext-is-a '({refinement} {countable}) '({advance} {countable})) (new-knext-is-a '({elaboration} {countable}) '({improvement} {countable})) (new-knext-is-a '({elaboration} {countable}) '({advance} {countable})) (new-knext-is-a '({deformation} {countable}) '({change} {countable})) (new-knext-is-a '({transition} {countable}) '({change} {countable})) (new-knext-is-a '({leap} {countable}) '({transition} {countable})) (new-knext-is-a '({jump} {countable}) '({transition} {countable})) (new-knext-is-a '({transformation} {countable}) '({change} {countable})) (new-knext-is-a '({contagion} {countable}) '({incident} {countable})) (new-knext-is-a '({cessation} {countable}) '({stop} {countable})) (new-knext-is-a '({drop} {countable}) '({descent} {countable})) (new-knext-is-a '({descent} {uncountable}) '({change of location} {uncountable})) (new-knext-is-a '({descent} {countable}) '({travel} {countable})) (new-knext-is-a '({sinking} {countable}) '({descent} {countable})) (new-knext-is-a '({bust} {countable}) '({failure} {countable})) (new-knext-is-a '({stop} {countable}) '({ending} {countable})) (new-knext-is-a '({deviation} {countable}) '({variation} {countable})) (new-knext-is-a '({deviation} {countable}) '({fluctuation} {countable})) (new-knext-is-a '({departure} {countable}) '({variation} {countable})) (new-knext-is-a '({departure} {countable}) '({fluctuation} {countable})) (new-knext-is-a '({dislocation} {countable}) '({break} {countable})) (new-knext-is-a '({break} {countable}) '({separation} {countable})) (new-knext-is-a '({break} {countable}) '({breakup} {countable})) (new-knext-is-a '({snap} {countable}) '({break} {countable})) (new-knext-is-a '({break} {countable}) '({occurrence} {countable})) (new-knext-is-a '({reprieve} {countable}) '({break} {countable})) (new-knext-is-a '({hiatus} {countable}) '({break} {countable})) (new-knext-is-a '({adjustment} {countable}) '({improvement} {countable})) (new-knext-is-a '({adjustment} {countable}) '({advance} {countable})) (new-knext-is-a '({fall} {countable}) '({change of location} {uncountable})) (new-knext-is-a '({fall} {countable}) '({travel} {countable})) (new-knext-is-a '({climb} {countable}) '({rising} {countable})) (new-knext-is-a '({climb} {countable}) '({ascension} {countable})) (new-knext-is-a '({climbing} {countable}) '({rising} {countable})) (new-knext-is-a '({climbing} {countable}) '({ascension} {countable})) (new-knext-is-a '({elevation} {countable}) '({rising} {countable})) (new-knext-is-a '({elevation} {countable}) '({ascension} {countable})) (new-knext-is-a '({sound} {countable}) '({occurrence} {countable})) (new-knext-is-a '({headway} {countable}) '({progression} {countable})) (new-knext-is-a '({headway} {countable}) '({advance} {countable})) (new-knext-is-a '({trial} {countable}) '({affliction} {countable})) (new-knext-is-a '({tribulation} {countable}) '({affliction} {countable})) (new-knext-is-a '({mix} {uncountable}) '({combining} {uncountable})) (new-knext-is-a '({conglomeration} {uncountable}) '({combining} {uncountable})) (new-knext-is-a '({conglobation} {countable}) '({combining} {uncountable})) (new-knext-is-a '({blend} {countable}) '({mix} {countable})) (new-knext-is-a '({takeoff} {countable}) '({rising} {countable})) (new-knext-is-a '({takeoff} {countable}) '({ascension} {countable})) (new-knext-is-a '({bang} {countable}) '({noise} {countable})) (new-knext-is-a '({clap} {countable}) '({noise} {countable})) (new-knext-is-a '({bark} {countable}) '({cry} {countable})) (new-knext-is-a '({bark} {countable}) '({noise} {countable})) (new-knext-is-a '({beat} {countable}) '({sound} {countable})) (new-knext-is-a '({beep} {countable}) '({sound} {countable})) (new-knext-is-a '({bell} {countable}) '({sound} {countable})) (new-knext-is-a '({blare} {countable}) '({noise} {countable})) (new-knext-is-a '({din} {countable}) '({noise} {countable})) (new-knext-is-a '({boom} {countable}) '({noise} {countable})) (new-knext-is-a '({thunder} {uncountable}) '({noise} {uncountable})) (new-knext-is-a '({click} {countable}) '({sound} {countable})) (new-knext-is-a '({chirp} {countable}) '({sound} {countable})) (new-knext-is-a '({creak} {countable}) '({noise} {countable})) (new-knext-is-a '({crunch} {countable}) '({noise} {countable})) (new-knext-is-a '({cry} {countable}) '({sound} {countable})) (new-knext-is-a '({grinding} {countable}) '({noise} {countable})) (new-knext-is-a '({gurgle} {countable}) '({sound} {countable})) (new-knext-is-a '({howl} {countable}) '({noise} {countable})) (new-knext-is-a '({humming} {countable}) '({noise} {countable})) (new-knext-is-a '({knock} {countable}) '({sound} {countable})) (new-knext-is-a '({mutter} {countable}) '({sound} {countable})) (new-knext-is-a '({muttering} {countable}) '({sound} {countable})) (new-knext-is-a '({neigh} {countable}) '({cry} {countable})) (new-knext-is-a '({noise} {countable}) '({sound} {countable})) (new-knext-is-a '({paradiddle} {countable}) '({sound} {countable})) (new-knext-is-a '({pat} {countable}) '({sound} {countable})) (new-knext-is-a '({tap} {countable}) '({sound} {countable})) (new-knext-is-a '({peal} {countable}) '({sound} {countable})) (new-knext-is-a '({ping} {countable}) '({sound} {countable})) (new-knext-is-a '({racket} {countable}) '({noise} {countable})) (new-knext-is-a '({rattle} {countable}) '({noise} {countable})) (new-knext-is-a '({rattling} {countable}) '({noise} {countable})) (new-knext-is-a '({ringing} {countable}) '({sound} {countable})) (new-knext-is-a '({rustle} {countable}) '({noise} {countable})) (new-knext-is-a '({screech} {countable}) '({noise} {countable})) (new-knext-is-a '({shrieking} {countable}) '({noise} {countable})) (new-knext-is-a '({shrilling} {uncountable}) '({noise} {uncountable})) (new-knext-is-a '({slam} {countable}) '({noise} {countable})) (new-knext-is-a '({song} {countable}) '({sound} {countable})) (new-knext-is-a '({splash} {countable}) '({noise} {countable})) (new-knext-is-a '({squeak} {countable}) '({noise} {countable})) (new-knext-is-a '({tapping} {countable}) '({sound} {countable})) (new-knext-is-a '({tick} {countable}) '({sound} {countable})) (new-knext-is-a '({ticking} {countable}) '({sound} {countable})) (new-knext-is-a '({ticktock} {countable}) '({tick} {countable})) (new-knext-is-a '({ticktock} {countable}) '({ticking} {countable})) (new-knext-is-a '({ting} {countable}) '({sound} {countable})) (new-knext-is-a '({toot} {countable}) '({sound} {countable})) (new-knext-is-a '({whir} {countable}) '({sound} {countable})) (new-knext-is-a '({whirr} {countable}) '({sound} {countable})) (new-knext-is-a '({whistle} {countable}) '({sound} {countable})) (new-knext-is-a '({whiz} {countable}) '({sound} {countable})) (new-knext-is-a '({heartbeat} {countable}) '({periodic event} {countable})) (new-knext-is-a '({beat} {countable}) '({periodic event} {countable})) (new-knext-is-a '({throbbing} {countable}) '({heartbeat} {countable})) (new-knext-is-a '({throbbing} {countable}) '({beat} {countable})) (new-knext-is-a '({pounding} {countable}) '({heartbeat} {countable})) (new-knext-is-a '({pounding} {countable}) '({beat} {countable})) (new-knext-is-a '({tide} {countable}) '({periodic event} {countable})) (new-knext-is-a '({slide} {countable}) '({descent} {countable})) (new-knext-is-a '({flow} {uncountable}) '({change of location} {uncountable})) (new-knext-is-a '({flow} {countable}) '({travel} {countable})) (new-knext-is-a '({outpouring} {countable}) '({flow} {countable})) (new-knext-is-a '({blast} {countable}) '({explosion} {countable})) (new-knext-is-a '({blast} {countable}) '({detonation} {countable})) (new-knext-type {fragmentation} {uncountable}) (new-knext-type {explosion} {uncountable}) (new-statement {fragmentation} {consists of} {explosion}) (new-knext-is-a '({fragmentation} {uncountable}) '({detonation} {uncountable})) (new-knext-is-a '({touch} {countable}) '({impinging} {countable})) (new-knext-is-a '({touch} {countable}) '({striking} {countable})) (new-knext-is-a '({rap} {countable}) '({blow} {countable})) (new-knext-is-a '({tap} {countable}) '({blow} {countable})) (new-knext-is-a '({bash} {countable}) '({blow} {countable})) (new-knext-is-a '({smash} {countable}) '({blow} {countable})) (new-knext-is-a '({reversal} {countable}) '({turning} {countable})) (new-knext-is-a '({reversal} {countable}) '({turn} {countable})) (new-knext-is-a '({turn around} {countable}) '({turning} {countable})) (new-knext-is-a '({turn around} {countable}) '({turn} {countable})) (new-knext-is-a '({brush} {countable}) '({touch} {countable})) (new-knext-is-a '({light touch} {countable}) '({touch} {countable})) (new-knext-is-a '({stroke} {countable}) '({touch} {countable})) (new-knext-is-a '({concentration} {countable}) '({increase} {countable})) (new-knext-is-a '({jump} {countable}) '({increase} {countable})) (new-knext-is-a '({leap} {countable}) '({increase} {countable})) (new-knext-type {convergence} {uncountable}) (new-knext-type {occurrence} {uncountable}) (new-statement {convergence} {consists of} {occurrence}) (new-knext-is-a '({encounter} {countable}) '({convergence} {uncountable})) (new-knext-is-a '({conversion} {countable}) '({transformation} {countable})) (new-knext-is-a '({juncture} {countable}) '({occurrence} {countable})) (new-knext-is-a '({occasion} {countable}) '({occurrence} {countable})) (new-knext-is-a '({emergency} {countable}) '({crisis} {countable})) (new-knext-is-a '({crisis} {countable}) '({juncture} {countable})) (new-knext-is-a '({crisis} {countable}) '({occasion} {countable})) (new-knext-is-a '({turning point} {countable}) '({juncture} {countable})) (new-knext-is-a '({turning point} {countable}) '({occasion} {countable})) (new-knext-is-a '({damage} {countable}) '({change} {countable})) (new-knext-is-a '({pulsation} {countable}) '({wave} {countable})) (new-knext-type {pulsing} {uncountable}) (new-knext-type {wave} {uncountable}) (new-statement {pulsing} {consists of} {wave}) (new-knext-is-a '({impulse} {countable}) '({wave} {countable})) (new-knext-is-a '({equipment failure} {countable}) '({failure} {countable})) (new-knext-is-a '({mutation} {countable}) '({change} {countable})) (new-knext-is-a '({genetic mutation} {countable}) '({change} {countable})) (new-knext-is-a '({drip} {countable}) '({flow} {countable})) (new-knext-is-a '({dribble} {countable}) '({flow} {countable})) (new-knext-is-a '({outbreak} {countable}) '({occurrence} {countable})) (new-knext-is-a '({irruption} {countable}) '({occurrence} {countable})) (new-knext-is-a '({spurt} {countable}) '({outpouring} {countable})) (new-knext-is-a '({volcanic eruption} {countable}) '({discharge} {countable})) (new-knext-is-a '({fertilization} {countable}) '({creation} {countable})) (add-english-names (list {fertilization} {fertilisation} {fertilization} {fertilisation}) (list "fertilization" "fertilisation" "fertilization" "fertilisation")) (new-knext-is-a '({flap} {countable}) '({wave} {countable})) (new-knext-is-a '({flapping} {countable}) '({wave} {countable})) (new-knext-is-a '({rotation} {countable}) '({turning} {countable})) (new-knext-is-a '({rotation} {countable}) '({turn} {countable})) (new-knext-is-a '({gyration} {countable}) '({turning} {countable})) (new-knext-is-a '({gyration} {countable}) '({turn} {countable})) (new-knext-is-a '({axial rotation} {countable}) '({rotation} {countable})) (new-knext-is-a '({axial rotation} {countable}) '({gyration} {countable})) (new-knext-is-a '({ladder} {countable}) '({damage} {countable})) (new-knext-is-a '({ravel} {countable}) '({damage} {countable})) (new-knext-is-a '({substitution} {countable}) '({variation} {countable})) (new-knext-is-a '({substitution} {countable}) '({fluctuation} {countable})) (new-knext-is-a '({switch} {countable}) '({variation} {countable})) (new-knext-is-a '({switch} {countable}) '({fluctuation} {countable})) (new-knext-is-a '({progression} {uncountable}) '({change of location} {uncountable})) (new-knext-is-a '({progression} {countable}) '({travel} {countable})) (new-knext-is-a '({advance} {countable}) '({change of location} {uncountable})) (new-knext-is-a '({advance} {countable}) '({travel} {countable})) (new-knext-is-a '({rising} {countable}) '({change of location} {uncountable})) (new-knext-is-a '({rising} {countable}) '({travel} {countable})) (new-knext-is-a '({ascension} {uncountable}) '({change of location} {uncountable})) (new-knext-is-a '({ascension} {countable}) '({travel} {countable})) (new-knext-is-a '({spread} {uncountable}) '({change of location} {uncountable})) (new-knext-is-a '({spread} {countable}) '({travel} {countable})) (new-knext-is-a '({translation} {uncountable}) '({change of location} {uncountable})) (new-knext-is-a '({translation} {countable}) '({travel} {countable})) (new-knext-is-a '({social occasion} {countable}) '({social event} {countable})) (new-knext-is-a '({party} {countable}) '({social occasion} {countable})) (new-knext-is-a '({do} {countable}) '({party} {countable})) (new-knext-is-a '({dance} {countable}) '({party} {countable})) (new-knext-is-a '({fete} {countable}) '({party} {countable})) (new-knext-is-a '({celebration} {countable}) '({social occasion} {countable})) (new-knext-is-a '({ceremony} {countable}) '({social occasion} {countable})) (new-knext-is-a '({funeral} {countable}) '({ceremony} {countable})) (new-knext-is-a '({burial} {countable}) '({funeral} {countable})) (new-knext-is-a '({wedding} {countable}) '({ceremony} {countable})) (new-knext-type {dedication} {uncountable}) (new-knext-type {ceremony} {uncountable}) (new-statement {dedication} {consists of} {ceremony}) (new-knext-is-a '({contest} {countable}) '({social event} {countable})) (new-knext-is-a '({race} {countable}) '({contest} {countable})) (new-knext-is-a '({footrace} {countable}) '({race} {countable})) (new-knext-is-a '({marathon} {countable}) '({footrace} {countable})) (new-knext-is-a '({horse race} {countable}) '({race} {countable})) (new-knext-is-a '({relay race} {countable}) '({race} {countable})) (new-knext-is-a '({tournament} {countable}) '({contest} {countable})) (new-knext-is-a '({match} {countable}) '({contest} {countable})) (new-knext-is-a '({race} {countable}) '({contest} {countable})) (new-knext-is-a '({political campaign} {countable}) '({race} {countable})) (new-knext-is-a '({victory} {countable}) '({ending} {countable})) (new-knext-is-a '({triumph} {countable}) '({ending} {countable})) (new-knext-is-a '({victory} {countable}) '({success} {countable})) (new-knext-is-a '({triumph} {countable}) '({success} {countable})) (new-knext-type {victory} {countable}) (new-knext-indv {independence} {victory}) (new-knext-type {triumph} {countable}) (new-knext-indv {independence} {triumph}) (new-knext-is-a '({defeat} {countable}) '({failure} {countable})) (new-knext-is-a '({licking} {countable}) '({failure} {countable})) (new-knext-is-a '({defeat} {countable}) '({ending} {countable})) (new-knext-is-a '({licking} {countable}) '({ending} {countable})) (new-knext-is-a '({reversal} {countable}) '({occurrence} {countable})) (new-knext-is-a '({setback} {countable}) '({occurrence} {countable})) (new-knext-is-a '({crash} {countable}) '({occurrence} {countable})) (new-knext-is-a '({affect} {uncountable}) '({feeling} {countable})) (new-knext-is-a '({emotion} {countable}) '({feeling} {countable})) (new-knext-is-a '({passion} {countable}) '({feeling} {countable})) (new-knext-type {fervor} {uncountable}) (new-knext-type {passion} {uncountable}) (new-statement {fervor} {consists of} {passion}) (new-knext-is-a '({sentiment} {countable}) '({feeling} {countable})) (new-knext-is-a '({apathy} {uncountable}) '({feeling} {countable})) (new-knext-is-a '({desire} {countable}) '({feeling} {countable})) (new-knext-is-a '({ambition} {countable}) '({desire} {countable})) (new-knext-is-a '({craving} {countable}) '({desire} {countable})) (new-knext-is-a '({appetite} {countable}) '({craving} {countable})) (new-knext-is-a '({wish} {countable}) '({desire} {countable})) (new-knext-type {wishing} {uncountable}) (new-knext-type {desire} {uncountable}) (new-statement {wishing} {consists of} {desire}) (new-knext-is-a '({longing} {countable}) '({desire} {countable})) (new-knext-type {hungriness} {uncountable}) (new-knext-type {desire} {uncountable}) (new-statement {hungriness} {consists of} {desire}) (new-knext-is-a '({hankering} {countable}) '({longing} {countable})) (new-knext-is-a '({hankering} {countable}) '({hungriness} {uncountable})) (new-knext-is-a '({pining} {countable}) '({longing} {countable})) (new-knext-is-a '({pining} {countable}) '({hungriness} {uncountable})) (new-knext-type {nostalgia} {uncountable}) (new-knext-type {longing} {uncountable}) (new-statement {nostalgia} {consists of} {longing}) (new-knext-is-a '({nostalgia} {uncountable}) '({hungriness} {uncountable})) (new-knext-is-a '({sexual urge} {countable}) '({feeling} {countable})) (new-knext-is-a '({sexual desire} {countable}) '({desire} {countable})) (new-knext-type {concupiscence} {uncountable}) (new-knext-type {desire} {uncountable}) (new-statement {concupiscence} {consists of} {desire}) (new-knext-type {sexual love} {uncountable}) (new-knext-type {sexual desire} {uncountable}) (new-statement {sexual love} {consists of} {sexual desire}) (new-knext-is-a '({sexual love} {uncountable}) '({concupiscence} {uncountable})) (new-knext-is-a '({erotic love} {countable}) '({sexual desire} {countable})) (new-knext-is-a '({erotic love} {countable}) '({concupiscence} {uncountable})) (new-knext-type {lecherousness} {uncountable}) (new-knext-type {sexual desire} {uncountable}) (new-statement {lecherousness} {consists of} {sexual desire}) (new-knext-is-a '({lecherousness} {uncountable}) '({concupiscence} {uncountable})) (new-knext-is-a '({urge} {countable}) '({desire} {countable})) (new-knext-is-a '({caprice} {countable}) '({desire} {countable})) (new-knext-is-a '({pleasure} {uncountable}) '({feeling} {countable})) (new-knext-is-a '({pleasance} {countable}) '({feeling} {countable})) (new-knext-is-a '({delight} {countable}) '({pleasure} {uncountable})) (new-knext-is-a '({delight} {countable}) '({pleasance} {countable})) (new-knext-is-a '({delectation} {uncountable}) '({pleasure} {uncountable})) (new-knext-type {delectation} {uncountable}) (new-knext-type {pleasance} {uncountable}) (new-statement {delectation} {consists of} {pleasance}) (new-knext-is-a '({comfort} {uncountable}) '({pleasure} {uncountable})) (new-knext-type {comfort} {uncountable}) (new-knext-type {pleasance} {uncountable}) (new-statement {comfort} {consists of} {pleasance}) (new-knext-is-a '({relief} {uncountable}) '({comfort} {uncountable})) (new-knext-is-a '({alleviation} {countable}) '({comfort} {uncountable})) (new-knext-is-a '({painfulness} {uncountable}) '({feeling} {countable})) (new-knext-is-a '({hurt} {countable}) '({painfulness} {uncountable})) (new-knext-is-a '({agony} {countable}) '({hurt} {countable})) (new-knext-type {torture} {uncountable}) (new-knext-type {hurt} {uncountable}) (new-statement {torture} {consists of} {hurt}) (new-knext-type {discomfort} {uncountable}) (new-knext-type {hurt} {uncountable}) (new-statement {discomfort} {consists of} {hurt}) (new-knext-is-a '({distress} {uncountable}) '({painfulness} {uncountable})) (new-knext-is-a '({anguish} {uncountable}) '({distress} {uncountable})) (new-knext-is-a '({liking} {countable}) '({feeling} {countable})) (new-knext-is-a '({preference} {countable}) '({liking} {countable})) (new-knext-type {friendliness} {uncountable}) (new-knext-type {liking} {uncountable}) (new-statement {friendliness} {consists of} {liking}) (new-knext-is-a '({brotherhood} {countable}) '({friendliness} {uncountable})) (new-knext-type {approval} {uncountable}) (new-knext-type {liking} {uncountable}) (new-statement {approval} {consists of} {liking}) (new-knext-is-a '({approbation} {countable}) '({approval} {uncountable})) (new-knext-type {admiration} {uncountable}) (new-knext-type {liking} {uncountable}) (new-statement {admiration} {consists of} {liking}) (new-knext-is-a '({dislike} {uncountable}) '({feeling} {countable})) (new-knext-is-a '({unfriendliness} {uncountable}) '({dislike} {uncountable})) (new-knext-is-a '({contempt} {uncountable}) '({dislike} {uncountable})) (new-knext-is-a '({disgust} {uncountable}) '({dislike} {uncountable})) (new-knext-is-a '({repugnance} {countable}) '({disgust} {uncountable})) (new-knext-is-a '({revulsion} {uncountable}) '({disgust} {uncountable})) (new-knext-is-a '({nausea} {uncountable}) '({disgust} {uncountable})) (new-knext-is-a '({gratitude} {uncountable}) '({feeling} {countable})) (new-knext-is-a '({ingratitude} {uncountable}) '({feeling} {countable})) (new-knext-is-a '({concern} {countable}) '({fellow feeling} {uncountable})) (new-knext-is-a '({unconcern} {uncountable}) '({feeling} {countable})) (new-knext-is-a '({indifference} {countable}) '({unconcern} {uncountable})) (new-knext-is-a '({distance} {countable}) '({indifference} {countable})) (new-knext-type {aloofness} {uncountable}) (new-knext-type {indifference} {uncountable}) (new-statement {aloofness} {consists of} {indifference}) (new-knext-is-a '({withdrawal} {countable}) '({indifference} {countable})) (new-knext-type {detachment} {uncountable}) (new-knext-type {indifference} {uncountable}) (new-statement {detachment} {consists of} {indifference}) (new-knext-is-a '({shame} {uncountable}) '({feeling} {countable})) (new-knext-is-a '({embarrassment} {uncountable}) '({shame} {uncountable})) (new-knext-is-a '({chagrin} {uncountable}) '({embarrassment} {uncountable})) (new-knext-is-a '({discombobulation} {uncountable}) '({embarrassment} {uncountable})) (new-knext-is-a '({discomfiture} {uncountable}) '({anxiety} {uncountable})) (new-knext-is-a '({discomfiture} {uncountable}) '({embarrassment} {uncountable})) (new-knext-is-a '({astonishment} {uncountable}) '({feeling} {countable})) (new-knext-is-a '({stupefaction} {uncountable}) '({astonishment} {uncountable})) (new-knext-is-a '({daze} {countable}) '({stupefaction} {uncountable})) (new-knext-is-a '({expectation} {countable}) '({feeling} {countable})) (new-knext-is-a '({anticipation} {countable}) '({expectation} {countable})) (new-knext-type {hope} {uncountable}) (new-knext-type {anticipation} {uncountable}) (new-statement {hope} {consists of} {anticipation}) (new-knext-is-a '({sensitivity} {countable}) '({feeling} {countable})) (new-knext-is-a '({sensitiveness} {uncountable}) '({feeling} {countable})) (new-knext-type {feelings} {uncountable}) (new-knext-type {sensitivity} {uncountable}) (new-statement {feelings} {consists of} {sensitivity}) (new-knext-is-a '({feelings} {uncountable}) '({sensitiveness} {uncountable})) (new-knext-is-a '({anger} {uncountable}) '({emotion} {countable})) (new-knext-is-a '({fury} {countable}) '({anger} {uncountable})) (new-knext-is-a '({madness} {uncountable}) '({anger} {uncountable})) (new-knext-is-a '({infuriation} {uncountable}) '({anger} {uncountable})) (new-knext-is-a '({enragement} {countable}) '({anger} {uncountable})) (new-knext-is-a '({fear} {uncountable}) '({emotion} {countable})) (new-knext-is-a '({alarm} {uncountable}) '({fear} {uncountable})) (new-knext-is-a '({frisson} {countable}) '({fear} {uncountable})) (new-knext-is-a '({panic} {countable}) '({fear} {uncountable})) (new-knext-is-a '({panic attack} {countable}) '({fear} {uncountable})) (new-knext-is-a '({anxiety} {uncountable}) '({emotion} {countable})) (new-knext-is-a '({worry} {countable}) '({anxiety} {uncountable})) (new-knext-is-a '({concern} {uncountable}) '({anxiety} {uncountable})) (new-knext-is-a '({fearlessness} {uncountable}) '({feeling} {countable})) (new-knext-is-a '({happiness} {uncountable}) '({feeling} {countable})) (new-knext-is-a '({joy} {uncountable}) '({emotion} {countable})) (new-knext-is-a '({high spirits} {countable}) '({joy} {uncountable})) (new-knext-is-a '({lightness} {uncountable}) '({joy} {uncountable})) (new-knext-is-a '({exultation} {uncountable}) '({joy} {uncountable})) (new-knext-is-a '({rejoicing} {uncountable}) '({happiness} {uncountable})) (new-knext-is-a '({pride} {countable}) '({satisfaction} {uncountable})) (new-knext-is-a '({fulfillment} {uncountable}) '({satisfaction} {uncountable})) (new-knext-is-a '({sadness} {uncountable}) '({feeling} {countable})) (new-knext-is-a '({sorrow} {uncountable}) '({sadness} {uncountable})) (new-knext-is-a '({grief} {uncountable}) '({sorrow} {uncountable})) (new-knext-is-a '({sorrow} {countable}) '({sadness} {uncountable})) (new-knext-is-a '({regret} {uncountable}) '({sadness} {uncountable})) (new-knext-is-a '({depression} {countable}) '({sadness} {uncountable})) (add-english-names (list {demoralization} {demoralisation} {demoralization} {demoralisation}) (list "demoralization" "demoralisation" "demoralization" "demoralisation")) (new-knext-type {demoralization} {uncountable}) (new-knext-type {depression} {uncountable}) (new-statement {demoralization} {consists of} {depression}) (new-knext-is-a '({frustration} {countable}) '({disappointment} {countable})) (new-knext-is-a '({hope} {uncountable}) '({feeling} {countable})) (new-knext-is-a '({encouragement} {uncountable}) '({hope} {uncountable})) (new-knext-is-a '({despair} {uncountable}) '({feeling} {countable})) (new-knext-is-a '({resignation} {countable}) '({despair} {uncountable})) (new-knext-is-a '({love} {uncountable}) '({emotion} {countable})) (new-knext-is-a '({affection} {countable}) '({feeling} {countable})) (new-knext-is-a '({affectionateness} {uncountable}) '({feeling} {countable})) (new-knext-is-a '({attachment} {countable}) '({affection} {countable})) (new-knext-is-a '({attachment} {countable}) '({affectionateness} {uncountable})) (new-knext-is-a '({loyalty} {uncountable}) '({love} {uncountable})) (new-knext-is-a '({hate} {uncountable}) '({emotion} {countable})) (new-knext-is-a '({ill will} {uncountable}) '({hate} {uncountable})) (new-knext-is-a '({mood} {countable}) '({feeling} {countable})) (new-knext-is-a '({fellow feeling} {uncountable}) '({feeling} {countable})) (new-knext-is-a '({compassion} {uncountable}) '({fellow feeling} {uncountable})) (new-knext-is-a '({mercifulness} {countable}) '({compassion} {uncountable})) (new-knext-is-a '({mercy} {uncountable}) '({compassion} {uncountable})) (new-knext-is-a '({empathy} {uncountable}) '({fellow feeling} {uncountable})) (new-knext-is-a '({enthusiasm} {uncountable}) '({feeling} {countable})) (new-knext-is-a '({solid food} {uncountable}) '({solid} {countable})) (new-knext-is-a '({comestible} {countable}) '({food} {uncountable})) (new-knext-is-a '({comestible} {countable}) '({nutrient} {countable})) (new-knext-is-a '({victuals} {uncountable}) '({food} {uncountable})) (new-knext-type {victuals} {uncountable}) (new-knext-type {nutrient} {uncountable}) (new-statement {victuals} {consists of} {nutrient}) (new-knext-is-a '({course} {countable}) '({nutriment} {uncountable})) (new-knext-type {course} {countable}) (new-knext-type {victuals} {countable}) (new-statement {victuals} {consists of} {course}) (new-knext-is-a '({dainty} {countable}) '({nutriment} {uncountable})) (new-knext-type {dainty} {countable}) (new-knext-type {victuals} {countable}) (new-statement {victuals} {consists of} {dainty}) (new-knext-is-a '({dish} {countable}) '({nutriment} {uncountable})) (new-knext-type {dish} {countable}) (new-knext-type {victuals} {countable}) (new-statement {victuals} {consists of} {dish}) (new-knext-is-a '({leftovers} {uncountable}) '({solid food} {uncountable})) (new-knext-is-a '({foodstuff} {uncountable}) '({food} {uncountable})) (new-knext-type {foodstuff} {uncountable}) (new-knext-type {nutrient} {uncountable}) (new-statement {foodstuff} {consists of} {nutrient}) (new-knext-is-a '({food product} {countable}) '({food} {uncountable})) (new-knext-is-a '({food product} {countable}) '({nutrient} {countable})) (new-knext-is-a '({concentrate} {uncountable}) '({foodstuff} {uncountable})) (new-knext-type {concentrate} {uncountable}) (new-knext-type {food product} {uncountable}) (new-statement {concentrate} {consists of} {food product}) (new-knext-is-a '({flour} {uncountable}) '({foodstuff} {uncountable})) (new-knext-type {flour} {uncountable}) (new-knext-type {food product} {uncountable}) (new-statement {flour} {consists of} {food product}) (new-knext-is-a '({nutriment} {uncountable}) '({food} {uncountable})) (new-knext-type {nutriment} {uncountable}) (new-knext-type {nutrient} {uncountable}) (new-statement {nutriment} {consists of} {nutrient}) (new-knext-is-a '({victuals} {uncountable}) '({food} {uncountable})) (new-knext-type {victuals} {uncountable}) (new-knext-type {nutrient} {uncountable}) (new-statement {victuals} {consists of} {nutrient}) (new-knext-is-a '({cuisine} {uncountable}) '({cooking} {uncountable})) (new-knext-is-a '({cuisine} {countable}) '({preparation} {countable})) (new-knext-is-a '({culinary art} {countable}) '({cooking} {uncountable})) (new-knext-is-a '({culinary art} {countable}) '({preparation} {countable})) (new-knext-is-a '({provisions} {uncountable}) '({food} {uncountable})) (new-knext-type {provisions} {uncountable}) (new-knext-type {nutrient} {uncountable}) (new-statement {provisions} {consists of} {nutrient}) (new-knext-is-a '({provender} {uncountable}) '({food} {uncountable})) (new-knext-type {provender} {uncountable}) (new-knext-type {nutrient} {uncountable}) (new-statement {provender} {consists of} {nutrient}) (new-knext-is-a '({meal} {countable}) '({nutriment} {uncountable})) (new-knext-type {meal} {countable}) (new-knext-type {victuals} {countable}) (new-statement {victuals} {consists of} {meal}) (new-knext-is-a '({breakfast} {countable}) '({meal} {countable})) (new-knext-is-a '({lunch} {countable}) '({meal} {countable})) (new-knext-is-a '({dinner} {countable}) '({meal} {countable})) (new-knext-is-a '({buffet} {countable}) '({meal} {countable})) (new-knext-is-a '({collation} {countable}) '({meal} {countable})) (new-knext-is-a '({banquet} {countable}) '({meal} {countable})) (new-knext-is-a '({helping} {countable}) '({small indefinite quantity} {countable})) (new-knext-is-a '({mouthful} {countable}) '({small indefinite quantity} {countable})) (new-knext-is-a '({morsel} {countable}) '({mouthful} {countable})) (new-knext-is-a '({chew} {countable}) '({morsel} {countable})) (new-knext-is-a '({soup} {uncountable}) '({dish} {countable})) (new-knext-is-a '({confection} {countable}) '({dainty} {countable})) (new-knext-is-a '({candy} {countable}) '({confection} {countable})) (new-knext-is-a '({chocolate} {uncountable}) '({solid food} {uncountable})) (new-knext-is-a '({dessert} {countable}) '({course} {countable})) (new-knext-type {pudding} {uncountable}) (new-knext-type {dessert} {uncountable}) (new-statement {pudding} {consists of} {dessert}) (new-knext-is-a '({baked goods} {countable}) '({solid food} {uncountable})) (new-knext-is-a '({pastry} {countable}) '({baked goods} {countable})) (new-knext-is-a '({pie} {countable}) '({pastry} {countable})) (new-knext-is-a '({cake} {countable}) '({baked goods} {countable})) (new-knext-is-a '({cookie} {countable}) '({cake} {countable})) (new-knext-type {jam} {uncountable}) (new-knext-type {preserve} {uncountable}) (new-statement {jam} {consists of} {preserve}) (new-knext-is-a '({jam} {uncountable}) '({conserves} {uncountable})) (new-knext-is-a '({meat} {uncountable}) '({solid food} {uncountable})) (new-knext-is-a '({game} {uncountable}) '({meat} {uncountable})) (new-knext-is-a '({cut of meat} {countable}) '({meat} {uncountable})) (new-knext-is-a '({slice} {countable}) '({helping} {countable})) (new-knext-is-a '({leg} {countable}) '({cut of meat} {countable})) (new-knext-is-a '({steak} {countable}) '({cut of meat} {countable})) (new-knext-is-a '({beef} {uncountable}) '({meat} {uncountable})) (new-knext-is-a '({hare} {countable}) '({game} {uncountable})) (new-knext-is-a '({sausage} {countable}) '({meat} {uncountable})) (new-knext-is-a '({frankfurter} {countable}) '({sausage} {countable})) (new-knext-type {wienerwurst} {uncountable}) (new-knext-type {sausage} {uncountable}) (new-statement {wienerwurst} {consists of} {sausage}) (new-knext-type {bread} {uncountable}) (new-knext-type {baked goods} {uncountable}) (new-statement {bread} {consists of} {baked goods}) (new-knext-is-a '({bun} {countable}) '({bread} {uncountable})) (new-knext-is-a '({toast} {uncountable}) '({bread} {uncountable})) (new-knext-is-a '({grinder} {countable}) '({sandwich} {countable})) (new-knext-is-a '({produce} {uncountable}) '({solid food} {uncountable})) (new-knext-is-a '({green groceries} {uncountable}) '({solid food} {uncountable})) (new-knext-type {edible fruit} {countable}) (new-knext-type {produce} {countable}) (new-statement {produce} {consists of} {edible fruit}) (new-knext-is-a '({edible fruit} {countable}) '({green groceries} {uncountable})) (new-knext-is-a '({edible fruit} {countable}) '({fruit} {countable})) (new-knext-type {vegetable} {countable}) (new-knext-type {produce} {countable}) (new-statement {produce} {consists of} {vegetable}) (new-knext-is-a '({vegetable} {countable}) '({green groceries} {uncountable})) (new-knext-type {eater} {countable}) (new-knext-type {produce} {countable}) (new-statement {produce} {consists of} {eater}) (new-knext-is-a '({eater} {countable}) '({green groceries} {uncountable})) (new-knext-is-a '({legume} {countable}) '({vegetable} {countable})) (new-knext-type {greens} {uncountable}) (new-knext-type {vegetable} {uncountable}) (new-statement {greens} {consists of} {vegetable}) (new-knext-is-a '({leafy vegetable} {countable}) '({vegetable} {countable})) (new-knext-is-a '({cuke} {countable}) '({vegetable} {countable})) (new-knext-is-a '({bean} {countable}) '({legume} {countable})) (new-knext-is-a '({edible corn} {uncountable}) '({grain} {uncountable})) (new-knext-is-a '({pumpkin} {countable}) '({vegetable} {countable})) (new-knext-is-a '({spinach} {uncountable}) '({greens} {uncountable})) (new-knext-type {spinach} {uncountable}) (new-knext-type {leafy vegetable} {uncountable}) (new-statement {spinach} {consists of} {leafy vegetable}) (new-knext-is-a '({apple} {countable}) '({edible fruit} {countable})) (new-knext-is-a '({apple} {countable}) '({pome} {countable})) (new-knext-is-a '({berry} {countable}) '({edible fruit} {countable})) (new-knext-is-a '({strawberry} {countable}) '({berry} {countable})) (new-knext-is-a '({fig} {countable}) '({edible fruit} {countable})) (new-knext-is-a '({banana} {countable}) '({edible fruit} {countable})) (new-knext-is-a '({cherry} {countable}) '({edible fruit} {countable})) (new-knext-is-a '({grape} {countable}) '({edible fruit} {countable})) (new-knext-is-a '({date} {countable}) '({edible fruit} {countable})) (new-knext-is-a '({fish} {uncountable}) '({solid food} {uncountable})) (new-knext-is-a '({feed} {uncountable}) '({food} {uncountable})) (new-knext-type {feed} {uncountable}) (new-knext-type {nutrient} {uncountable}) (new-statement {feed} {consists of} {nutrient}) (new-knext-is-a '({grain} {uncountable}) '({foodstuff} {uncountable})) (new-knext-type {grain} {uncountable}) (new-knext-type {food product} {uncountable}) (new-statement {grain} {consists of} {food product}) (new-knext-is-a '({rice} {uncountable}) '({grain} {uncountable})) (new-knext-is-a '({mash} {uncountable}) '({feed} {uncountable})) (new-knext-is-a '({salad} {uncountable}) '({dish} {countable})) (new-knext-is-a '({ingredient} {countable}) '({foodstuff} {uncountable})) (new-knext-is-a '({ingredient} {countable}) '({food product} {countable})) (new-knext-is-a '({fixings} {uncountable}) '({foodstuff} {uncountable})) (new-knext-type {fixings} {uncountable}) (new-knext-type {food product} {uncountable}) (new-statement {fixings} {consists of} {food product}) (new-knext-type {flavorer} {uncountable}) (new-knext-type {ingredient} {uncountable}) (new-statement {flavorer} {consists of} {ingredient}) (new-knext-is-a '({flavorer} {uncountable}) '({fixings} {uncountable})) (new-knext-is-a '({seasoner} {countable}) '({ingredient} {countable})) (new-knext-type {seasoner} {countable}) (new-knext-type {fixings} {countable}) (new-statement {fixings} {consists of} {seasoner}) (new-knext-is-a '({condiment} {countable}) '({flavorer} {uncountable})) (new-knext-is-a '({condiment} {countable}) '({seasoner} {countable})) (new-knext-is-a '({herb} {countable}) '({flavorer} {uncountable})) (new-knext-is-a '({herb} {countable}) '({seasoner} {countable})) (new-knext-is-a '({table salt} {uncountable}) '({flavorer} {uncountable})) (new-knext-is-a '({table salt} {uncountable}) '({seasoner} {countable})) (new-knext-is-a '({garlic} {uncountable}) '({flavorer} {uncountable})) (new-knext-is-a '({garlic} {uncountable}) '({seasoner} {countable})) (new-knext-is-a '({sauce} {uncountable}) '({condiment} {countable})) (new-knext-is-a '({egg} {countable}) '({foodstuff} {uncountable})) (new-knext-is-a '({egg} {countable}) '({food product} {countable})) (new-knext-is-a '({eggs} {uncountable}) '({foodstuff} {uncountable})) (new-knext-type {eggs} {uncountable}) (new-knext-type {food product} {uncountable}) (new-statement {eggs} {consists of} {food product}) (new-knext-is-a '({egg white} {countable}) '({ingredient} {countable})) (new-knext-type {egg white} {countable}) (new-knext-type {fixings} {countable}) (new-statement {fixings} {consists of} {egg white}) (new-knext-type {albumen} {uncountable}) (new-knext-type {ingredient} {uncountable}) (new-statement {albumen} {consists of} {ingredient}) (new-knext-is-a '({albumen} {uncountable}) '({fixings} {uncountable})) (new-knext-is-a '({dairy product} {countable}) '({foodstuff} {uncountable})) (new-knext-is-a '({dairy product} {countable}) '({food product} {countable})) (new-knext-is-a '({milk} {uncountable}) '({dairy product} {countable})) (new-knext-is-a '({milk} {uncountable}) '({beverage} {countable})) (new-knext-is-a '({cream} {uncountable}) '({dairy product} {countable})) (new-knext-is-a '({butter} {uncountable}) '({solid food} {uncountable})) (new-knext-is-a '({butter} {uncountable}) '({dairy product} {countable})) (new-knext-is-a '({cheese} {uncountable}) '({solid food} {uncountable})) (new-knext-is-a '({cheese} {uncountable}) '({dairy product} {countable})) (new-knext-is-a '({paste} {uncountable}) '({condiment} {countable})) (new-knext-is-a '({sweetening} {countable}) '({flavorer} {uncountable})) (new-knext-is-a '({sweetening} {countable}) '({seasoner} {countable})) (new-knext-type {honey} {uncountable}) (new-knext-type {sweetening} {uncountable}) (new-statement {honey} {consists of} {sweetening}) (new-knext-type {sugar} {uncountable}) (new-knext-type {sweetening} {uncountable}) (new-statement {sugar} {consists of} {sweetening}) (new-knext-type {dough} {uncountable}) (new-knext-type {concoction} {uncountable}) (new-statement {dough} {consists of} {concoction}) (new-knext-is-a '({beverage} {countable}) '({liquid} {countable})) (new-knext-is-a '({beverage} {countable}) '({food} {uncountable})) (new-knext-is-a '({beverage} {countable}) '({nutrient} {countable})) (new-knext-is-a '({concoction} {countable}) '({foodstuff} {uncountable})) (new-knext-is-a '({concoction} {countable}) '({food product} {countable})) (new-knext-is-a '({chaser} {countable}) '({drink} {countable})) (new-knext-is-a '({alcohol} {uncountable}) '({drug of abuse} {countable})) (new-knext-is-a '({alcoholic drink} {countable}) '({drug of abuse} {countable})) (new-knext-is-a '({alcohol} {uncountable}) '({beverage} {countable})) (new-knext-is-a '({alcoholic drink} {countable}) '({beverage} {countable})) (new-knext-is-a '({drink} {countable}) '({helping} {countable})) (new-knext-is-a '({brew} {uncountable}) '({alcohol} {uncountable})) (new-knext-type {brew} {uncountable}) (new-knext-type {alcoholic drink} {uncountable}) (new-statement {brew} {consists of} {alcoholic drink}) (new-knext-is-a '({beer} {uncountable}) '({brew} {uncountable})) (new-knext-is-a '({wine} {uncountable}) '({alcohol} {uncountable})) (new-knext-type {wine} {uncountable}) (new-knext-type {alcoholic drink} {uncountable}) (new-statement {wine} {consists of} {alcoholic drink}) (new-knext-is-a '({liquor} {uncountable}) '({alcohol} {uncountable})) (new-knext-type {liquor} {uncountable}) (new-knext-type {alcoholic drink} {uncountable}) (new-statement {liquor} {consists of} {alcoholic drink}) (new-knext-is-a '({brandy} {uncountable}) '({liquor} {uncountable})) (new-knext-is-a '({whiskey} {uncountable}) '({liquor} {uncountable})) (new-knext-is-a '({cooler} {countable}) '({beverage} {countable})) (new-knext-is-a '({juice} {uncountable}) '({foodstuff} {uncountable})) (new-knext-type {juice} {uncountable}) (new-knext-type {food product} {uncountable}) (new-statement {juice} {consists of} {food product}) (new-knext-is-a '({coffee} {uncountable}) '({beverage} {countable})) (new-knext-is-a '({tea} {uncountable}) '({beverage} {countable})) (new-knext-is-a '({arrangement} {countable}) '({group} {countable})) (new-knext-is-a '({array} {countable}) '({arrangement} {countable})) (new-knext-is-a '({categorization} {countable}) '({arrangement} {countable})) (new-knext-is-a '({kingdom} {countable}) '({group} {countable})) (new-knext-is-a '({kingdom} {countable}) '({taxonomic group} {countable})) (new-knext-is-a '({biological group} {countable}) '({group} {countable})) (new-knext-type {age group} {countable}) (new-knext-type {people} {countable}) (new-statement {people} {consists of} {age group}) (new-knext-type {enemy} {countable}) (new-knext-type {people} {countable}) (new-statement {people} {consists of} {enemy}) (new-knext-is-a '({folk} {uncountable}) '({people} {uncountable})) (new-knext-is-a '({social group} {countable}) '({group} {countable})) (new-knext-is-a '({collection} {countable}) '({group} {countable})) (new-knext-is-a '({block} {countable}) '({collection} {countable})) (new-knext-is-a '({rule book} {countable}) '({collection} {countable})) (new-knext-is-a '({pack} {countable}) '({collection} {countable})) (new-knext-is-a '({pack of cards} {countable}) '({pack} {countable})) (new-knext-is-a '({hand} {countable}) '({collection} {countable})) (new-knext-is-a '({sum total} {countable}) '({collection} {countable})) (new-knext-is-a '({agglomeration} {countable}) '({collection} {countable})) (new-knext-is-a '({bunch} {countable}) '({agglomeration} {countable})) (new-knext-is-a '({clod} {countable}) '({agglomeration} {countable})) (new-knext-is-a '({pile} {countable}) '({collection} {countable})) (new-knext-is-a '({combination} {countable}) '({collection} {countable})) (new-knext-is-a '({amalgam} {countable}) '({combination} {countable})) (new-knext-is-a '({combination} {countable}) '({coalition} {countable})) (new-knext-is-a '({body} {countable}) '({social group} {countable})) (new-knext-is-a '({public} {countable}) '({body} {countable})) (new-knext-is-a '({world} {countable}) '({social class} {countable})) (new-knext-is-a '({society} {countable}) '({social group} {countable})) (new-knext-is-a '({sector} {countable}) '({social group} {countable})) (new-knext-is-a '({race} {countable}) '({group} {countable})) (new-knext-is-a '({interest group} {countable}) '({social group} {countable})) (new-knext-is-a '({special interest} {countable}) '({political unit} {countable})) (new-knext-is-a '({special interest} {countable}) '({interest group} {countable})) (new-knext-is-a '({kin group} {countable}) '({social group} {countable})) (new-knext-is-a '({family unit} {countable}) '({kin group} {countable})) (new-knext-type {family unit} {countable}) (new-knext-type {kindred} {countable}) (new-statement {kindred} {consists of} {family unit}) (new-knext-is-a '({family line} {countable}) '({lineage} {countable})) (new-knext-is-a '({people} {uncountable}) '({kinfolk} {uncountable})) (new-knext-type {social class} {countable}) (new-knext-type {people} {countable}) (new-statement {people} {consists of} {social class}) (new-knext-is-a '({gathering} {countable}) '({social group} {countable})) (new-knext-is-a '({congregation} {countable}) '({collection} {countable})) (new-knext-is-a '({pair} {countable}) '({gathering} {countable})) (new-knext-is-a '({program library} {countable}) '({collection} {countable})) (new-knext-is-a '({library} {countable}) '({collection} {countable})) (new-knext-is-a '({mythology} {uncountable}) '({collection} {countable})) (new-knext-is-a '({pair} {countable}) '({set} {countable})) (new-knext-is-a '({team} {countable}) '({animal group} {countable})) (new-knext-is-a '({couple} {countable}) '({pair} {countable})) (new-knext-is-a '({room} {countable}) '({gathering} {countable})) (new-knext-is-a '({couple} {countable}) '({family unit} {countable})) (new-knext-is-a '({married couple} {countable}) '({family unit} {countable})) (new-knext-is-a '({flock} {countable}) '({animal group} {countable})) (new-knext-is-a '({fold} {countable}) '({animal group} {countable})) (new-knext-is-a '({congregation} {countable}) '({social group} {countable})) (new-knext-is-a '({taxonomic group} {countable}) '({biological group} {countable})) (new-knext-is-a '({biota} {uncountable}) '({collection} {countable})) (new-knext-is-a '({fauna} {uncountable}) '({collection} {countable})) (new-knext-is-a '({animal group} {countable}) '({biological group} {countable})) (new-knext-is-a '({herd} {countable}) '({animal group} {countable})) (new-knext-is-a '({pack} {countable}) '({animal group} {countable})) (new-knext-is-a '({shoal} {countable}) '({animal group} {countable})) (new-knext-is-a '({swarm} {countable}) '({group} {countable})) (new-knext-is-a '({set} {countable}) '({collection} {countable})) (new-knext-is-a '({class} {countable}) '({collection} {countable})) (new-knext-is-a '({stamp} {countable}) '({class} {countable})) (new-knext-is-a '({join} {countable}) '({set} {countable})) (new-knext-is-a '({mathematical space} {countable}) '({space} {uncountable})) (new-knext-is-a '({mathematical space} {countable}) '({set} {countable})) (new-knext-is-a '({bracket} {countable}) '({set} {countable})) (new-knext-is-a '({denomination} {countable}) '({class} {countable})) (new-knext-is-a '({package} {countable}) '({collection} {countable})) (new-knext-is-a '({organization} {countable}) '({social group} {countable})) (new-knext-is-a '({nongovernmental organization} {countable}) '({organization} {countable})) (new-knext-is-a '({association} {countable}) '({organization} {countable})) (new-knext-is-a '({polity} {countable}) '({organization} {countable})) (new-knext-is-a '({government} {countable}) '({polity} {countable})) (new-knext-is-a '({royal court} {countable}) '({government} {countable})) (new-knext-is-a '({palace} {countable}) '({government} {countable})) (new-knext-is-a '({institution} {countable}) '({organization} {countable})) (new-knext-is-a '({medical institution} {countable}) '({institution} {countable})) (new-knext-is-a '({clinic} {countable}) '({medical institution} {countable})) (new-knext-is-a '({financial institution} {countable}) '({institution} {countable})) (new-knext-is-a '({charity} {countable}) '({institution} {countable})) (new-knext-is-a '({enterprise} {countable}) '({organization} {countable})) (new-knext-is-a '({agency} {countable}) '({business} {countable})) (new-knext-is-a '({common carrier} {countable}) '({business} {countable})) (new-knext-is-a '({chain} {countable}) '({business} {countable})) (new-knext-is-a '({company} {countable}) '({institution} {countable})) (new-knext-is-a '({firm} {countable}) '({business} {countable})) (new-knext-is-a '({dealership} {countable}) '({business} {countable})) (new-knext-is-a '({business} {countable}) '({enterprise} {countable})) (new-knext-is-a '({restaurant chain} {countable}) '({chain} {countable})) (new-knext-is-a '({distributor} {countable}) '({company} {countable})) (new-knext-is-a '({publisher} {countable}) '({firm} {countable})) (new-knext-is-a '({commercial enterprise} {countable}) '({enterprise} {countable})) (new-knext-is-a '({industry} {countable}) '({commercial enterprise} {countable})) (new-knext-is-a '({sodality} {countable}) '({social class} {countable})) (new-knext-is-a '({administrative unit} {countable}) '({social unit} {countable})) (new-knext-is-a '({company} {countable}) '({social unit} {countable})) (new-knext-is-a '({family} {countable}) '({social unit} {countable})) (new-knext-is-a '({defending team} {countable}) '({team} {countable})) (new-knext-is-a '({organized religion} {countable}) '({institution} {countable})) (new-knext-is-a '({breed} {countable}) '({animal group} {countable})) (new-knext-is-a '({lineage} {countable}) '({genealogy} {countable})) (new-knext-is-a '({genealogy} {countable}) '({kin group} {countable})) (new-knext-type {genealogy} {countable}) (new-knext-type {kindred} {countable}) (new-statement {kindred} {consists of} {genealogy}) (new-knext-is-a '({phylum} {countable}) '({taxonomic group} {countable})) (new-knext-is-a '({class} {countable}) '({taxonomic group} {countable})) (new-knext-is-a '({family} {countable}) '({taxonomic group} {countable})) (new-knext-is-a '({genus} {countable}) '({taxonomic group} {countable})) (new-knext-is-a '({species} {countable}) '({taxonomic group} {countable})) (new-knext-is-a '({type} {countable}) '({taxonomic group} {countable})) (new-knext-is-a '({civilization} {countable}) '({society} {countable})) (new-knext-is-a '({profession} {countable}) '({occupational group} {countable})) (new-knext-is-a '({legal profession} {countable}) '({profession} {countable})) (new-knext-is-a '({health profession} {countable}) '({profession} {countable})) (new-knext-is-a '({department} {countable}) '({division} {countable})) (new-knext-is-a '({denomination} {countable}) '({nongovernmental organization} {countable})) (new-knext-is-a '({pantheon} {countable}) '({collection} {countable})) (new-knext-is-a '({citizenry} {countable}) '({group} {countable})) (new-knext-is-a '({electorate} {countable}) '({citizenry} {countable})) (new-knext-is-a '({house} {countable}) '({legislature} {countable})) (new-knext-is-a '({legislature} {countable}) '({assembly} {countable})) (new-knext-is-a '({assembly} {countable}) '({gathering} {countable})) (new-knext-is-a '({governance} {countable}) '({body} {countable})) (new-knext-is-a '({executive} {countable}) '({governance} {countable})) (new-knext-type {nation} {countable}) (new-knext-type {people} {countable}) (new-statement {people} {consists of} {nation}) (new-knext-is-a '({nation} {countable}) '({political unit} {countable})) (new-knext-is-a '({world power} {countable}) '({nation} {countable})) (new-knext-is-a '({state} {countable}) '({government} {countable})) (new-knext-is-a '({population} {countable}) '({group} {countable})) (new-knext-type {populace} {countable}) (new-knext-type {people} {countable}) (new-statement {people} {consists of} {populace}) (new-knext-type {population} {countable}) (new-knext-type {people} {countable}) (new-statement {people} {consists of} {population}) (new-knext-is-a '({multitude} {countable}) '({group} {countable})) (new-knext-is-a '({labor} {uncountable}) '({social class} {countable})) (new-knext-type {social class} {countable}) (new-knext-indv {working class} {social class}) (new-knext-is-a '({crowd} {countable}) '({gathering} {countable})) (new-knext-is-a '({army} {countable}) '({crowd} {countable})) (new-knext-is-a '({swarm} {countable}) '({crowd} {countable})) (new-knext-is-a '({mob} {countable}) '({crowd} {countable})) (new-knext-is-a '({company} {countable}) '({social gathering} {countable})) (new-knext-is-a '({service} {countable}) '({company} {countable})) (new-knext-is-a '({troupe} {countable}) '({organization} {countable})) (new-knext-is-a '({chorus} {countable}) '({musical organization} {countable})) (new-knext-is-a '({ensemble} {countable}) '({musical organization} {countable})) (new-knext-is-a '({social unit} {countable}) '({organization} {countable})) (new-knext-is-a '({army unit} {countable}) '({military unit} {countable})) (new-knext-is-a '({army} {countable}) '({military service} {countable})) (new-knext-is-a '({naval unit} {countable}) '({military unit} {countable})) (new-knext-is-a '({navy} {countable}) '({military service} {countable})) (new-knext-is-a '({air unit} {countable}) '({military unit} {countable})) (new-knext-is-a '({air force} {countable}) '({military service} {countable})) (new-knext-is-a '({military service} {countable}) '({force} {countable})) (new-knext-type {military service} {countable}) (new-knext-type {personnel} {countable}) (new-statement {personnel} {consists of} {military service}) (new-knext-is-a '({military unit} {countable}) '({social unit} {countable})) (new-knext-is-a '({military} {countable}) '({force} {countable})) (new-knext-type {military} {countable}) (new-knext-type {personnel} {countable}) (new-statement {personnel} {consists of} {military}) (new-knext-is-a '({force} {countable}) '({organization} {countable})) (new-knext-is-a '({team} {countable}) '({social unit} {countable})) (new-knext-is-a '({police} {uncountable}) '({personnel} {uncountable})) (new-knext-is-a '({security force} {countable}) '({force} {countable})) (new-knext-type {security force} {countable}) (new-knext-type {personnel} {countable}) (new-statement {personnel} {consists of} {security force}) (new-knext-is-a '({work force} {countable}) '({force} {countable})) (new-knext-type {work force} {countable}) (new-knext-type {personnel} {countable}) (new-statement {personnel} {consists of} {work force}) (new-knext-is-a '({manpower} {uncountable}) '({personnel} {uncountable})) (new-knext-is-a '({men} {uncountable}) '({personnel} {uncountable})) (new-knext-is-a '({corps} {countable}) '({army unit} {countable})) (new-knext-is-a '({division} {countable}) '({army unit} {countable})) (new-knext-is-a '({battle group} {countable}) '({army unit} {countable})) (new-knext-is-a '({battalion} {countable}) '({army unit} {countable})) (new-knext-is-a '({company} {countable}) '({army unit} {countable})) (new-knext-is-a '({guard} {countable}) '({military unit} {countable})) (new-knext-is-a '({squad} {countable}) '({army unit} {countable})) (new-knext-is-a '({full complement} {countable}) '({work force} {countable})) (new-knext-is-a '({full complement} {countable}) '({manpower} {uncountable})) (new-knext-type {full complement} {countable}) (new-knext-type {men} {countable}) (new-statement {men} {consists of} {full complement}) (new-knext-is-a '({air division} {countable}) '({air unit} {countable})) (new-knext-is-a '({flight} {countable}) '({formation} {countable})) (new-knext-is-a '({flight} {countable}) '({flock} {countable})) (new-knext-is-a '({division} {countable}) '({administrative unit} {countable})) (new-knext-is-a '({division} {countable}) '({phylum} {countable})) (new-knext-is-a '({division} {countable}) '({biological group} {countable})) (new-knext-is-a '({audience} {countable}) '({gathering} {countable})) (new-knext-is-a '({audience} {countable}) '({multitude} {countable})) (new-knext-is-a '({following} {countable}) '({multitude} {countable})) (new-knext-is-a '({community} {countable}) '({gathering} {countable})) (new-knext-is-a '({house} {countable}) '({community} {countable})) (new-knext-is-a '({neighborhood} {countable}) '({community} {countable})) (new-knext-type {metropolis} {countable}) (new-knext-type {municipality} {countable}) (new-statement {municipality} {consists of} {metropolis}) (new-knext-is-a '({townspeople} {uncountable}) '({municipality} {uncountable})) (new-knext-is-a '({village} {countable}) '({community} {countable})) (new-knext-is-a '({social club} {countable}) '({association} {countable})) (new-knext-is-a '({sorority} {countable}) '({social club} {countable})) (new-knext-is-a '({union} {countable}) '({organization} {countable})) (new-knext-is-a '({consortium} {countable}) '({association} {countable})) (new-knext-is-a '({corporate trust} {countable}) '({consortium} {countable})) (new-knext-is-a '({cast} {countable}) '({gathering} {countable})) (new-knext-is-a '({constituency} {countable}) '({body} {countable})) (new-knext-is-a '({grade} {countable}) '({gathering} {countable})) (new-knext-is-a '({year} {countable}) '({gathering} {countable})) (new-knext-is-a '({band} {countable}) '({social group} {countable})) (new-knext-is-a '({clique} {countable}) '({band} {countable})) (new-knext-is-a '({work party} {countable}) '({social unit} {countable})) (new-knext-is-a '({gang} {countable}) '({association} {countable})) (new-knext-is-a '({musical organization} {countable}) '({organization} {countable})) (new-knext-is-a '({orchestra} {countable}) '({musical organization} {countable})) (new-knext-is-a '({band} {countable}) '({musical organization} {countable})) (new-knext-is-a '({dance band} {countable}) '({musical organization} {countable})) (new-knext-is-a '({social gathering} {countable}) '({gathering} {countable})) (new-knext-is-a '({party} {countable}) '({social gathering} {countable})) (new-knext-is-a '({dance} {countable}) '({party} {countable})) (new-knext-is-a '({ball} {countable}) '({dance} {countable})) (new-knext-is-a '({reception} {countable}) '({party} {countable})) (new-knext-is-a '({party} {countable}) '({organization} {countable})) (new-knext-is-a '({party} {countable}) '({band} {countable})) (new-knext-is-a '({party to the action} {countable}) '({party} {countable})) (new-knext-is-a '({professional organization} {countable}) '({organization} {countable})) (new-knext-is-a '({table} {countable}) '({array} {countable})) (new-knext-is-a '({matrix} {countable}) '({array} {countable})) (new-knext-is-a '({extragalactic nebula} {countable}) '({collection} {countable})) (new-knext-is-a '({combination} {countable}) '({social unit} {countable})) (new-knext-is-a '({crew} {countable}) '({social unit} {countable})) (new-knext-is-a '({crowd} {countable}) '({gathering} {countable})) (new-knext-is-a '({troop} {countable}) '({army unit} {countable})) (new-knext-is-a '({troop} {countable}) '({crowd} {countable})) (new-knext-is-a '({scout troop} {countable}) '({social unit} {countable})) (new-knext-is-a '({educational institution} {countable}) '({institution} {countable})) (new-knext-is-a '({school} {countable}) '({educational institution} {countable})) (new-knext-is-a '({school} {countable}) '({educational institution} {countable})) (new-knext-is-a '({college} {countable}) '({educational institution} {countable})) (new-knext-is-a '({university} {countable}) '({body} {countable})) (new-knext-is-a '({faculty} {countable}) '({body} {countable})) (new-knext-is-a '({culture} {countable}) '({society} {countable})) (new-knext-is-a '({subculture} {countable}) '({social group} {countable})) (new-knext-is-a '({fleet} {countable}) '({collection} {countable})) (new-knext-is-a '({fleet} {countable}) '({collection} {countable})) (new-knext-is-a '({fleet} {countable}) '({collection} {countable})) (new-knext-is-a '({coalition} {countable}) '({organization} {countable})) (new-knext-is-a '({nonalignment} {countable}) '({social group} {countable})) (new-knext-is-a '({confederation} {countable}) '({union} {countable})) (new-knext-is-a '({union} {countable}) '({political unit} {countable})) (new-knext-is-a '({ally} {countable}) '({nation} {countable})) (new-knext-is-a '({meeting} {countable}) '({gathering} {countable})) (new-knext-is-a '({conference} {countable}) '({meeting} {countable})) (new-knext-is-a '({convention} {countable}) '({meeting} {countable})) (new-knext-is-a '({forum} {countable}) '({meeting} {countable})) (new-knext-is-a '({get together} {countable}) '({social gathering} {countable})) (new-knext-is-a '({council} {countable}) '({administrative unit} {countable})) (new-knext-is-a '({summit meeting} {countable}) '({meeting} {countable})) (new-knext-is-a '({congress} {countable}) '({legislature} {countable})) (new-knext-is-a '({parliament} {countable}) '({legislature} {countable})) (new-knext-is-a '({board} {countable}) '({committee} {countable})) (new-knext-is-a '({committee} {countable}) '({administrative unit} {countable})) (new-knext-is-a '({citizens committee} {countable}) '({nongovernmental organization} {countable})) (new-knext-is-a '({court} {countable}) '({assembly} {countable})) (new-knext-is-a '({agency} {countable}) '({administrative unit} {countable})) (new-knext-is-a '({intelligence service} {countable}) '({administrative unit} {countable})) (new-knext-is-a '({law enforcement agency} {countable}) '({agency} {countable})) (new-knext-is-a '({organ} {countable}) '({agency} {countable})) (new-knext-type {office staff} {countable}) (new-knext-type {staff} {countable}) (new-statement {staff} {consists of} {office staff}) (new-knext-is-a '({rally} {countable}) '({gathering} {countable})) (new-knext-is-a '({political unit} {countable}) '({social unit} {countable})) (new-knext-is-a '({autocracy} {countable}) '({political system} {countable})) (new-knext-is-a '({republic} {countable}) '({political system} {countable})) (new-knext-is-a '({republic} {countable}) '({political system} {countable})) (new-knext-is-a '({monarchy} {countable}) '({autocracy} {countable})) (new-knext-is-a '({economy} {countable}) '({system} {countable})) (new-knext-is-a '({political system} {countable}) '({social group} {countable})) (new-knext-is-a '({coevals} {uncountable}) '({people} {uncountable})) (new-knext-is-a '({tribe} {countable}) '({social group} {countable})) (new-knext-is-a '({colony} {countable}) '({body} {countable})) (new-knext-is-a '({commune} {countable}) '({gathering} {countable})) (new-knext-is-a '({power structure} {countable}) '({organization} {countable})) (new-knext-is-a '({course} {countable}) '({series} {countable})) (new-knext-is-a '({class structure} {countable}) '({social organization} {countable})) (new-knext-is-a '({social organization} {countable}) '({system} {countable})) (new-knext-is-a '({appointment} {countable}) '({get together} {countable})) (new-knext-is-a '({cream} {countable}) '({elite} {countable})) (new-knext-is-a '({assortment} {countable}) '({collection} {countable})) (new-knext-is-a '({selection} {countable}) '({assortment} {countable})) (new-knext-is-a '({membership} {countable}) '({body} {countable})) (new-knext-is-a '({branch} {countable}) '({division} {countable})) (new-knext-is-a '({clientele} {uncountable}) '({people} {uncountable})) (new-knext-is-a '({deputation} {countable}) '({organization} {countable})) (new-knext-is-a '({occupational group} {countable}) '({body} {countable})) (new-knext-is-a '({opposition} {countable}) '({body} {countable})) (new-knext-is-a '({kingdom} {countable}) '({monarchy} {countable})) (new-knext-is-a '({empire} {countable}) '({monarchy} {countable})) (new-knext-is-a '({foundation} {countable}) '({financial institution} {countable})) (new-knext-is-a '({institute} {countable}) '({association} {countable})) (new-knext-is-a '({expo} {countable}) '({collection} {countable})) (new-knext-is-a '({fair} {countable}) '({gathering} {countable})) (new-knext-is-a '({side} {countable}) '({social unit} {countable})) (new-knext-is-a '({jury} {countable}) '({body} {countable})) (new-knext-is-a '({jury} {countable}) '({committee} {countable})) (new-knext-is-a '({congeries} {countable}) '({sum total} {countable})) (new-knext-is-a '({merchant bank} {countable}) '({depository financial institution} {countable})) (new-knext-is-a '({acquirer} {countable}) '({financial institution} {countable})) (new-knext-is-a '({acquirer} {countable}) '({depository financial institution} {countable})) (new-knext-is-a '({depository financial institution} {countable}) '({financial institution} {countable})) (new-knext-is-a '({market} {countable}) '({social class} {countable})) (new-knext-is-a '({traffic} {uncountable}) '({collection} {countable})) (new-knext-is-a '({formation} {countable}) '({arrangement} {countable})) (new-knext-is-a '({march} {countable}) '({procession} {countable})) (new-knext-is-a '({parade} {countable}) '({procession} {countable})) (new-knext-is-a '({single file} {countable}) '({line} {countable})) (new-knext-is-a '({line} {countable}) '({formation} {countable})) (new-knext-is-a '({line} {countable}) '({formation} {countable})) (new-knext-is-a '({row} {countable}) '({line} {countable})) (new-knext-is-a '({queue} {countable}) '({line} {countable})) (new-knext-is-a '({column} {countable}) '({array} {countable})) (new-knext-is-a '({network} {countable}) '({system} {countable})) (new-knext-is-a '({system} {countable}) '({group} {countable})) (new-knext-is-a '({craft} {countable}) '({social class} {countable})) (new-knext-is-a '({vegetation} {uncountable}) '({collection} {countable})) (new-knext-is-a '({growth} {countable}) '({vegetation} {uncountable})) (new-knext-is-a '({scrub} {uncountable}) '({vegetation} {uncountable})) (new-knext-is-a '({forest} {countable}) '({vegetation} {uncountable})) (new-knext-is-a '({jungle} {countable}) '({forest} {countable})) (new-knext-is-a '({shrubbery} {countable}) '({vegetation} {uncountable})) (new-knext-is-a '({garden} {countable}) '({vegetation} {uncountable})) (new-knext-is-a '({staff} {uncountable}) '({personnel} {uncountable})) (new-knext-is-a '({ordination} {countable}) '({arrangement} {countable})) (new-knext-is-a '({series} {countable}) '({ordering} {uncountable})) (new-knext-is-a '({series} {countable}) '({ordination} {countable})) (new-knext-is-a '({sequence} {countable}) '({series} {countable})) (new-knext-is-a '({train} {countable}) '({series} {countable})) (new-knext-is-a '({succession} {countable}) '({series} {countable})) (new-knext-is-a '({data} {uncountable}) '({collection} {countable})) (new-knext-is-a '({sampler} {countable}) '({assortment} {countable})) (new-knext-is-a '({treasure} {countable}) '({collection} {countable})) (new-knext-is-a '({social movement} {countable}) '({social group} {countable})) (new-knext-type {artistic movement} {countable}) (new-knext-indv {dada} {artistic movement}) (new-knext-is-a '({dadaism} {uncountable}) '({artistic movement} {countable})) (new-knext-is-a '({artistic movement} {countable}) '({social movement} {countable})) (new-knext-is-a '({naturalism} {uncountable}) '({artistic movement} {countable})) (new-knext-is-a '({womanhood} {uncountable}) '({social class} {countable})) (new-knext-type {social class} {countable}) (new-knext-indv {fair sex} {social class}) (new-knext-is-a '({womankind} {uncountable}) '({people} {uncountable})) (new-knext-is-a '({camp} {countable}) '({gathering} {countable})) (new-knext-is-a '({public mover} {countable}) '({company} {countable})) (new-knext-type {social group} {countable}) (new-knext-indv {jewry} {social group}) (new-knext-is-a '({vote} {countable}) '({body} {countable})) (new-knext-is-a '({host} {countable}) '({organization} {countable})) (new-knext-is-a '({shipper} {countable}) '({company} {countable})) (new-knext-is-a '({head} {countable}) '({formation} {countable})) (new-knext-is-a '({home} {countable}) '({location} {countable})) (new-knext-is-a '({home} {countable}) '({location} {countable})) (new-knext-is-a '({address} {countable}) '({geographic point} {countable})) (new-knext-is-a '({administrative district} {countable}) '({district} {countable})) (new-knext-is-a '({territory} {countable}) '({geographical area} {countable})) (new-knext-is-a '({solar apex} {countable}) '({celestial point} {countable})) (new-knext-is-a '({antapex} {countable}) '({celestial point} {countable})) (new-knext-is-a '({arena} {countable}) '({area} {countable})) (new-knext-is-a '({area} {countable}) '({region} {countable})) (new-knext-is-a '({dependency} {countable}) '({geographical area} {countable})) (new-knext-is-a '({desert} {countable}) '({tract} {countable})) (new-knext-is-a '({desert} {countable}) '({biome} {countable})) (new-knext-is-a '({battlefield} {countable}) '({tract} {countable})) (new-knext-is-a '({origin} {countable}) '({point} {countable})) (new-knext-is-a '({birthplace} {countable}) '({topographic point} {countable})) (new-knext-is-a '({side} {countable}) '({surface} {countable})) (new-knext-is-a '({bottom} {countable}) '({side} {countable})) (new-knext-is-a '({foot} {countable}) '({bottom} {countable})) (new-knext-is-a '({base} {countable}) '({bottom} {countable})) (new-knext-is-a '({bottom} {countable}) '({region} {countable})) (new-knext-is-a '({boundary} {countable}) '({extremity} {countable})) (new-knext-is-a '({boundary line} {countable}) '({boundary} {countable})) (new-knext-is-a '({place} {countable}) '({geographical area} {countable})) (new-knext-is-a '({fence line} {countable}) '({boundary line} {countable})) (new-knext-is-a '({celestial point} {countable}) '({point} {countable})) (new-knext-is-a '({celestial sphere} {countable}) '({surface} {countable})) (new-knext-is-a '({cemetery} {countable}) '({site} {countable})) (new-knext-is-a '({midpoint} {countable}) '({point} {countable})) (new-knext-is-a '({center} {countable}) '({area} {countable})) (new-knext-is-a '({core} {countable}) '({midpoint} {countable})) (new-knext-is-a '({city} {countable}) '({municipality} {countable})) (new-knext-is-a '({city district} {countable}) '({district} {countable})) (new-knext-is-a '({precinct} {countable}) '({city district} {countable})) (new-knext-is-a '({city} {countable}) '({administrative district} {countable})) (new-knext-is-a '({commune} {countable}) '({administrative district} {countable})) (new-knext-is-a '({geographical zone} {countable}) '({geographical area} {countable})) (new-knext-is-a '({country} {countable}) '({administrative district} {countable})) (new-knext-is-a '({county} {countable}) '({region} {countable})) (new-knext-is-a '({development} {countable}) '({district} {countable})) (new-knext-is-a '({dig} {countable}) '({site} {countable})) (new-knext-is-a '({diocese} {countable}) '({jurisdiction} {countable})) (new-knext-is-a '({district} {countable}) '({region} {countable})) (new-knext-is-a '({residential district} {countable}) '({district} {countable})) (new-knext-is-a '({suburb} {countable}) '({residential district} {countable})) (new-knext-is-a '({domain} {countable}) '({region} {countable})) (new-knext-is-a '({realm} {countable}) '({domain} {countable})) (new-knext-is-a '({residence} {countable}) '({address} {countable})) (new-knext-is-a '({home} {countable}) '({residence} {countable})) (new-knext-is-a '({edge} {countable}) '({boundary} {countable})) (new-knext-is-a '({end} {countable}) '({boundary} {countable})) (new-knext-is-a '({end} {countable}) '({extremity} {countable})) (new-knext-is-a '({end} {countable}) '({surface} {countable})) (new-knext-type {environs} {uncountable}) (new-knext-type {geographical area} {uncountable}) (new-statement {environs} {consists of} {geographical area}) (new-knext-is-a '({surround} {countable}) '({geographical area} {countable})) (new-knext-is-a '({destination} {countable}) '({end} {countable})) (new-knext-type {setting} {countable}) (new-knext-type {environs} {countable}) (new-statement {environs} {consists of} {setting}) (new-knext-is-a '({setting} {countable}) '({surround} {countable})) (new-knext-is-a '({equator} {countable}) '({great circle} {countable})) (new-knext-is-a '({extremity} {countable}) '({region} {countable})) (new-knext-is-a '({field} {countable}) '({tract} {countable})) (new-knext-is-a '({athletic field} {countable}) '({tract} {countable})) (new-knext-is-a '({focus} {countable}) '({point} {countable})) (new-knext-is-a '({forefront} {countable}) '({front} {countable})) (new-knext-is-a '({front} {countable}) '({side} {countable})) (new-knext-is-a '({battlefront} {countable}) '({line} {countable})) (new-knext-is-a '({gathering place} {countable}) '({haunt} {countable})) (new-knext-is-a '({geographical area} {countable}) '({region} {countable})) (new-knext-is-a '({geographic point} {countable}) '({point} {countable})) (new-knext-type {habitat} {countable}) (new-knext-type {environs} {countable}) (new-statement {environs} {consists of} {habitat}) (new-knext-is-a '({habitat} {countable}) '({surround} {countable})) (new-knext-is-a '({haunt} {countable}) '({area} {countable})) (new-knext-is-a '({hemisphere} {countable}) '({geographical area} {countable})) (new-knext-is-a '({drop} {countable}) '({hiding place} {countable})) (new-knext-is-a '({hideout} {countable}) '({hiding place} {countable})) (new-knext-is-a '({hiding place} {countable}) '({topographic point} {countable})) (new-knext-is-a '({inside} {countable}) '({region} {countable})) (new-knext-is-a '({jurisdiction} {countable}) '({district} {countable})) (new-knext-is-a '({lawn} {countable}) '({field} {countable})) (new-knext-is-a '({layer} {countable}) '({region} {countable})) (new-knext-is-a '({lead} {countable}) '({position} {countable})) (new-knext-is-a '({demarcation} {countable}) '({boundary} {countable})) (new-knext-is-a '({limit} {countable}) '({extremity} {countable})) (new-knext-is-a '({orbit} {countable}) '({route} {countable})) (new-knext-is-a '({outline} {countable}) '({boundary} {countable})) (new-knext-is-a '({profile} {countable}) '({outline} {countable})) (new-knext-is-a '({outside} {countable}) '({surface} {countable})) (new-knext-is-a '({outside} {countable}) '({region} {countable})) (new-knext-is-a '({park} {countable}) '({tract} {countable})) (new-knext-is-a '({commons} {countable}) '({tract} {countable})) (new-knext-is-a '({parking lot} {countable}) '({lot} {countable})) (new-knext-is-a '({parking space} {countable}) '({space} {countable})) (new-knext-is-a '({crest} {countable}) '({topographic point} {countable})) (new-knext-is-a '({public square} {countable}) '({tract} {countable})) (new-knext-is-a '({plaza} {countable}) '({public square} {countable})) (new-knext-is-a '({point} {countable}) '({location} {countable})) (new-knext-is-a '({pole} {countable}) '({geographic point} {countable})) (new-knext-is-a '({position} {countable}) '({point} {countable})) (new-knext-is-a '({position} {countable}) '({point} {countable})) (new-knext-is-a '({setting} {countable}) '({position} {countable})) (new-knext-is-a '({lie} {countable}) '({position} {countable})) (new-knext-is-a '({post} {countable}) '({position} {countable})) (new-knext-is-a '({right} {countable}) '({position} {countable})) (new-knext-is-a '({left} {countable}) '({position} {countable})) (new-knext-is-a '({back} {countable}) '({position} {countable})) (new-knext-is-a '({front} {countable}) '({position} {countable})) (new-knext-is-a '({municipality} {countable}) '({administrative district} {countable})) (new-knext-is-a '({municipality} {countable}) '({urban area} {countable})) (new-knext-is-a '({quarter} {countable}) '({city district} {countable})) (new-knext-is-a '({reach} {countable}) '({limit} {countable})) (new-knext-is-a '({range} {countable}) '({tract} {countable})) (new-knext-is-a '({backside} {countable}) '({side} {countable})) (new-knext-is-a '({region} {countable}) '({location} {countable})) (new-knext-is-a '({region} {countable}) '({location} {countable})) (new-knext-is-a '({open} {countable}) '({area} {countable})) (new-knext-is-a '({port} {countable}) '({geographic point} {countable})) (new-knext-is-a '({seaport} {countable}) '({port} {countable})) (new-knext-is-a '({resort} {countable}) '({hotel} {countable})) (new-knext-is-a '({resort area} {countable}) '({area} {countable})) (new-knext-is-a '({vicinity} {countable}) '({section} {countable})) (new-knext-is-a '({place} {countable}) '({vicinity} {countable})) (new-knext-is-a '({city block} {countable}) '({area} {countable})) (new-knext-is-a '({refuge} {countable}) '({area} {countable})) (new-knext-is-a '({danger} {countable}) '({area} {countable})) (new-knext-is-a '({rural area} {countable}) '({geographical area} {countable})) (new-knext-type {countryside} {uncountable}) (new-knext-type {rural area} {uncountable}) (new-statement {countryside} {consists of} {rural area}) (new-knext-is-a '({scene} {countable}) '({area} {countable})) (new-knext-is-a '({light} {countable}) '({scene} {countable})) (new-knext-is-a '({seat} {countable}) '({space} {countable})) (new-knext-is-a '({section} {countable}) '({area} {countable})) (new-knext-is-a '({side} {countable}) '({region} {countable})) (new-knext-is-a '({site} {countable}) '({tract} {countable})) (new-knext-is-a '({space} {countable}) '({area} {countable})) (new-knext-is-a '({vacuity} {countable}) '({region} {countable})) (new-knext-is-a '({sphere of influence} {countable}) '({geographical area} {countable})) (new-knext-is-a '({stand} {countable}) '({position} {countable})) (new-knext-is-a '({state} {countable}) '({administrative district} {countable})) (new-knext-is-a '({station} {countable}) '({position} {countable})) (new-knext-is-a '({stop} {countable}) '({topographic point} {countable})) (new-knext-is-a '({corner} {countable}) '({point} {countable})) (new-knext-is-a '({surface} {countable}) '({boundary} {countable})) (new-knext-is-a '({tip} {countable}) '({end} {countable})) (new-knext-is-a '({top side} {countable}) '({side} {countable})) (new-knext-is-a '({top} {countable}) '({region} {countable})) (new-knext-is-a '({head} {countable}) '({top} {countable})) (new-knext-is-a '({topographic point} {countable}) '({point} {countable})) (new-knext-is-a '({town} {countable}) '({municipality} {countable})) (new-knext-is-a '({township} {countable}) '({administrative district} {countable})) (new-knext-is-a '({ward} {countable}) '({administrative district} {countable})) (new-knext-is-a '({tract} {countable}) '({geographical area} {countable})) (new-knext-is-a '({plot of land} {countable}) '({tract} {countable})) (new-knext-is-a '({lot} {countable}) '({tract} {countable})) (new-knext-is-a '({urban area} {countable}) '({geographical area} {countable})) (new-knext-is-a '({watering place} {countable}) '({resort area} {countable})) (new-knext-is-a '({direction} {countable}) '({route} {countable})) (new-knext-is-a '({bearing} {countable}) '({direction} {countable})) (new-knext-is-a '({trend} {countable}) '({direction} {countable})) (new-knext-is-a '({trend} {countable}) '({direction} {countable})) (new-knext-is-a '({wild} {countable}) '({geographical area} {countable})) (new-knext-is-a '({sign of the zodiac} {countable}) '({region} {countable})) (new-knext-is-a '({zone} {countable}) '({topographic point} {countable})) (new-knext-is-a '({ethical motive} {countable}) '({motivation} {countable})) (new-knext-type {morals} {uncountable}) (new-knext-type {motivation} {uncountable}) (new-statement {morals} {consists of} {motivation}) (new-knext-is-a '({conscience} {countable}) '({ethical motive} {countable})) (new-knext-type {conscience} {countable}) (new-knext-type {morals} {countable}) (new-statement {morals} {consists of} {conscience}) (new-knext-type {scruples} {uncountable}) (new-knext-type {ethical motive} {uncountable}) (new-statement {scruples} {consists of} {ethical motive}) (new-knext-is-a '({scruples} {uncountable}) '({morals} {uncountable})) (new-knext-is-a '({archipelago} {countable}) '({dry land} {countable})) (new-knext-is-a '({ascent} {countable}) '({slope} {countable})) (new-knext-is-a '({atmosphere} {countable}) '({gas} {uncountable})) (new-knext-is-a '({bank} {countable}) '({slope} {countable})) (new-knext-is-a '({barrier} {countable}) '({mechanism} {countable})) (new-knext-is-a '({base} {countable}) '({part} {countable})) (new-knext-is-a '({bay} {countable}) '({body of water} {countable})) (new-knext-is-a '({beach} {countable}) '({geological formation} {countable})) (new-knext-is-a '({bed} {countable}) '({natural depression} {countable})) (new-knext-is-a '({chip} {countable}) '({fragment} {countable})) (new-knext-is-a '({body} {countable}) '({natural object} {countable})) (new-knext-is-a '({boulder} {countable}) '({rock} {countable})) (new-knext-is-a '({calculus} {countable}) '({rock} {countable})) (new-knext-is-a '({cave} {countable}) '({geological formation} {countable})) (new-knext-is-a '({celestial body} {countable}) '({natural object} {countable})) (new-knext-is-a '({chemical chain} {countable}) '({building block} {countable})) (new-knext-is-a '({channel} {countable}) '({body of water} {countable})) (new-knext-is-a '({cliff} {countable}) '({geological formation} {countable})) (new-knext-is-a '({cloud} {countable}) '({atmospheric phenomenon} {countable})) (new-knext-is-a '({comet} {countable}) '({extraterrestrial object} {countable})) (new-knext-is-a '({constellation} {countable}) '({natural object} {countable})) (new-knext-is-a '({corner} {countable}) '({part} {countable})) (new-knext-is-a '({covering} {countable}) '({natural object} {countable})) (new-knext-is-a '({crack} {countable}) '({opening} {countable})) (new-knext-is-a '({crust} {countable}) '({covering} {countable})) (new-knext-is-a '({declivity} {countable}) '({slope} {countable})) (new-knext-is-a '({discard} {countable}) '({object} {countable})) (new-knext-is-a '({drift} {countable}) '({mass} {countable})) (new-knext-is-a '({natural enclosure} {countable}) '({space} {countable})) (new-knext-is-a '({expanse} {countable}) '({space} {countable})) (new-knext-is-a '({extraterrestrial object} {countable}) '({natural object} {countable})) (new-knext-type {faulting} {uncountable}) (new-knext-type {crack} {uncountable}) (new-statement {faulting} {consists of} {crack}) (new-knext-is-a '({geological fault} {countable}) '({crack} {countable})) (new-knext-is-a '({finding} {countable}) '({object} {countable})) (new-knext-is-a '({flat} {countable}) '({plain} {countable})) (new-knext-is-a '({floater} {countable}) '({object} {countable})) (new-knext-is-a '({floor} {countable}) '({dry land} {countable})) (new-knext-is-a '({woodland} {countable}) '({dry land} {countable})) (new-knext-is-a '({woodland} {countable}) '({biome} {countable})) (new-knext-type {fossil} {countable}) (new-knext-type {remains} {countable}) (new-statement {remains} {consists of} {fossil}) (new-knext-is-a '({fragment} {countable}) '({part} {countable})) (new-knext-is-a '({geological formation} {countable}) '({object} {countable})) (new-knext-is-a '({grain} {countable}) '({particle} {countable})) (new-knext-is-a '({hill} {countable}) '({natural elevation} {countable})) (new-knext-is-a '({hole} {countable}) '({opening} {countable})) (new-knext-is-a '({hollow} {countable}) '({natural depression} {countable})) (new-knext-is-a '({hydrosphere} {countable}) '({layer} {countable})) (new-knext-is-a '({island} {countable}) '({dry land} {countable})) (new-knext-is-a '({lake} {countable}) '({body of water} {countable})) (new-knext-is-a '({dry land} {countable}) '({object} {countable})) (new-knext-is-a '({lithosphere} {countable}) '({layer} {countable})) (new-knext-is-a '({marsh} {countable}) '({wetland} {countable})) (new-knext-is-a '({mass} {countable}) '({body} {countable})) (new-knext-is-a '({meander} {countable}) '({curve} {countable})) (new-knext-is-a '({mechanism} {countable}) '({natural object} {countable})) (new-knext-is-a '({meteoroid} {countable}) '({extraterrestrial object} {countable})) (new-knext-is-a '({moon} {countable}) '({object} {countable})) (new-knext-is-a '({moorland} {countable}) '({plain} {countable})) (new-knext-is-a '({mountain} {countable}) '({natural elevation} {countable})) (new-knext-is-a '({mouth} {countable}) '({geological formation} {countable})) (new-knext-is-a '({mouth} {countable}) '({opening} {countable})) (new-knext-is-a '({natural depression} {countable}) '({geological formation} {countable})) (new-knext-is-a '({natural elevation} {countable}) '({geological formation} {countable})) (new-knext-is-a '({nature} {countable}) '({universe} {countable})) (new-knext-is-a '({neck} {countable}) '({dry land} {countable})) (new-knext-is-a '({need} {countable}) '({essential} {countable})) (new-knext-is-a '({nest} {countable}) '({natural object} {countable})) (new-knext-is-a '({ocean} {countable}) '({body of water} {countable})) (new-knext-is-a '({opening} {countable}) '({space} {countable})) (new-knext-is-a '({subatomic particle} {countable}) '({body} {countable})) (new-knext-is-a '({mountain pass} {countable}) '({location} {countable})) (new-knext-is-a '({perforation} {countable}) '({hole} {countable})) (new-knext-is-a '({pit} {countable}) '({hollow} {countable})) (new-knext-is-a '({plain} {countable}) '({dry land} {countable})) (new-knext-is-a '({planet} {countable}) '({celestial body} {countable})) (new-knext-is-a '({planet} {countable}) '({celestial body} {countable})) (new-knext-is-a '({puddle} {countable}) '({body of water} {countable})) (new-knext-is-a '({quicksand} {countable}) '({pit} {countable})) (new-knext-is-a '({rainbow} {countable}) '({arc} {countable})) (new-knext-is-a '({mountain range} {countable}) '({geological formation} {countable})) (new-knext-type {chain of mountains} {uncountable}) (new-knext-type {geological formation} {uncountable}) (new-statement {chain of mountains} {consists of} {geological formation}) (new-knext-type {remains} {uncountable}) (new-knext-type {object} {uncountable}) (new-statement {remains} {consists of} {object}) (new-knext-is-a '({ribbon} {countable}) '({object} {countable})) (new-knext-is-a '({ridgeline} {countable}) '({geological formation} {countable})) (new-knext-is-a '({rip} {countable}) '({opening} {countable})) (new-knext-is-a '({river} {countable}) '({stream} {countable})) (new-knext-is-a '({rivulet} {countable}) '({stream} {countable})) (new-knext-is-a '({rock} {countable}) '({natural object} {countable})) (new-knext-is-a '({row} {countable}) '({strip} {countable})) (new-knext-is-a '({sea} {countable}) '({body of water} {countable})) (new-knext-is-a '({seashore} {countable}) '({shore} {countable})) (new-knext-is-a '({section} {countable}) '({slice} {countable})) (new-knext-is-a '({sediment} {uncountable}) '({matter} {uncountable})) (new-knext-is-a '({segment} {countable}) '({part} {countable})) (new-knext-is-a '({eggshell} {countable}) '({covering} {countable})) (new-knext-is-a '({shore} {countable}) '({geological formation} {countable})) (new-knext-is-a '({slice} {countable}) '({part} {countable})) (new-knext-is-a '({slope} {countable}) '({geological formation} {countable})) (new-knext-is-a '({slot} {countable}) '({trail} {countable})) (new-knext-is-a '({slough} {countable}) '({covering} {countable})) (new-knext-is-a '({solar system} {countable}) '({system} {countable})) (new-knext-is-a '({split} {countable}) '({crack} {countable})) (new-knext-is-a '({outpouring} {countable}) '({geological formation} {countable})) (new-knext-is-a '({star} {countable}) '({celestial body} {countable})) (new-knext-is-a '({star} {countable}) '({celestial body} {countable})) (new-knext-is-a '({stream} {countable}) '({body of water} {countable})) (new-knext-is-a '({stretch} {countable}) '({expanse} {countable})) (new-knext-is-a '({strip} {countable}) '({part} {countable})) (new-knext-is-a '({swath} {countable}) '({track} {countable})) (new-knext-is-a '({terrestrial planet} {countable}) '({planet} {countable})) (new-knext-is-a '({trail} {countable}) '({track} {countable})) (new-knext-is-a '({universe} {countable}) '({natural object} {countable})) (new-knext-is-a '({vagabond} {countable}) '({object} {countable})) (new-knext-is-a '({valley} {countable}) '({natural depression} {countable})) (new-knext-is-a '({volcano} {countable}) '({mountain} {countable})) (new-knext-is-a '({waterfall} {countable}) '({body of water} {countable})) (new-knext-is-a '({water system} {countable}) '({system} {countable})) (new-knext-is-a '({imaginary being} {countable}) '({imagination} {uncountable})) (new-knext-is-a '({imaginary being} {countable}) '({vision} {countable})) (new-knext-is-a '({nature} {countable}) '({causal agent} {countable})) (new-knext-is-a '({supernatural} {countable}) '({causal agent} {countable})) (new-knext-is-a '({occult} {uncountable}) '({causal agent} {countable})) (new-knext-is-a '({spiritual being} {countable}) '({belief} {countable})) (new-knext-type {causal agent} {countable}) (new-knext-indv {destiny} {causal agent}) (new-knext-is-a '({deity} {countable}) '({spiritual being} {countable})) (new-knext-is-a '({angel} {countable}) '({spiritual being} {countable})) (new-knext-is-a '({fairy} {countable}) '({spiritual being} {countable})) (new-knext-is-a '({disembodied spirit} {countable}) '({spiritual being} {countable})) (new-knext-is-a '({ghost} {countable}) '({soul} {countable})) (new-knext-is-a '({fictional character} {countable}) '({imaginary being} {countable})) (new-knext-is-a '({adult} {countable}) '({person} {countable})) (new-knext-is-a '({adventurer} {countable}) '({person} {countable})) (new-knext-is-a '({unusual person} {countable}) '({person} {countable})) (new-knext-is-a '({applicant} {countable}) '({person} {countable})) (new-knext-is-a '({appointee} {countable}) '({person} {countable})) (new-knext-is-a '({attendee} {countable}) '({participant} {countable})) (new-knext-is-a '({capitalist} {countable}) '({person} {countable})) (new-knext-is-a '({caster} {countable}) '({worker} {countable})) (new-knext-is-a '({changer} {countable}) '({person} {countable})) (new-knext-is-a '({communicator} {countable}) '({person} {countable})) (new-knext-is-a '({consumer} {countable}) '({user} {countable})) (new-knext-is-a '({contestant} {countable}) '({person} {countable})) (new-knext-is-a '({coward} {countable}) '({person} {countable})) (new-knext-is-a '({creator} {countable}) '({person} {countable})) (new-knext-is-a '({defender} {countable}) '({preserver} {countable})) (new-knext-is-a '({defender} {countable}) '({combatant} {countable})) (new-knext-is-a '({discussant} {countable}) '({participant} {countable})) (new-knext-is-a '({engineer} {countable}) '({person} {countable})) (new-knext-is-a '({entertainer} {countable}) '({person} {countable})) (new-knext-is-a '({expert} {countable}) '({person} {countable})) (new-knext-is-a '({exponent} {countable}) '({intellectual} {countable})) (new-knext-is-a '({face} {countable}) '({person} {countable})) (new-knext-is-a '({female person} {countable}) '({person} {countable})) (new-knext-is-a '({inhabitant} {countable}) '({person} {countable})) (new-knext-is-a '({native} {countable}) '({person} {countable})) (new-knext-is-a '({intellectual} {countable}) '({person} {countable})) (new-knext-is-a '({juvenile} {countable}) '({person} {countable})) (new-knext-is-a '({lover} {countable}) '({person} {countable})) (new-knext-is-a '({lover} {countable}) '({domestic partner} {countable})) (new-knext-is-a '({leader} {countable}) '({person} {countable})) (new-knext-is-a '({male person} {countable}) '({person} {countable})) (new-knext-is-a '({mediator} {countable}) '({negotiator} {countable})) (new-knext-is-a '({national} {countable}) '({person} {countable})) (new-knext-is-a '({nonreligious person} {countable}) '({person} {countable})) (new-knext-is-a '({nonworker} {countable}) '({person} {countable})) (new-knext-is-a '({peer} {countable}) '({person} {countable})) (new-knext-is-a '({perceiver} {countable}) '({person} {countable})) (new-knext-is-a '({recipient} {countable}) '({acquirer} {countable})) (new-knext-is-a '({religious person} {countable}) '({person} {countable})) (new-knext-is-a '({traveler} {countable}) '({person} {countable})) (new-knext-is-a '({unfortunate} {countable}) '({person} {countable})) (new-knext-is-a '({unskilled person} {countable}) '({person} {countable})) (new-knext-is-a '({worker} {countable}) '({person} {countable})) (new-knext-is-a '({abstinent} {countable}) '({person} {countable})) (new-knext-is-a '({abstainer} {countable}) '({religious person} {countable})) (new-knext-is-a '({academic administrator} {countable}) '({administrator} {countable})) (new-knext-is-a '({academic} {countable}) '({educator} {countable})) (new-knext-is-a '({accountant} {countable}) '({businessperson} {countable})) (new-knext-is-a '({adept} {countable}) '({expert} {countable})) (new-knext-is-a '({achiever} {countable}) '({person} {countable})) (new-knext-is-a '({acquaintance} {countable}) '({person} {countable})) (new-knext-is-a '({acquirer} {countable}) '({person} {countable})) (new-knext-is-a '({actor} {countable}) '({performer} {countable})) (new-knext-is-a '({doer} {countable}) '({person} {countable})) (new-knext-is-a '({addressee} {countable}) '({recipient} {countable})) (new-knext-is-a '({adjudicator} {countable}) '({person} {countable})) (new-knext-is-a '({adjuster} {countable}) '({investigator} {countable})) (new-knext-is-a '({administrator} {countable}) '({chief} {countable})) (new-knext-is-a '({administrator} {countable}) '({chief} {countable})) (new-knext-is-a '({adorer} {countable}) '({lover} {countable})) (new-knext-is-a '({admirer} {countable}) '({person} {countable})) (new-knext-is-a '({adolescent} {countable}) '({juvenile} {countable})) (new-knext-is-a '({advancer} {countable}) '({mover} {countable})) (new-knext-is-a '({adversary} {countable}) '({person} {countable})) (new-knext-is-a '({adviser} {countable}) '({authority} {countable})) (new-knext-is-a '({advocate} {countable}) '({person} {countable})) (new-knext-is-a '({broker} {countable}) '({businessperson} {countable})) (new-knext-is-a '({agent} {countable}) '({representative} {countable})) (new-knext-is-a '({agriculturist} {countable}) '({farmer} {countable})) (new-knext-is-a '({air force officer} {countable}) '({serviceman} {countable})) (new-knext-is-a '({alleviator} {countable}) '({therapist} {countable})) (new-knext-is-a '({allocator} {countable}) '({authority} {countable})) (new-knext-is-a '({ally} {countable}) '({associate} {countable})) (new-knext-is-a '({alumnus} {countable}) '({scholar} {countable})) (new-knext-is-a '({amateur} {countable}) '({person} {countable})) (new-knext-is-a '({amalgamator} {countable}) '({businessman} {countable})) (new-knext-is-a '({amputator} {countable}) '({surgeon} {countable})) (new-knext-is-a '({analyst} {countable}) '({expert} {countable})) (new-knext-is-a '({ancestor} {countable}) '({relative} {countable})) (new-knext-is-a '({annihilator} {countable}) '({ruiner} {countable})) (new-knext-is-a '({announcer} {countable}) '({communicator} {countable})) (new-knext-is-a '({apple polisher} {countable}) '({sycophant} {countable})) (new-knext-is-a '({appointee} {countable}) '({official} {countable})) (new-knext-is-a '({apprehender} {countable}) '({person} {countable})) (new-knext-is-a '({appraiser} {countable}) '({evaluator} {countable})) (new-knext-is-a '({architect} {countable}) '({creator} {countable})) (new-knext-is-a '({arriver} {countable}) '({traveler} {countable})) (new-knext-is-a '({arrogator} {countable}) '({person} {countable})) (new-knext-is-a '({articulator} {countable}) '({communicator} {countable})) (new-knext-is-a '({artist} {countable}) '({creator} {countable})) (new-knext-is-a '({asserter} {countable}) '({communicator} {countable})) (new-knext-is-a '({assistant} {countable}) '({worker} {countable})) (new-knext-type {help} {uncountable}) (new-knext-type {worker} {uncountable}) (new-statement {help} {consists of} {worker}) (new-knext-is-a '({associate} {countable}) '({peer} {countable})) (new-knext-is-a '({athlete} {countable}) '({contestant} {countable})) (new-knext-is-a '({attacker} {countable}) '({wrongdoer} {countable})) (new-knext-is-a '({auditor} {countable}) '({student} {countable})) (new-knext-is-a '({authority} {countable}) '({expert} {countable})) (new-knext-is-a '({authority} {countable}) '({person} {countable})) (new-knext-is-a '({authorizer} {countable}) '({authority} {countable})) (new-knext-is-a '({aviator} {countable}) '({skilled worker} {countable})) (new-knext-is-a '({baby} {countable}) '({child} {countable})) (new-knext-is-a '({barker} {countable}) '({promoter} {countable})) (new-knext-is-a '({big businessman} {countable}) '({businessman} {countable})) (new-knext-is-a '({believer} {countable}) '({supporter} {countable})) (new-knext-is-a '({beloved} {countable}) '({lover} {countable})) (new-knext-is-a '({beneficiary} {countable}) '({recipient} {countable})) (new-knext-is-a '({besieger} {countable}) '({foe} {countable})) (new-knext-is-a '({bettor} {countable}) '({gambler} {countable})) (new-knext-is-a '({biter} {countable}) '({person} {countable})) (new-knext-is-a '({bomber} {countable}) '({person} {countable})) (new-knext-is-a '({booker} {countable}) '({agent} {countable})) (new-knext-is-a '({borrower} {countable}) '({recipient} {countable})) (new-knext-is-a '({briber} {countable}) '({criminal} {countable})) (new-knext-is-a '({bride} {countable}) '({participant} {countable})) (new-knext-is-a '({comrade} {countable}) '({friend} {countable})) (new-knext-is-a '({buddy} {countable}) '({friend} {countable})) (new-knext-is-a '({cop} {countable}) '({policeman} {countable})) (new-knext-is-a '({businessman} {countable}) '({businessperson} {countable})) (new-knext-is-a '({businessperson} {countable}) '({capitalist} {countable})) (new-knext-is-a '({buster} {countable}) '({person} {countable})) (new-knext-is-a '({buyer} {countable}) '({customer} {countable})) (new-knext-is-a '({calculator} {countable}) '({expert} {countable})) (new-knext-is-a '({caller} {countable}) '({visitor} {countable})) (new-knext-is-a '({caller} {countable}) '({leader} {countable})) (new-knext-is-a '({caller} {countable}) '({announcer} {countable})) (new-knext-is-a '({caller} {countable}) '({bettor} {countable})) (new-knext-is-a '({campaigner} {countable}) '({politico} {countable})) (new-knext-is-a '({carrier} {countable}) '({traveler} {countable})) (new-knext-is-a '({casualty} {countable}) '({victim} {countable})) (new-knext-is-a '({catch} {countable}) '({adult} {countable})) (new-knext-is-a '({caterer} {countable}) '({supplier} {countable})) (new-knext-is-a '({celebrant} {countable}) '({person} {countable})) (new-knext-is-a '({census taker} {countable}) '({official} {countable})) (new-knext-is-a '({champion} {countable}) '({rival} {countable})) (new-knext-is-a '({chancellor} {countable}) '({head of state} {countable})) (new-knext-is-a '({chap} {countable}) '({male person} {countable})) (new-knext-is-a '({eccentric} {countable}) '({adult} {countable})) (new-knext-is-a '({chatterer} {countable}) '({speaker} {countable})) (new-knext-is-a '({checker} {countable}) '({examiner} {countable})) (new-knext-is-a '({chewer} {countable}) '({consumer} {countable})) (new-knext-is-a '({child} {countable}) '({juvenile} {countable})) (new-knext-is-a '({child} {countable}) '({offspring} {countable})) (new-knext-is-a '({chimneysweeper} {countable}) '({cleaner} {countable})) (new-knext-is-a '({citizen} {countable}) '({national} {countable})) (new-knext-is-a '({civilian} {countable}) '({citizen} {countable})) (new-knext-is-a '({claimant} {countable}) '({applicant} {countable})) (new-knext-is-a '({classifier} {countable}) '({thinker} {countable})) (new-knext-is-a '({cleaner} {countable}) '({laborer} {countable})) (add-english-names (list {employe} {employee} {employee}) (list "employe" "employee" "employee")) (new-knext-is-a '({climber} {countable}) '({athlete} {countable})) (new-knext-is-a '({private instructor} {countable}) '({teacher} {countable})) (new-knext-is-a '({coach} {countable}) '({trainer} {countable})) (new-knext-is-a '({colleague} {countable}) '({associate} {countable})) (new-knext-is-a '({colorist} {countable}) '({painter} {countable})) (new-knext-is-a '({combatant} {countable}) '({person} {countable})) (new-knext-is-a '({commander} {countable}) '({leader} {countable})) (new-knext-is-a '({commanding officer} {countable}) '({military officer} {countable})) (new-knext-is-a '({companion} {countable}) '({friend} {countable})) (new-knext-is-a '({companion} {countable}) '({traveler} {countable})) (new-knext-is-a '({composer} {countable}) '({musician} {countable})) (new-knext-is-a '({conductor} {countable}) '({musician} {countable})) (new-knext-is-a '({confessor} {countable}) '({communicator} {countable})) (new-knext-is-a '({swindler} {countable}) '({deceiver} {countable})) (new-knext-is-a '({connection} {countable}) '({supplier} {countable})) (new-knext-is-a '({connection} {countable}) '({acquaintance} {countable})) (new-knext-is-a '({consignee} {countable}) '({recipient} {countable})) (new-knext-is-a '({consigner} {countable}) '({shipper} {countable})) (new-knext-is-a '({middleman} {countable}) '({representative} {countable})) (new-knext-is-a '({contemporary} {countable}) '({peer} {countable})) (new-knext-is-a '({convalescent} {countable}) '({sick person} {countable})) (new-knext-is-a '({cook} {countable}) '({skilled worker} {countable})) (new-knext-is-a '({copycat} {countable}) '({person} {countable})) (add-english-names (list {employe} {employee} {employee}) (list "employe" "employee" "employee")) (new-knext-is-a '({corporate executive} {countable}) '({executive} {countable})) (new-knext-is-a '({counter} {countable}) '({person} {countable})) (new-knext-is-a '({counterspy} {countable}) '({spy} {countable})) (new-knext-is-a '({cousin} {countable}) '({relative} {countable})) (new-knext-is-a '({couturier} {countable}) '({creator} {countable})) (new-knext-is-a '({crackpot} {countable}) '({eccentric} {countable})) (new-knext-is-a '({artisan} {countable}) '({skilled worker} {countable})) (new-knext-is-a '({crawler} {countable}) '({person} {countable})) (new-knext-is-a '({wight} {countable}) '({person} {countable})) (new-knext-is-a '({critic} {countable}) '({professional} {countable})) (new-knext-is-a '({customer} {countable}) '({consumer} {countable})) (new-knext-is-a '({cyclist} {countable}) '({pedaler} {countable})) (new-knext-is-a '({dad} {countable}) '({father} {countable})) (new-knext-is-a '({madam} {countable}) '({woman} {countable})) (new-knext-is-a '({dancer} {countable}) '({performer} {countable})) (new-knext-is-a '({social dancer} {countable}) '({person} {countable})) (new-knext-is-a '({darling} {countable}) '({lover} {countable})) (new-knext-is-a '({date} {countable}) '({companion} {countable})) (new-knext-is-a '({daughter} {countable}) '({female offspring} {countable})) (new-knext-is-a '({dead person} {countable}) '({person} {countable})) (new-knext-is-a '({deceiver} {countable}) '({wrongdoer} {countable})) (new-knext-is-a '({delegate} {countable}) '({representative} {countable})) (new-knext-is-a '({deliverer} {countable}) '({person} {countable})) (add-english-names (list {employe} {employee} {employee}) (list "employe" "employee" "employee")) (new-knext-is-a '({demander} {countable}) '({person} {countable})) (new-knext-is-a '({demonstrator} {countable}) '({teacher} {countable})) (new-knext-is-a '({dentist} {countable}) '({medical practitioner} {countable})) (new-knext-is-a '({depositor} {countable}) '({investor} {countable})) (new-knext-is-a '({surrogate} {countable}) '({agent} {countable})) (new-knext-is-a '({descendant} {countable}) '({relative} {countable})) (new-knext-is-a '({detective} {countable}) '({policeman} {countable})) (new-knext-is-a '({dictator} {countable}) '({speaker} {countable})) (new-knext-is-a '({differentiator} {countable}) '({person} {countable})) (new-knext-is-a '({diplomat} {countable}) '({official} {countable})) (new-knext-is-a '({director} {countable}) '({administrator} {countable})) (new-knext-is-a '({disciple} {countable}) '({follower} {countable})) (add-english-names (list {employe} {employee} {employee}) (list "employe" "employee" "employee")) (new-knext-is-a '({dispenser} {countable}) '({supplier} {countable})) (new-knext-is-a '({dissenter} {countable}) '({person} {countable})) (new-knext-is-a '({divider} {countable}) '({person} {countable})) (new-knext-is-a '({doctor} {countable}) '({medical practitioner} {countable})) (new-knext-is-a '({domestic} {countable}) '({servant} {countable})) (new-knext-is-a '({domestic partner} {countable}) '({person} {countable})) (new-knext-is-a '({donor} {countable}) '({benefactor} {countable})) (new-knext-is-a '({donor} {countable}) '({benefactor} {countable})) (new-knext-is-a '({draftsman} {countable}) '({artist} {countable})) (new-knext-is-a '({drawee} {countable}) '({payer} {countable})) (new-knext-is-a '({dreamer} {countable}) '({sleeper} {countable})) (new-knext-is-a '({imbiber} {countable}) '({consumer} {countable})) (new-knext-is-a '({drinker} {countable}) '({consumer} {countable})) (add-english-names (list {driveler} {driveller} {driveller}) (list "driveler" "driveller" "driveller")) (new-knext-is-a '({driver} {countable}) '({manipulator} {countable})) (new-knext-is-a '({peon} {countable}) '({laborer} {countable})) (new-knext-is-a '({drug user} {countable}) '({person} {countable})) (new-knext-is-a '({eater} {countable}) '({consumer} {countable})) (new-knext-is-a '({eccentric} {countable}) '({person} {countable})) (new-knext-is-a '({educator} {countable}) '({professional} {countable})) (new-knext-is-a '({effecter} {countable}) '({person} {countable})) (add-english-names (list {employe} {employee} {employee}) (list "employe" "employee" "employee")) (new-knext-is-a '({employer} {countable}) '({leader} {countable})) (new-knext-is-a '({foe} {countable}) '({adversary} {countable})) (new-knext-is-a '({energizer} {countable}) '({doer} {countable})) (new-knext-is-a '({enlisted person} {countable}) '({serviceman} {countable})) (new-knext-is-a '({enrollee} {countable}) '({person} {countable})) (new-knext-is-a '({eunuch} {countable}) '({man} {countable})) (new-knext-is-a '({evaluator} {countable}) '({authority} {countable})) (new-knext-is-a '({examiner} {countable}) '({investigator} {countable})) (new-knext-is-a '({examiner} {countable}) '({inquirer} {countable})) (new-knext-is-a '({executant} {countable}) '({performer} {countable})) (new-knext-is-a '({executive} {countable}) '({administrator} {countable})) (new-knext-is-a '({exhibitor} {countable}) '({impresario} {countable})) (new-knext-is-a '({explorer} {countable}) '({person} {countable})) (new-knext-is-a '({facilitator} {countable}) '({assistant} {countable})) (new-knext-type {facilitator} {countable}) (new-knext-type {help} {countable}) (new-statement {help} {consists of} {facilitator}) (new-knext-is-a '({buff} {countable}) '({follower} {countable})) (new-knext-is-a '({farmer} {countable}) '({creator} {countable})) (new-knext-is-a '({fastener} {countable}) '({person} {countable})) (new-knext-is-a '({father} {countable}) '({parent} {countable})) (new-knext-is-a '({female offspring} {countable}) '({female person} {countable})) (new-knext-is-a '({female offspring} {countable}) '({child} {countable})) (new-knext-is-a '({female child} {countable}) '({female person} {countable})) (new-knext-is-a '({film maker} {countable}) '({producer} {countable})) (new-knext-is-a '({finder} {countable}) '({perceiver} {countable})) (new-knext-is-a '({finder} {countable}) '({seeker} {countable})) (new-knext-is-a '({firefighter} {countable}) '({defender} {countable})) (new-knext-is-a '({fisherman} {countable}) '({skilled worker} {countable})) (new-knext-is-a '({flatterer} {countable}) '({follower} {countable})) (new-knext-is-a '({flier} {countable}) '({traveler} {countable})) (new-knext-is-a '({floater} {countable}) '({natator} {countable})) (new-knext-is-a '({follower} {countable}) '({person} {countable})) (new-knext-is-a '({follower} {countable}) '({traveler} {countable})) (new-knext-is-a '({forebear} {countable}) '({ancestor} {countable})) (new-knext-is-a '({foreigner} {countable}) '({traveler} {countable})) (new-knext-is-a '({foreman} {countable}) '({supervisor} {countable})) (new-knext-is-a '({counterfeiter} {countable}) '({deceiver} {countable})) (new-knext-is-a '({founder} {countable}) '({originator} {countable})) (new-knext-is-a '({freak} {countable}) '({mutant} {countable})) (new-knext-type {mutant} {countable}) (new-knext-indv {lusus naturae} {mutant}) (new-knext-is-a '({friend} {countable}) '({person} {countable})) (new-knext-is-a '({fucker} {countable}) '({fool} {countable})) (new-knext-is-a '({fugitive} {countable}) '({person} {countable})) (new-knext-is-a '({gainer} {countable}) '({person} {countable})) (new-knext-is-a '({gainer} {countable}) '({person} {countable})) (new-knext-is-a '({gambler} {countable}) '({person} {countable})) (new-knext-is-a '({risk taker} {countable}) '({adventurer} {countable})) (new-knext-is-a '({garroter} {countable}) '({killer} {countable})) (new-knext-is-a '({genitor} {countable}) '({progenitor} {countable})) (new-knext-is-a '({progenitor} {countable}) '({ancestor} {countable})) (new-knext-is-a '({genius} {countable}) '({intellectual} {countable})) (new-knext-is-a '({gentleman} {countable}) '({man} {countable})) (new-knext-is-a '({ghostwriter} {countable}) '({writer} {countable})) (new-knext-is-a '({girl} {countable}) '({woman} {countable})) (new-knext-is-a '({lady friend} {countable}) '({lover} {countable})) (new-knext-is-a '({lady friend} {countable}) '({woman} {countable})) (new-knext-is-a '({governor} {countable}) '({politician} {countable})) (new-knext-is-a '({grandfather} {countable}) '({grandparent} {countable})) (new-knext-is-a '({grandma} {countable}) '({grandparent} {countable})) (new-knext-is-a '({grandparent} {countable}) '({forebear} {countable})) (new-knext-is-a '({grantee} {countable}) '({recipient} {countable})) (new-knext-is-a '({granter} {countable}) '({person} {countable})) (new-knext-is-a '({greeter} {countable}) '({person} {countable})) (new-knext-is-a '({guard} {countable}) '({defender} {countable})) (new-knext-is-a '({guerrilla} {countable}) '({warrior} {countable})) (new-knext-is-a '({guesser} {countable}) '({person} {countable})) (new-knext-is-a '({guest} {countable}) '({visitor} {countable})) (new-knext-is-a '({guide} {countable}) '({leader} {countable})) (new-knext-is-a '({gunman} {countable}) '({murderer} {countable})) (new-knext-is-a '({hack} {countable}) '({unskilled person} {countable})) (new-knext-is-a '({handler} {countable}) '({agent} {countable})) (new-knext-is-a '({hanger} {countable}) '({worker} {countable})) (new-knext-is-a '({harrier} {countable}) '({attacker} {countable})) (new-knext-is-a '({harasser} {countable}) '({tormentor} {countable})) (new-knext-is-a '({chief} {countable}) '({leader} {countable})) (new-knext-is-a '({head of state} {countable}) '({representative} {countable})) (new-knext-is-a '({health professional} {countable}) '({professional} {countable})) (new-knext-is-a '({hearer} {countable}) '({perceiver} {countable})) (new-knext-is-a '({heir} {countable}) '({recipient} {countable})) (new-knext-is-a '({highjacker} {countable}) '({criminal} {countable})) (new-knext-is-a '({hiker} {countable}) '({pedestrian} {countable})) (new-knext-is-a '({hired hand} {countable}) '({laborer} {countable})) (new-knext-is-a '({historian} {countable}) '({scholar} {countable})) (new-knext-is-a '({hitchhiker} {countable}) '({passenger} {countable})) (new-knext-is-a '({hitter} {countable}) '({mover} {countable})) (new-knext-is-a '({hobbler} {countable}) '({pedestrian} {countable})) (new-knext-is-a '({holder} {countable}) '({capitalist} {countable})) (new-knext-is-a '({holdout} {countable}) '({negotiator} {countable})) (new-knext-is-a '({honker} {countable}) '({driver} {countable})) (new-knext-is-a '({hope} {countable}) '({person} {countable})) (new-knext-is-a '({hoper} {countable}) '({person} {countable})) (new-knext-is-a '({host} {countable}) '({adult} {countable})) (new-knext-is-a '({hostage} {countable}) '({prisoner} {countable})) (new-knext-is-a '({housewife} {countable}) '({wife} {countable})) (new-knext-is-a '({humanitarian} {countable}) '({benefactor} {countable})) (new-knext-is-a '({hummer} {countable}) '({singer} {countable})) (new-knext-is-a '({hunter} {countable}) '({skilled worker} {countable})) (new-knext-is-a '({husband} {countable}) '({spouse} {countable})) (new-knext-is-a '({important person} {countable}) '({adult} {countable})) (new-knext-is-a '({imposter} {countable}) '({deceiver} {countable})) (new-knext-is-a '({individual} {countable}) '({organism} {countable})) (new-knext-is-a '({inferior} {countable}) '({follower} {countable})) (new-knext-is-a '({informant} {countable}) '({communicator} {countable})) (new-knext-is-a '({informer} {countable}) '({informant} {countable})) (new-knext-is-a '({inquirer} {countable}) '({speaker} {countable})) (new-knext-is-a '({insider} {countable}) '({corporate executive} {countable})) (new-knext-is-a '({initiator} {countable}) '({leader} {countable})) (new-knext-is-a '({interior decorator} {countable}) '({specialist} {countable})) (new-knext-is-a '({inventor} {countable}) '({creator} {countable})) (new-knext-is-a '({investigator} {countable}) '({expert} {countable})) (new-knext-is-a '({investor} {countable}) '({capitalist} {countable})) (new-knext-is-a '({joiner} {countable}) '({member} {countable})) (new-knext-is-a '({journalist} {countable}) '({writer} {countable})) (new-knext-is-a '({judge} {countable}) '({adjudicator} {countable})) (new-knext-is-a '({judge} {countable}) '({official} {countable})) (new-knext-is-a '({killer} {countable}) '({person} {countable})) (new-knext-is-a '({king} {countable}) '({sovereign} {countable})) (new-knext-is-a '({relative} {countable}) '({person} {countable})) (new-knext-type {kin} {uncountable}) (new-knext-type {relative} {uncountable}) (new-statement {kin} {consists of} {relative}) (new-knext-is-a '({kinsperson} {countable}) '({relative} {countable})) (new-knext-is-a '({kinsman} {countable}) '({relative} {countable})) (new-knext-is-a '({knower} {countable}) '({person} {countable})) (new-knext-is-a '({lady} {countable}) '({woman} {countable})) (new-knext-is-a '({landlord} {countable}) '({landowner} {countable})) (new-knext-is-a '({laudator} {countable}) '({communicator} {countable})) (new-knext-is-a '({laugher} {countable}) '({person} {countable})) (new-knext-is-a '({lawman} {countable}) '({defender} {countable})) (new-knext-is-a '({lawyer} {countable}) '({professional} {countable})) (new-knext-is-a '({learner} {countable}) '({person} {countable})) (new-knext-is-a '({lecturer} {countable}) '({educator} {countable})) (new-knext-is-a '({lecturer} {countable}) '({speaker} {countable})) (new-knext-is-a '({lender} {countable}) '({investor} {countable})) (new-knext-is-a '({leveler} {countable}) '({radical} {countable})) (new-knext-is-a '({liar} {countable}) '({deceiver} {countable})) (new-knext-is-a '({life} {countable}) '({person} {countable})) (new-knext-is-a '({liver} {countable}) '({inhabitant} {countable})) (new-knext-is-a '({liver} {countable}) '({person} {countable})) (new-knext-is-a '({lodger} {countable}) '({tenant} {countable})) (new-knext-is-a '({longer} {countable}) '({person} {countable})) (new-knext-is-a '({lookout} {countable}) '({watchman} {countable})) (new-knext-is-a '({loser} {countable}) '({gambler} {countable})) (new-knext-is-a '({nonstarter} {countable}) '({unfortunate} {countable})) (new-knext-is-a '({lumberman} {countable}) '({laborer} {countable})) (new-knext-is-a '({maestro} {countable}) '({artist} {countable})) (new-knext-is-a '({maid} {countable}) '({domestic} {countable})) (new-knext-is-a '({mailer} {countable}) '({person} {countable})) (new-knext-is-a '({mailman} {countable}) '({deliveryman} {countable})) (new-knext-is-a '({maker} {countable}) '({creator} {countable})) (new-knext-is-a '({male child} {countable}) '({male person} {countable})) (new-knext-is-a '({male offspring} {countable}) '({male person} {countable})) (new-knext-is-a '({male offspring} {countable}) '({child} {countable})) (new-knext-is-a '({man} {countable}) '({adult} {countable})) (new-knext-is-a '({man} {countable}) '({male person} {countable})) (new-knext-is-a '({man} {countable}) '({lover} {countable})) (new-knext-is-a '({man} {countable}) '({male person} {countable})) (new-knext-is-a '({man} {countable}) '({person} {countable})) (new-knext-is-a '({maneuverer} {countable}) '({planner} {countable})) (new-knext-is-a '({manipulator} {countable}) '({person} {countable})) (new-knext-is-a '({mannequin} {countable}) '({assistant} {countable})) (new-knext-type {mannequin} {countable}) (new-knext-type {help} {countable}) (new-statement {help} {consists of} {mannequin}) (new-knext-is-a '({producer} {countable}) '({maker} {countable})) (new-knext-is-a '({martyr} {countable}) '({victim} {countable})) (new-knext-is-a '({professional} {countable}) '({authority} {countable})) (new-knext-is-a '({master of ceremonies} {countable}) '({entertainer} {countable})) (new-knext-is-a '({mate} {countable}) '({animal} {countable})) (new-knext-is-a '({mayor} {countable}) '({civil authority} {countable})) (new-knext-is-a '({mayor} {countable}) '({politician} {countable})) (new-knext-is-a '({measurer} {countable}) '({person} {countable})) (new-knext-is-a '({medical practitioner} {countable}) '({health professional} {countable})) (new-knext-is-a '({melter} {countable}) '({worker} {countable})) (new-knext-is-a '({member} {countable}) '({associate} {countable})) (new-knext-is-a '({nonmember} {countable}) '({person} {countable})) (new-knext-is-a '({mender} {countable}) '({skilled worker} {countable})) (new-knext-is-a '({merchant} {countable}) '({businessperson} {countable})) (new-knext-is-a '({military officer} {countable}) '({serviceman} {countable})) (new-knext-is-a '({miner} {countable}) '({laborer} {countable})) (new-knext-is-a '({government minister} {countable}) '({executive} {countable})) (new-knext-is-a '({misleader} {countable}) '({deceiver} {countable})) (new-knext-is-a '({misleader} {countable}) '({leader} {countable})) (new-knext-is-a '({poser} {countable}) '({assistant} {countable})) (new-knext-type {poser} {countable}) (new-knext-type {help} {countable}) (new-statement {help} {consists of} {poser}) (new-knext-is-a '({role model} {countable}) '({leader} {countable})) (new-knext-is-a '({hero} {countable}) '({leader} {countable})) (new-knext-is-a '({nonpareil} {countable}) '({role model} {countable})) (new-knext-is-a '({mollycoddle} {countable}) '({darling} {countable})) (new-knext-is-a '({mother} {countable}) '({parent} {countable})) (new-knext-is-a '({motorist} {countable}) '({driver} {countable})) (new-knext-is-a '({mourner} {countable}) '({unfortunate} {countable})) (new-knext-is-a '({mouthpiece} {countable}) '({spokesperson} {countable})) (new-knext-is-a '({mover} {countable}) '({traveler} {countable})) (new-knext-is-a '({murderer} {countable}) '({criminal} {countable})) (new-knext-is-a '({murderer} {countable}) '({killer} {countable})) (new-knext-is-a '({muser} {countable}) '({thinker} {countable})) (new-knext-is-a '({musician} {countable}) '({artist} {countable})) (new-knext-is-a '({musician} {countable}) '({performer} {countable})) (new-knext-is-a '({mutant} {countable}) '({organism} {countable})) (new-knext-is-a '({mutterer} {countable}) '({speaker} {countable})) (new-knext-is-a '({nailer} {countable}) '({worker} {countable})) (new-knext-is-a '({namer} {countable}) '({person} {countable})) (new-knext-is-a '({narrator} {countable}) '({speaker} {countable})) (new-knext-is-a '({negotiator} {countable}) '({communicator} {countable})) (new-knext-is-a '({neighbor} {countable}) '({person} {countable})) (new-knext-is-a '({nephew} {countable}) '({kinsman} {countable})) (new-knext-is-a '({newcomer} {countable}) '({beginner} {countable})) (new-knext-is-a '({newcomer} {countable}) '({arriver} {countable})) (new-knext-is-a '({nibbler} {countable}) '({biter} {countable})) (new-knext-is-a '({beginner} {countable}) '({unskilled person} {countable})) (new-knext-is-a '({nurse} {countable}) '({health professional} {countable})) (new-knext-is-a '({occupier} {countable}) '({serviceman} {countable})) (new-knext-is-a '({offerer} {countable}) '({benefactor} {countable})) (new-knext-is-a '({official} {countable}) '({skilled worker} {countable})) (new-knext-is-a '({federal agent} {countable}) '({official} {countable})) (new-knext-is-a '({offspring} {countable}) '({relative} {countable})) (new-knext-is-a '({oldster} {countable}) '({adult} {countable})) (new-knext-is-a '({manipulator} {countable}) '({causal agent} {countable})) (new-knext-is-a '({opponent} {countable}) '({contestant} {countable})) (add-english-names (list {systemizer} {systemiser} {systemizer} {systematiser} {systematizer} {systemiser} {systematizer} {systematiser}) (list "systemizer" "systemiser" "systemizer" "systematiser" "systematizer" "systemiser" "systematizer" "systematiser")) (new-knext-is-a '({organizer} {countable}) '({thinker} {countable})) (new-knext-is-a '({originator} {countable}) '({creator} {countable})) (new-knext-is-a '({overlord} {countable}) '({ruler} {countable})) (new-knext-is-a '({owner} {countable}) '({businessman} {countable})) (new-knext-is-a '({possessor} {countable}) '({person} {countable})) (new-knext-is-a '({painter} {countable}) '({artist} {countable})) (new-knext-is-a '({painter} {countable}) '({skilled worker} {countable})) (new-knext-is-a '({pallbearer} {countable}) '({mourner} {countable})) (new-knext-is-a '({pamperer} {countable}) '({person} {countable})) (new-knext-is-a '({pardoner} {countable}) '({person} {countable})) (new-knext-is-a '({parent} {countable}) '({genitor} {countable})) (new-knext-is-a '({partaker} {countable}) '({participant} {countable})) (new-knext-is-a '({participant} {countable}) '({associate} {countable})) (new-knext-is-a '({partner} {countable}) '({person} {countable})) (new-knext-is-a '({party} {countable}) '({person} {countable})) (new-knext-is-a '({passenger} {countable}) '({traveler} {countable})) (new-knext-is-a '({passerby} {countable}) '({pedestrian} {countable})) (new-knext-is-a '({patient} {countable}) '({sick person} {countable})) (new-knext-is-a '({patriot} {countable}) '({national} {countable})) (new-knext-is-a '({sponsor} {countable}) '({benefactor} {countable})) (new-knext-is-a '({payee} {countable}) '({recipient} {countable})) (new-knext-is-a '({pedaler} {countable}) '({rider} {countable})) (new-knext-is-a '({pedestrian} {countable}) '({traveler} {countable})) (new-knext-is-a '({pensioner} {countable}) '({beneficiary} {countable})) (new-knext-is-a '({perfecter} {countable}) '({skilled worker} {countable})) (new-knext-is-a '({performer} {countable}) '({entertainer} {countable})) (new-knext-is-a '({perpetrator} {countable}) '({wrongdoer} {countable})) (new-knext-is-a '({persuader} {countable}) '({communicator} {countable})) (new-knext-is-a '({blighter} {countable}) '({tormentor} {countable})) (new-knext-is-a '({philosopher} {countable}) '({scholar} {countable})) (new-knext-is-a '({photographer} {countable}) '({artist} {countable})) (new-knext-is-a '({picker} {countable}) '({person} {countable})) (new-knext-is-a '({pilot} {countable}) '({aviator} {countable})) (new-knext-is-a '({pioneer} {countable}) '({originator} {countable})) (new-knext-is-a '({planner} {countable}) '({person} {countable})) (new-knext-is-a '({plant} {countable}) '({actor} {countable})) (new-knext-is-a '({player} {countable}) '({contestant} {countable})) (new-knext-is-a '({poet} {countable}) '({writer} {countable})) (new-knext-is-a '({policeman} {countable}) '({lawman} {countable})) (new-knext-is-a '({politico} {countable}) '({leader} {countable})) (new-knext-is-a '({politician} {countable}) '({leader} {countable})) (new-knext-is-a '({porter} {countable}) '({laborer} {countable})) (new-knext-is-a '({portraitist} {countable}) '({painter} {countable})) (new-knext-is-a '({problem solver} {countable}) '({thinker} {countable})) (new-knext-is-a '({power} {countable}) '({causal agent} {countable})) (new-knext-is-a '({influence} {countable}) '({power} {countable})) (new-knext-is-a '({prattler} {countable}) '({speaker} {countable})) (new-knext-is-a '({presenter} {countable}) '({advocate} {countable})) (new-knext-is-a '({preserver} {countable}) '({person} {countable})) (new-knext-is-a '({preserver} {countable}) '({cook} {countable})) (new-knext-is-a '({president} {countable}) '({head of state} {countable})) (new-knext-is-a '({president} {countable}) '({corporate executive} {countable})) (new-knext-is-a '({prexy} {countable}) '({academic administrator} {countable})) (new-knext-is-a '({chairman} {countable}) '({presiding officer} {countable})) (new-knext-is-a '({presiding officer} {countable}) '({leader} {countable})) (new-knext-is-a '({prey} {countable}) '({victim} {countable})) (new-knext-is-a '({printer} {countable}) '({skilled worker} {countable})) (new-knext-is-a '({prisoner} {countable}) '({unfortunate} {countable})) (new-knext-is-a '({prodigal} {countable}) '({consumer} {countable})) (new-knext-is-a '({producer} {countable}) '({creator} {countable})) (new-knext-is-a '({professional} {countable}) '({adult} {countable})) (new-knext-is-a '({professor} {countable}) '({academic} {countable})) (new-knext-is-a '({programmer} {countable}) '({engineer} {countable})) (new-knext-is-a '({promisee} {countable}) '({communicator} {countable})) (new-knext-is-a '({promiser} {countable}) '({communicator} {countable})) (new-knext-is-a '({proposer} {countable}) '({originator} {countable})) (new-knext-is-a '({provider} {countable}) '({benefactor} {countable})) (new-knext-is-a '({psychologist} {countable}) '({scientist} {countable})) (new-knext-is-a '({publicist} {countable}) '({communicator} {countable})) (new-knext-is-a '({publisher} {countable}) '({professional} {countable})) (new-knext-is-a '({newspaper publisher} {countable}) '({owner} {countable})) (new-knext-is-a '({tugger} {countable}) '({worker} {countable})) (new-knext-is-a '({pursuer} {countable}) '({follower} {countable})) (new-knext-is-a '({trembler} {countable}) '({coward} {countable})) (new-knext-is-a '({qualifier} {countable}) '({contestant} {countable})) (new-knext-is-a '({quitter} {countable}) '({person} {countable})) (new-knext-is-a '({radical} {countable}) '({person} {countable})) (new-knext-is-a '({rambler} {countable}) '({pedestrian} {countable})) (new-knext-is-a '({ranter} {countable}) '({speaker} {countable})) (new-knext-is-a '({reader} {countable}) '({scholar} {countable})) (new-knext-is-a '({reasoner} {countable}) '({thinker} {countable})) (new-knext-is-a '({enlistee} {countable}) '({newcomer} {countable})) (new-knext-is-a '({recruiter} {countable}) '({supplier} {countable})) (new-knext-is-a '({refiner} {countable}) '({skilled worker} {countable})) (new-knext-is-a '({refinisher} {countable}) '({skilled worker} {countable})) (new-knext-is-a '({registrant} {countable}) '({person} {countable})) (new-knext-is-a '({regulator} {countable}) '({official} {countable})) (new-knext-is-a '({repairman} {countable}) '({mender} {countable})) (new-knext-is-a '({repeater} {countable}) '({person} {countable})) (new-knext-is-a '({reporter} {countable}) '({communicator} {countable})) (new-knext-is-a '({representative} {countable}) '({negotiator} {countable})) (new-knext-is-a '({recoverer} {countable}) '({person} {countable})) (new-knext-is-a '({research worker} {countable}) '({scientist} {countable})) (new-knext-is-a '({resident} {countable}) '({inhabitant} {countable})) (new-knext-is-a '({respecter} {countable}) '({follower} {countable})) (new-knext-is-a '({responder} {countable}) '({communicator} {countable})) (new-knext-is-a '({rester} {countable}) '({person} {countable})) (new-knext-is-a '({restrainer} {countable}) '({person} {countable})) (new-knext-is-a '({retailer} {countable}) '({merchant} {countable})) (new-knext-is-a '({reveler} {countable}) '({celebrant} {countable})) (new-knext-is-a '({rich person} {countable}) '({person} {countable})) (new-knext-is-a '({rider} {countable}) '({traveler} {countable})) (new-knext-is-a '({riser} {countable}) '({person} {countable})) (new-knext-is-a '({rival} {countable}) '({contestant} {countable})) (new-knext-is-a '({roarer} {countable}) '({communicator} {countable})) (new-knext-is-a '({ruler} {countable}) '({person} {countable})) (new-knext-is-a '({civil authority} {countable}) '({authority} {countable})) (new-knext-is-a '({runner} {countable}) '({traveler} {countable})) (new-knext-is-a '({runner} {countable}) '({athlete} {countable})) (new-knext-is-a '({rusher} {countable}) '({person} {countable})) (new-knext-is-a '({sailor} {countable}) '({skilled worker} {countable})) (new-knext-is-a '({saint} {countable}) '({deity} {countable})) (new-knext-is-a '({saunterer} {countable}) '({pedestrian} {countable})) (new-knext-is-a '({saver} {countable}) '({possessor} {countable})) (new-knext-is-a '({sawyer} {countable}) '({laborer} {countable})) (new-knext-is-a '({scab} {countable}) '({worker} {countable})) (new-knext-is-a '({scholar} {countable}) '({intellectual} {countable})) (new-knext-is-a '({schoolchild} {countable}) '({young person} {countable})) (new-knext-is-a '({scientist} {countable}) '({person} {countable})) (new-knext-is-a '({scratcher} {countable}) '({person} {countable})) (new-knext-is-a '({scrutinizer} {countable}) '({examiner} {countable})) (new-knext-is-a '({searcher} {countable}) '({official} {countable})) (new-knext-is-a '({secret agent} {countable}) '({agent} {countable})) (new-knext-is-a '({secretarial assistant} {countable}) '({assistant} {countable})) (new-knext-type {secretarial assistant} {countable}) (new-knext-type {help} {countable}) (new-statement {help} {consists of} {secretarial assistant}) (new-knext-is-a '({seeded player} {countable}) '({player} {countable})) (new-knext-is-a '({seeker} {countable}) '({person} {countable})) (new-knext-is-a '({seer} {countable}) '({perceiver} {countable})) (new-knext-is-a '({seller} {countable}) '({merchant} {countable})) (new-knext-is-a '({sendee} {countable}) '({recipient} {countable})) (new-knext-is-a '({sender} {countable}) '({communicator} {countable})) (new-knext-is-a '({separatist} {countable}) '({advocate} {countable})) (new-knext-is-a '({servant} {countable}) '({worker} {countable})) (new-knext-is-a '({serviceman} {countable}) '({skilled worker} {countable})) (new-knext-is-a '({settler} {countable}) '({negotiator} {countable})) (new-knext-is-a '({shelver} {countable}) '({worker} {countable})) (new-knext-is-a '({shipper} {countable}) '({businessperson} {countable})) (new-knext-is-a '({shooter} {countable}) '({expert} {countable})) (new-knext-is-a '({impresario} {countable}) '({booker} {countable})) (new-knext-is-a '({sick person} {countable}) '({unfortunate} {countable})) (new-knext-is-a '({sightseer} {countable}) '({tourist} {countable})) (new-knext-is-a '({singer} {countable}) '({musician} {countable})) (new-knext-is-a '({sipper} {countable}) '({drinker} {countable})) (new-knext-is-a '({sister} {countable}) '({member} {countable})) (new-knext-is-a '({waverer} {countable}) '({coward} {countable})) (new-knext-is-a '({skier} {countable}) '({athlete} {countable})) (new-knext-is-a '({skilled worker} {countable}) '({worker} {countable})) (new-knext-is-a '({slammer} {countable}) '({finisher} {countable})) (new-knext-is-a '({slave} {countable}) '({person} {countable})) (new-knext-is-a '({sleeper} {countable}) '({rester} {countable})) (new-knext-is-a '({smasher} {countable}) '({person} {countable})) (new-knext-is-a '({smoker} {countable}) '({consumer} {countable})) (new-knext-is-a '({soldier} {countable}) '({enlisted person} {countable})) (new-knext-is-a '({son} {countable}) '({male offspring} {countable})) (new-knext-is-a '({sorter} {countable}) '({clerk} {countable})) (new-knext-is-a '({soul} {countable}) '({spirit} {countable})) (new-knext-is-a '({sovereign} {countable}) '({head of state} {countable})) (new-knext-is-a '({sovereign} {countable}) '({ruler} {countable})) (new-knext-is-a '({sower} {countable}) '({farmer} {countable})) (new-knext-is-a '({speaker} {countable}) '({articulator} {countable})) (new-knext-is-a '({specialist} {countable}) '({expert} {countable})) (new-knext-is-a '({spectator} {countable}) '({perceiver} {countable})) (new-knext-is-a '({speculator} {countable}) '({thinker} {countable})) (new-knext-is-a '({disburser} {countable}) '({customer} {countable})) (new-knext-is-a '({spirit} {countable}) '({vital principle} {countable})) (new-knext-is-a '({spokesman} {countable}) '({spokesperson} {countable})) (new-knext-is-a '({spokesperson} {countable}) '({advocate} {countable})) (new-knext-is-a '({spouse} {countable}) '({relative} {countable})) (new-knext-is-a '({spouse} {countable}) '({domestic partner} {countable})) (new-knext-is-a '({spy} {countable}) '({secret agent} {countable})) (new-knext-is-a '({staggerer} {countable}) '({pedestrian} {countable})) (new-knext-is-a '({stammerer} {countable}) '({speaker} {countable})) (new-knext-is-a '({standee} {countable}) '({stander} {countable})) (new-knext-is-a '({stander} {countable}) '({organism} {countable})) (new-knext-is-a '({starer} {countable}) '({spectator} {countable})) (new-knext-is-a '({stevedore} {countable}) '({laborer} {countable})) (new-knext-is-a '({stockholder} {countable}) '({investor} {countable})) (new-knext-is-a '({fibber} {countable}) '({liar} {countable})) (new-knext-is-a '({student} {countable}) '({enrollee} {countable})) (new-knext-is-a '({guinea pig} {countable}) '({person} {countable})) (new-knext-is-a '({contributor} {countable}) '({donor} {countable})) (new-knext-is-a '({subscriber} {countable}) '({customer} {countable})) (new-knext-is-a '({sucker} {countable}) '({drinker} {countable})) (new-knext-is-a '({suggester} {countable}) '({originator} {countable})) (new-knext-is-a '({superior} {countable}) '({leader} {countable})) (new-knext-is-a '({supervisor} {countable}) '({superior} {countable})) (new-knext-is-a '({supplier} {countable}) '({businessperson} {countable})) (new-knext-is-a '({supporter} {countable}) '({advocate} {countable})) (new-knext-is-a '({surgeon} {countable}) '({doctor} {countable})) (new-knext-is-a '({surrenderer} {countable}) '({person} {countable})) (new-knext-is-a '({survivor} {countable}) '({person} {countable})) (new-knext-is-a '({survivor} {countable}) '({unfortunate} {countable})) (new-knext-is-a '({suspect} {countable}) '({person} {countable})) (new-knext-is-a '({swaggerer} {countable}) '({pedestrian} {countable})) (new-knext-is-a '({swearer} {countable}) '({communicator} {countable})) (add-english-names (list {employe} {employee} {employee}) (list "employe" "employee" "employee")) (new-knext-is-a '({natator} {countable}) '({traveler} {countable})) (new-knext-is-a '({swimmer} {countable}) '({athlete} {countable})) (new-knext-is-a '({swinger} {countable}) '({athlete} {countable})) (new-knext-is-a '({swot} {countable}) '({learner} {countable})) (new-knext-is-a '({sycophant} {countable}) '({flatterer} {countable})) (new-knext-is-a '({shadower} {countable}) '({follower} {countable})) (new-knext-is-a '({taker} {countable}) '({customer} {countable})) (new-knext-is-a '({taxpayer} {countable}) '({payer} {countable})) (new-knext-is-a '({teacher} {countable}) '({educator} {countable})) (new-knext-is-a '({tempter} {countable}) '({person} {countable})) (new-knext-is-a '({toiler} {countable}) '({worker} {countable})) (new-knext-is-a '({tenant} {countable}) '({payer} {countable})) (new-knext-is-a '({terrorist} {countable}) '({radical} {countable})) (new-knext-is-a '({testifier} {countable}) '({witness} {countable})) (new-knext-is-a '({theorist} {countable}) '({intellectual} {countable})) (new-knext-is-a '({therapist} {countable}) '({expert} {countable})) (new-knext-is-a '({thinker} {countable}) '({intellectual} {countable})) (new-knext-is-a '({thinker} {countable}) '({intellectual} {countable})) (new-knext-is-a '({thrower} {countable}) '({person} {countable})) (new-knext-is-a '({tier up} {countable}) '({worker} {countable})) (new-knext-is-a '({tourist} {countable}) '({traveler} {countable})) (new-knext-is-a '({tracker} {countable}) '({hunter} {countable})) (new-knext-is-a '({trader} {countable}) '({merchant} {countable})) (new-knext-is-a '({trainee} {countable}) '({beginner} {countable})) (new-knext-is-a '({trainer} {countable}) '({leader} {countable})) (new-knext-is-a '({transactor} {countable}) '({businessman} {countable})) (new-knext-is-a '({transferer} {countable}) '({mover} {countable})) (new-knext-is-a '({transferor} {countable}) '({transferer} {countable})) (new-knext-is-a '({traverser} {countable}) '({mover} {countable})) (new-knext-is-a '({attempter} {countable}) '({person} {countable})) (new-knext-is-a '({twaddler} {countable}) '({communicator} {countable})) (new-knext-is-a '({uncle} {countable}) '({kinsman} {countable})) (new-knext-is-a '({unfastener} {countable}) '({person} {countable})) (new-knext-is-a '({upholder} {countable}) '({supporter} {countable})) (new-knext-is-a '({user} {countable}) '({person} {countable})) (new-knext-is-a '({utterer} {countable}) '({organism} {countable})) (new-knext-is-a '({vagrant} {countable}) '({wanderer} {countable})) (new-knext-is-a '({valuer} {countable}) '({appraiser} {countable})) (new-knext-is-a '({vanisher} {countable}) '({person} {countable})) (new-knext-is-a '({vegetarian} {countable}) '({eater} {countable})) (new-knext-is-a '({veteran} {countable}) '({serviceman} {countable})) (new-knext-is-a '({victim} {countable}) '({unfortunate} {countable})) (new-knext-is-a '({dupe} {countable}) '({person} {countable})) (new-knext-is-a '({villager} {countable}) '({inhabitant} {countable})) (new-knext-is-a '({debaucher} {countable}) '({libertine} {countable})) (new-knext-is-a '({illusionist} {countable}) '({intellectual} {countable})) (new-knext-is-a '({visitor} {countable}) '({traveler} {countable})) (new-knext-is-a '({visualizer} {countable}) '({perceiver} {countable})) (add-english-names (list {visualizer} {visualiser} {visualizer} {visualiser}) (list "visualizer" "visualiser" "visualizer" "visualiser")) (new-knext-type {visualizer} {uncountable}) (new-knext-type {perceiver} {uncountable}) (new-statement {visualizer} {consists of} {perceiver}) (new-knext-is-a '({vital principle} {countable}) '({causal agent} {countable})) (new-knext-is-a '({unpaid worker} {countable}) '({worker} {countable})) (new-knext-is-a '({voter} {countable}) '({citizen} {countable})) (new-knext-is-a '({waiter} {countable}) '({person} {countable})) (new-knext-is-a '({waker} {countable}) '({person} {countable})) (new-knext-is-a '({wanderer} {countable}) '({traveler} {countable})) (new-knext-is-a '({wanter} {countable}) '({person} {countable})) (new-knext-is-a '({warbler} {countable}) '({singer} {countable})) (new-knext-is-a '({ward} {countable}) '({person} {countable})) (new-knext-is-a '({warner} {countable}) '({communicator} {countable})) (new-knext-is-a '({warrior} {countable}) '({person} {countable})) (new-knext-is-a '({washer} {countable}) '({worker} {countable})) (new-knext-is-a '({wassailer} {countable}) '({imbiber} {countable})) (new-knext-is-a '({wastrel} {countable}) '({prodigal} {countable})) (new-knext-is-a '({watchman} {countable}) '({guard} {countable})) (new-knext-is-a '({waver} {countable}) '({communicator} {countable})) (new-knext-is-a '({journeyer} {countable}) '({traveler} {countable})) (new-knext-is-a '({weeper} {countable}) '({mourner} {countable})) (new-knext-is-a '({weeper} {countable}) '({unfortunate} {countable})) (new-knext-is-a '({weightlifter} {countable}) '({athlete} {countable})) (new-knext-is-a '({whisperer} {countable}) '({speaker} {countable})) (new-knext-is-a '({widow} {countable}) '({woman} {countable})) (new-knext-is-a '({wife} {countable}) '({spouse} {countable})) (new-knext-is-a '({wife} {countable}) '({woman} {countable})) (new-knext-is-a '({wiggler} {countable}) '({person} {countable})) (new-knext-is-a '({winner} {countable}) '({gambler} {countable})) (new-knext-is-a '({winner} {countable}) '({contestant} {countable})) (new-knext-is-a '({winker} {countable}) '({person} {countable})) (new-knext-is-a '({wiper} {countable}) '({worker} {countable})) (new-knext-is-a '({withdrawer} {countable}) '({depositor} {countable})) (new-knext-is-a '({withholder} {countable}) '({restrainer} {countable})) (new-knext-is-a '({withholder} {countable}) '({person} {countable})) (new-knext-is-a '({witness} {countable}) '({speaker} {countable})) (new-knext-is-a '({witness} {countable}) '({perceiver} {countable})) (new-knext-is-a '({witness} {countable}) '({person} {countable})) (new-knext-is-a '({woman} {countable}) '({female person} {countable})) (new-knext-is-a '({woman} {countable}) '({adult} {countable})) (new-knext-is-a '({woman} {countable}) '({female person} {countable})) (new-knext-is-a '({writer} {countable}) '({communicator} {countable})) (new-knext-is-a '({young person} {countable}) '({juvenile} {countable})) (new-knext-is-a '({natural phenomenon} {countable}) '({phenomenon} {countable})) (new-knext-is-a '({chemical phenomenon} {countable}) '({natural phenomenon} {countable})) (new-knext-is-a '({consequence} {countable}) '({phenomenon} {countable})) (new-knext-is-a '({change} {countable}) '({consequence} {countable})) (new-knext-is-a '({wallop} {countable}) '({consequence} {countable})) (new-knext-is-a '({influence} {countable}) '({consequence} {countable})) (new-knext-is-a '({product} {countable}) '({consequence} {countable})) (new-knext-is-a '({fortune} {countable}) '({phenomenon} {countable})) (new-knext-type {luck} {uncountable}) (new-knext-type {phenomenon} {uncountable}) (new-statement {luck} {consists of} {phenomenon}) (new-knext-is-a '({fortune} {countable}) '({phenomenon} {countable})) (new-knext-is-a '({organic phenomenon} {countable}) '({natural phenomenon} {countable})) (new-knext-is-a '({physical phenomenon} {countable}) '({natural phenomenon} {countable})) (new-knext-is-a '({optical aberration} {countable}) '({optical phenomenon} {countable})) (new-knext-is-a '({actinic radiation} {uncountable}) '({electromagnetic radiation} {uncountable})) (new-knext-type {actinic radiation} {uncountable}) (new-knext-type {electromagnetic wave} {uncountable}) (new-statement {actinic radiation} {consists of} {electromagnetic wave}) (new-knext-is-a '({atmospheric phenomenon} {countable}) '({physical phenomenon} {countable})) (new-knext-is-a '({attraction} {uncountable}) '({force} {countable})) (new-knext-is-a '({attractive force} {countable}) '({force} {countable})) (new-knext-is-a '({beam of light} {countable}) '({light} {uncountable})) (new-knext-is-a '({breeze} {countable}) '({wind} {uncountable})) (new-knext-is-a '({electric charge} {countable}) '({electrical phenomenon} {countable})) (new-knext-is-a '({circulation} {uncountable}) '({organic phenomenon} {countable})) (new-knext-is-a '({cloud} {countable}) '({physical phenomenon} {countable})) (new-knext-is-a '({current} {countable}) '({electrical phenomenon} {countable})) (new-knext-is-a '({daylight} {uncountable}) '({light} {uncountable})) (new-knext-is-a '({death} {uncountable}) '({organic phenomenon} {countable})) (new-knext-is-a '({decay} {uncountable}) '({organic phenomenon} {countable})) (new-knext-is-a '({drift} {countable}) '({force} {countable})) (new-knext-is-a '({electrical phenomenon} {countable}) '({physical phenomenon} {countable})) (new-knext-is-a '({electricity} {uncountable}) '({physical phenomenon} {countable})) (new-knext-is-a '({electrical energy} {uncountable}) '({energy} {uncountable})) (new-knext-is-a '({electromagnetic radiation} {uncountable}) '({radiation} {uncountable})) (new-knext-is-a '({electromagnetic wave} {countable}) '({radiation} {uncountable})) (new-knext-is-a '({energy} {uncountable}) '({physical phenomenon} {countable})) (new-knext-is-a '({focal point} {countable}) '({point} {countable})) (new-knext-is-a '({fair weather} {uncountable}) '({weather} {uncountable})) (new-knext-is-a '({fair weather} {uncountable}) '({weather condition} {countable})) (new-knext-is-a '({force} {countable}) '({physical phenomenon} {countable})) (new-knext-is-a '({attrition} {uncountable}) '({rubbing} {uncountable})) (new-knext-is-a '({detrition} {countable}) '({rubbing} {uncountable})) (new-knext-is-a '({traction} {countable}) '({rubbing} {uncountable})) (new-knext-is-a '({front} {countable}) '({atmospheric phenomenon} {countable})) (new-knext-is-a '({storm} {countable}) '({atmospheric phenomenon} {countable})) (new-knext-is-a '({glow} {uncountable}) '({light} {uncountable})) (new-knext-is-a '({gravity} {uncountable}) '({attraction} {uncountable})) (new-knext-type {gravity} {uncountable}) (new-knext-type {attractive force} {uncountable}) (new-statement {gravity} {consists of} {attractive force}) (new-knext-is-a '({gravitational force} {countable}) '({attraction} {uncountable})) (new-knext-is-a '({gravitational force} {countable}) '({attractive force} {countable})) (new-knext-is-a '({gust} {countable}) '({wind} {uncountable})) (new-knext-is-a '({heat} {uncountable}) '({energy} {uncountable})) (new-knext-is-a '({light} {uncountable}) '({actinic radiation} {uncountable})) (new-knext-is-a '({mechanical phenomenon} {countable}) '({physical phenomenon} {countable})) (new-knext-is-a '({sound} {uncountable}) '({mechanical phenomenon} {countable})) (new-knext-is-a '({trajectory} {countable}) '({mechanical phenomenon} {countable})) (new-knext-is-a '({thaw} {countable}) '({weather} {uncountable})) (new-knext-is-a '({thaw} {countable}) '({weather condition} {countable})) (new-knext-is-a '({thawing} {uncountable}) '({weather} {uncountable})) (new-knext-is-a '({thawing} {uncountable}) '({weather condition} {countable})) (new-knext-type {mist} {uncountable}) (new-knext-type {fog} {uncountable}) (new-statement {mist} {consists of} {fog}) (new-knext-is-a '({moonlight} {uncountable}) '({light} {uncountable})) (new-knext-is-a '({sunlight} {uncountable}) '({light} {uncountable})) (new-knext-is-a '({optical phenomenon} {countable}) '({physical phenomenon} {countable})) (new-knext-is-a '({polarization} {countable}) '({optical phenomenon} {countable})) (new-knext-is-a '({downfall} {uncountable}) '({weather} {uncountable})) (new-knext-is-a '({downfall} {uncountable}) '({weather condition} {countable})) (new-knext-is-a '({pressure} {uncountable}) '({physical phenomenon} {countable})) (new-knext-is-a '({pressure level} {countable}) '({physical phenomenon} {countable})) (new-knext-is-a '({thrust} {countable}) '({force} {countable})) (new-knext-is-a '({reaction} {countable}) '({force} {countable})) (new-knext-is-a '({radiation} {uncountable}) '({energy} {uncountable})) (new-knext-is-a '({rain} {uncountable}) '({downfall} {uncountable})) (new-knext-is-a '({downpour} {countable}) '({rain} {uncountable})) (new-knext-is-a '({rain shower} {countable}) '({rain} {uncountable})) (new-knext-is-a '({snow} {uncountable}) '({downfall} {uncountable})) (new-knext-is-a '({snowflake} {countable}) '({crystal} {countable})) (new-knext-is-a '({ice crystal} {countable}) '({crystal} {countable})) (new-knext-is-a '({strain} {countable}) '({deformation} {countable})) (new-knext-is-a '({draft} {countable}) '({wind} {uncountable})) (new-knext-is-a '({weather} {uncountable}) '({atmospheric phenomenon} {countable})) (new-knext-is-a '({weather condition} {countable}) '({atmospheric phenomenon} {countable})) (new-knext-is-a '({wind} {uncountable}) '({weather} {uncountable})) (new-knext-is-a '({wind} {uncountable}) '({weather condition} {countable})) (new-knext-is-a '({flotation} {countable}) '({physical phenomenon} {countable})) (new-knext-type {kingdom} {countable}) (new-knext-indv {plantae} {kingdom}) (new-knext-is-a '({pileus} {countable}) '({plant part} {countable})) (new-knext-is-a '({escape} {countable}) '({plant} {countable})) (new-knext-type {escape} {countable}) (new-knext-type {plant life} {countable}) (new-statement {plant life} {consists of} {escape}) (new-knext-is-a '({blossom} {countable}) '({reproductive structure} {countable})) (new-knext-is-a '({flower} {countable}) '({angiosperm} {countable})) (new-knext-is-a '({bloomer} {countable}) '({flower} {countable})) (new-knext-is-a '({reproductive structure} {countable}) '({plant organ} {countable})) (new-knext-is-a '({gramineous plant} {countable}) '({herb} {countable})) (new-knext-type {grass} {uncountable}) (new-knext-type {gramineous plant} {uncountable}) (new-statement {grass} {consists of} {gramineous plant}) (new-knext-type {cotton} {uncountable}) (new-knext-type {shrub} {uncountable}) (new-statement {cotton} {consists of} {shrub}) (new-knext-is-a '({cotton plant} {countable}) '({shrub} {countable})) (new-knext-is-a '({herb} {countable}) '({vascular plant} {countable})) (new-knext-is-a '({oak tree} {countable}) '({tree} {countable})) (new-knext-is-a '({onion} {countable}) '({bulb} {countable})) (new-knext-is-a '({palm tree} {countable}) '({tree} {countable})) (new-knext-is-a '({rose} {countable}) '({shrub} {countable})) (new-knext-is-a '({white potato} {countable}) '({vine} {countable})) (new-knext-type {vine} {countable}) (new-knext-indv {solanum tuberosum} {vine}) (new-knext-is-a '({capsicum} {countable}) '({shrub} {countable})) (new-knext-type {tea} {uncountable}) (new-knext-type {shrub} {uncountable}) (new-statement {tea} {consists of} {shrub}) (new-knext-type {shrub} {countable}) (new-knext-indv {camellia sinensis} {shrub}) (new-knext-is-a '({carrot} {countable}) '({root} {countable})) (new-knext-type {division} {countable}) (new-knext-indv {lichenes} {division}) (new-knext-is-a '({lichen} {countable}) '({fungus} {uncountable})) (new-knext-type {kingdom} {countable}) (new-knext-indv {fungi} {kingdom}) (new-knext-type {fungus} {uncountable}) (new-knext-type {organism} {uncountable}) (new-statement {fungus} {consists of} {organism}) (new-knext-is-a '({puffball} {countable}) '({fungus} {uncountable})) (add-english-names (list {mold} {mould}) (list "mold" "mould")) (new-knext-is-a '({houseplant} {countable}) '({plant} {countable})) (new-knext-type {houseplant} {countable}) (new-knext-type {plant life} {countable}) (new-statement {plant life} {consists of} {houseplant}) (new-knext-is-a '({garden plant} {countable}) '({plant} {countable})) (new-knext-type {garden plant} {countable}) (new-knext-type {plant life} {countable}) (new-statement {plant life} {consists of} {garden plant}) (new-knext-is-a '({vascular plant} {countable}) '({plant} {countable})) (new-knext-type {vascular plant} {countable}) (new-knext-type {plant life} {countable}) (new-statement {plant life} {consists of} {vascular plant}) (new-knext-is-a '({cultivated plant} {countable}) '({vascular plant} {countable})) (new-knext-is-a '({weed} {countable}) '({vascular plant} {countable})) (new-knext-is-a '({crop} {countable}) '({output} {countable})) (new-knext-is-a '({crop} {countable}) '({yield} {countable})) (new-knext-is-a '({plant part} {countable}) '({natural object} {countable})) (new-knext-is-a '({plant organ} {countable}) '({plant part} {countable})) (new-knext-type {plant tissue} {uncountable}) (new-knext-type {plant part} {uncountable}) (new-statement {plant tissue} {consists of} {plant part}) (new-knext-is-a '({pulp} {uncountable}) '({plant tissue} {uncountable})) (new-knext-is-a '({poisonous plant} {countable}) '({plant} {countable})) (new-knext-type {poisonous plant} {countable}) (new-knext-type {plant life} {countable}) (new-statement {plant life} {consists of} {poisonous plant}) (new-knext-is-a '({vine} {countable}) '({vascular plant} {countable})) (new-knext-is-a '({climber} {countable}) '({vine} {countable})) (new-knext-is-a '({woody plant} {countable}) '({vascular plant} {countable})) (new-knext-is-a '({tree} {countable}) '({woody plant} {countable})) (new-knext-is-a '({shrub} {countable}) '({woody plant} {countable})) (new-knext-is-a '({aquatic plant} {countable}) '({vascular plant} {countable})) (new-knext-is-a '({air plant} {countable}) '({plant} {countable})) (new-knext-type {air plant} {countable}) (new-knext-type {plant life} {countable}) (new-statement {plant life} {consists of} {air plant}) (new-knext-is-a '({strangler} {countable}) '({air plant} {countable})) (new-knext-is-a '({rock plant} {countable}) '({plant} {countable})) (new-knext-type {rock plant} {countable}) (new-knext-type {plant life} {countable}) (new-statement {plant life} {consists of} {rock plant}) (new-knext-is-a '({root system} {countable}) '({system} {countable})) (new-knext-is-a '({root} {countable}) '({plant organ} {countable})) (new-knext-is-a '({stalk} {countable}) '({plant organ} {countable})) (new-knext-is-a '({blade} {countable}) '({leaf} {countable})) (new-knext-type {blade} {countable}) (new-knext-type {leafage} {countable}) (new-statement {leafage} {consists of} {blade}) (new-knext-is-a '({capitulum} {countable}) '({fruit} {countable})) (new-knext-is-a '({bulb} {countable}) '({stalk} {countable})) (new-knext-is-a '({bulbous plant} {countable}) '({vascular plant} {countable})) (new-knext-is-a '({fruit} {countable}) '({reproductive structure} {countable})) (new-knext-is-a '({seed} {countable}) '({fruit} {countable})) (new-knext-is-a '({nut} {countable}) '({seed} {countable})) (new-knext-is-a '({pome} {countable}) '({fruit} {countable})) (new-knext-is-a '({leaf} {countable}) '({plant organ} {countable})) (new-knext-type {leafage} {uncountable}) (new-knext-type {plant organ} {uncountable}) (new-statement {leafage} {consists of} {plant organ}) (new-knext-type {bark} {uncountable}) (new-knext-type {covering} {uncountable}) (new-statement {bark} {consists of} {covering}) (new-knext-is-a '({branch} {countable}) '({stalk} {countable})) (new-knext-type {property} {uncountable}) (new-knext-type {possession} {uncountable}) (new-statement {property} {consists of} {possession}) (new-knext-is-a '({holding} {countable}) '({possession} {countable})) (new-knext-is-a '({things} {uncountable}) '({property} {uncountable})) (new-knext-type {things} {uncountable}) (new-knext-type {holding} {uncountable}) (new-statement {things} {consists of} {holding}) (new-knext-is-a '({real property} {uncountable}) '({property} {uncountable})) (new-knext-type {real property} {uncountable}) (new-knext-type {holding} {uncountable}) (new-statement {real property} {consists of} {holding}) (new-knext-is-a '({landed estate} {countable}) '({real property} {uncountable})) (new-knext-is-a '({acres} {uncountable}) '({real property} {uncountable})) (new-knext-type {lease} {countable}) (new-knext-type {property} {countable}) (new-statement {property} {consists of} {lease}) (new-knext-is-a '({lease} {countable}) '({holding} {countable})) (new-knext-is-a '({land} {countable}) '({real property} {uncountable})) (new-knext-is-a '({wealth} {uncountable}) '({property} {uncountable})) (new-knext-type {wealth} {uncountable}) (new-knext-type {holding} {uncountable}) (new-statement {wealth} {consists of} {holding}) (new-knext-is-a '({money} {uncountable}) '({wealth} {uncountable})) (new-knext-type {estate} {countable}) (new-knext-type {property} {countable}) (new-statement {property} {consists of} {estate}) (new-knext-is-a '({estate} {countable}) '({holding} {countable})) (new-knext-is-a '({plantation} {countable}) '({landed estate} {countable})) (new-knext-type {plantation} {countable}) (new-knext-type {acres} {countable}) (new-statement {acres} {consists of} {plantation}) (new-knext-type {transferred property} {uncountable}) (new-knext-type {possession} {uncountable}) (new-statement {transferred property} {consists of} {possession}) (new-knext-is-a '({acquisition} {countable}) '({transferred property} {uncountable})) (new-knext-is-a '({purchase} {countable}) '({acquisition} {countable})) (new-knext-is-a '({buy} {countable}) '({purchase} {countable})) (new-knext-is-a '({gain} {countable}) '({sum} {countable})) (new-knext-type {financial gain} {uncountable}) (new-knext-type {gain} {uncountable}) (new-statement {financial gain} {consists of} {gain}) (new-knext-is-a '({income} {uncountable}) '({financial gain} {uncountable})) (new-knext-is-a '({royalty} {countable}) '({payment} {countable})) (new-knext-is-a '({net income} {uncountable}) '({income} {uncountable})) (new-knext-is-a '({profits} {uncountable}) '({income} {uncountable})) (new-knext-is-a '({winnings} {uncountable}) '({financial gain} {uncountable})) (new-knext-is-a '({gift} {countable}) '({acquisition} {countable})) (new-knext-type {economic aid} {uncountable}) (new-knext-type {gift} {uncountable}) (new-statement {economic aid} {consists of} {gift}) (new-knext-is-a '({scholarship} {countable}) '({economic aid} {uncountable})) (new-knext-is-a '({scholarship} {countable}) '({prize} {countable})) (new-knext-is-a '({grant} {countable}) '({economic aid} {uncountable})) (new-knext-is-a '({prize} {countable}) '({gift} {countable})) (new-knext-is-a '({present} {countable}) '({gift} {countable})) (new-knext-is-a '({outgo} {uncountable}) '({transferred property} {uncountable})) (new-knext-is-a '({expense} {countable}) '({cost} {countable})) (new-knext-is-a '({cost} {countable}) '({outgo} {uncountable})) (new-knext-is-a '({payment} {countable}) '({cost} {countable})) (new-knext-is-a '({wage} {countable}) '({regular payment} {countable})) (new-knext-is-a '({regular payment} {countable}) '({payment} {countable})) (new-knext-type {recompense} {uncountable}) (new-knext-type {payment} {uncountable}) (new-statement {recompense} {consists of} {payment}) (new-knext-is-a '({refund} {countable}) '({payment} {countable})) (new-knext-is-a '({compensation} {uncountable}) '({recompense} {uncountable})) (new-knext-is-a '({bribe} {countable}) '({payment} {countable})) (new-knext-type {share} {countable}) (new-knext-type {assets} {countable}) (new-statement {assets} {consists of} {share}) (new-knext-is-a '({dispensation} {countable}) '({share} {countable})) (new-knext-is-a '({allowance} {countable}) '({share} {countable})) (new-knext-is-a '({split} {countable}) '({share} {countable})) (new-knext-is-a '({stake} {countable}) '({share} {countable})) (new-knext-is-a '({fee} {countable}) '({stake} {countable})) (new-knext-is-a '({cut} {countable}) '({share} {countable})) (new-knext-is-a '({allotment} {countable}) '({share} {countable})) (new-knext-is-a '({quota} {countable}) '({allotment} {countable})) (new-knext-is-a '({damages} {uncountable}) '({compensation} {uncountable})) (new-knext-is-a '({amends} {uncountable}) '({compensation} {uncountable})) (new-knext-is-a '({indemnification} {countable}) '({compensation} {uncountable})) (new-knext-is-a '({reparation} {uncountable}) '({compensation} {uncountable})) (new-knext-is-a '({repayment} {countable}) '({payment} {countable})) (new-knext-is-a '({nonpayment} {countable}) '({financial loss} {countable})) (new-knext-is-a '({forfeit} {countable}) '({loss} {countable})) (new-knext-is-a '({premium} {countable}) '({payment} {countable})) (new-knext-type {charge} {uncountable}) (new-knext-type {cost} {uncountable}) (new-statement {charge} {consists of} {cost}) (new-knext-is-a '({fare} {countable}) '({charge} {uncountable})) (new-knext-is-a '({transportation} {uncountable}) '({charge} {uncountable})) (new-knext-is-a '({levy} {countable}) '({charge} {countable})) (new-knext-is-a '({tax} {countable}) '({levy} {countable})) (new-knext-type {taxation} {uncountable}) (new-knext-type {levy} {uncountable}) (new-statement {taxation} {consists of} {levy}) (new-knext-is-a '({tax shelter} {countable}) '({reduction} {countable})) (new-knext-is-a '({shelter} {countable}) '({reduction} {countable})) (new-knext-is-a '({commission} {countable}) '({fee} {countable})) (new-knext-is-a '({entrance fee} {countable}) '({fee} {countable})) (new-knext-type {entrance money} {uncountable}) (new-knext-type {fee} {uncountable}) (new-statement {entrance money} {consists of} {fee}) (new-knext-is-a '({toll} {countable}) '({fee} {countable})) (new-knext-is-a '({red ink} {countable}) '({sum} {countable})) (new-knext-is-a '({loss} {countable}) '({transferred property} {uncountable})) (new-knext-is-a '({financial loss} {countable}) '({loss} {countable})) (new-knext-is-a '({sacrifice} {countable}) '({loss} {countable})) (new-knext-type {losings} {uncountable}) (new-knext-type {financial loss} {uncountable}) (new-statement {losings} {consists of} {financial loss}) (new-knext-type {assets} {uncountable}) (new-knext-type {possession} {uncountable}) (new-statement {assets} {consists of} {possession}) (new-knext-type {sum} {countable}) (new-knext-type {assets} {countable}) (new-statement {assets} {consists of} {sum}) (new-knext-is-a '({figure} {countable}) '({sum} {countable})) (new-knext-type {investment} {countable}) (new-knext-type {assets} {countable}) (new-statement {assets} {consists of} {investment}) (new-knext-is-a '({investment funds} {uncountable}) '({assets} {uncountable})) (new-knext-is-a '({stock} {uncountable}) '({capital} {uncountable})) (new-knext-type {stakes} {uncountable}) (new-knext-type {gamble} {uncountable}) (new-statement {stakes} {consists of} {gamble}) (new-knext-is-a '({bet} {countable}) '({gamble} {countable})) (new-knext-is-a '({security} {uncountable}) '({assets} {uncountable})) (new-knext-type {coverage} {uncountable}) (new-knext-type {sum} {uncountable}) (new-statement {coverage} {consists of} {sum}) (new-knext-is-a '({surety} {countable}) '({transferred property} {uncountable})) (new-knext-is-a '({deposit} {countable}) '({surety} {countable})) (new-knext-is-a '({down payment} {countable}) '({payment} {countable})) (new-knext-type {material resource} {countable}) (new-knext-type {assets} {countable}) (new-statement {assets} {consists of} {material resource}) (new-knext-type {riches} {uncountable}) (new-knext-type {material resource} {uncountable}) (new-statement {riches} {consists of} {material resource}) (new-knext-is-a '({capital} {uncountable}) '({assets} {uncountable})) (new-knext-is-a '({capital} {uncountable}) '({assets} {uncountable})) (new-knext-type {accounting} {uncountable}) (new-knext-type {financial statement} {uncountable}) (new-statement {accounting} {consists of} {financial statement}) (new-knext-is-a '({account statement} {countable}) '({financial statement} {countable})) (new-knext-is-a '({funds} {uncountable}) '({assets} {uncountable})) (new-knext-type {money supply} {countable}) (new-knext-type {funds} {countable}) (new-statement {funds} {consists of} {money supply}) (new-knext-is-a '({fund} {countable}) '({money} {uncountable})) (new-knext-is-a '({bank account} {countable}) '({business relationship} {countable})) (new-knext-type {trust} {countable}) (new-knext-type {property} {countable}) (new-statement {property} {consists of} {trust}) (new-knext-is-a '({trust} {countable}) '({holding} {countable})) (new-knext-type {maintenance} {uncountable}) (new-knext-type {livelihood} {uncountable}) (new-statement {maintenance} {consists of} {livelihood}) (new-knext-is-a '({maintenance} {uncountable}) '({bread and butter} {uncountable})) (new-knext-is-a '({accumulation} {countable}) '({net income} {uncountable})) (new-knext-type {accumulation} {countable}) (new-knext-type {profits} {countable}) (new-statement {profits} {consists of} {accumulation}) (new-knext-is-a '({store} {countable}) '({accumulation} {countable})) (new-knext-is-a '({stockpile} {countable}) '({accumulation} {countable})) (new-knext-is-a '({treasure} {countable}) '({possession} {countable})) (new-knext-is-a '({diamond} {countable}) '({jewel} {countable})) (new-knext-is-a '({medium of exchange} {countable}) '({standard} {countable})) (new-knext-type {deferred payment} {uncountable}) (new-knext-type {payment} {uncountable}) (new-statement {deferred payment} {consists of} {payment}) (new-knext-is-a '({cash advance} {countable}) '({sum} {countable})) (new-knext-is-a '({credit card} {countable}) '({positive identification} {countable})) (new-knext-is-a '({credit} {uncountable}) '({assets} {uncountable})) (new-knext-is-a '({bank deposit} {countable}) '({fund} {countable})) (new-knext-is-a '({pension} {countable}) '({regular payment} {countable})) (new-knext-is-a '({money} {uncountable}) '({medium of exchange} {countable})) (new-knext-is-a '({money} {uncountable}) '({currency} {uncountable})) (new-knext-is-a '({dinero} {uncountable}) '({money} {uncountable})) (new-knext-is-a '({shekels} {uncountable}) '({money} {uncountable})) (new-knext-is-a '({currency} {uncountable}) '({medium of exchange} {countable})) (new-knext-is-a '({cash} {uncountable}) '({currency} {uncountable})) (new-knext-is-a '({hard currency} {uncountable}) '({currency} {uncountable})) (new-knext-is-a '({change} {uncountable}) '({cash} {uncountable})) (new-knext-is-a '({change} {uncountable}) '({hard currency} {uncountable})) (new-knext-is-a '({coinage} {uncountable}) '({currency} {uncountable})) (new-knext-is-a '({coin} {countable}) '({coinage} {uncountable})) (new-knext-is-a '({penny} {countable}) '({coin} {countable})) (new-knext-is-a '({dollar} {countable}) '({coin} {countable})) (new-knext-is-a '({dollar bill} {countable}) '({government note} {countable})) (new-knext-type {liabilities} {uncountable}) (new-knext-type {possession} {uncountable}) (new-statement {liabilities} {consists of} {possession}) (new-knext-is-a '({debt} {countable}) '({liabilities} {uncountable})) (new-knext-is-a '({loan} {countable}) '({debt} {countable})) (new-knext-is-a '({charge} {countable}) '({liabilities} {uncountable})) (new-knext-is-a '({document} {countable}) '({communication} {uncountable})) (new-knext-is-a '({record} {countable}) '({document} {countable})) (new-knext-type {accounting} {uncountable}) (new-knext-type {register} {uncountable}) (new-statement {accounting} {consists of} {register}) (new-knext-is-a '({accounting system} {countable}) '({register} {countable})) (new-knext-is-a '({register} {countable}) '({record} {countable})) (new-knext-is-a '({payroll} {countable}) '({register} {countable})) (new-knext-is-a '({economic value} {countable}) '({quantity} {countable})) (new-knext-is-a '({budget} {countable}) '({fund} {countable})) (new-knext-is-a '({accretion} {countable}) '({increment} {countable})) (new-knext-is-a '({blooming} {uncountable}) '({organic process} {countable})) (new-knext-is-a '({bloom} {countable}) '({organic process} {countable})) (new-knext-is-a '({blossoming} {countable}) '({growth} {uncountable})) (new-knext-is-a '({blowing} {uncountable}) '({processing} {uncountable})) (new-knext-is-a '({bodily process} {countable}) '({organic process} {countable})) (new-knext-is-a '({chemical equilibrium} {countable}) '({chemical reaction} {countable})) (new-knext-type {economic consumption} {uncountable}) (new-knext-type {demand} {uncountable}) (new-statement {economic consumption} {consists of} {demand}) (new-knext-is-a '({usance} {countable}) '({demand} {countable})) (new-knext-is-a '({convalescence} {uncountable}) '({healing} {uncountable})) (new-knext-is-a '({data processing} {uncountable}) '({processing} {uncountable})) (new-knext-is-a '({decay} {uncountable}) '({natural process} {countable})) (new-knext-is-a '({radioactive decay} {countable}) '({nuclear reaction} {countable})) (new-knext-type {disintegration} {uncountable}) (new-knext-type {nuclear reaction} {uncountable}) (new-statement {disintegration} {consists of} {nuclear reaction}) (new-knext-is-a '({decline} {countable}) '({decrease} {countable})) (new-knext-is-a '({decrease} {countable}) '({physical process} {countable})) (new-knext-is-a '({deflation} {uncountable}) '({economic process} {countable})) (new-knext-is-a '({degeneration} {uncountable}) '({physical process} {countable})) (new-knext-is-a '({demand} {countable}) '({economic process} {countable})) (new-knext-type {deterioration} {uncountable}) (new-knext-type {decline} {uncountable}) (new-statement {deterioration} {consists of} {decline}) (new-knext-is-a '({decline in quality} {countable}) '({decline} {countable})) (new-knext-is-a '({developing} {uncountable}) '({processing} {uncountable})) (new-knext-is-a '({evolution} {uncountable}) '({physical process} {countable})) (new-knext-is-a '({diffusion} {uncountable}) '({natural process} {countable})) (new-knext-is-a '({dilapidation} {uncountable}) '({decay} {uncountable})) (new-knext-is-a '({discharge} {uncountable}) '({bodily process} {countable})) (new-knext-is-a '({expelling} {countable}) '({bodily process} {countable})) (new-knext-is-a '({disinflation} {countable}) '({economic process} {countable})) (new-knext-is-a '({dissolution} {uncountable}) '({natural process} {countable})) (new-knext-is-a '({drift} {countable}) '({natural process} {countable})) (new-knext-is-a '({economic process} {countable}) '({physical process} {countable})) (new-knext-is-a '({erosion} {countable}) '({geological process} {countable})) (new-knext-is-a '({eroding} {uncountable}) '({geological process} {countable})) (new-knext-is-a '({organic evolution} {uncountable}) '({organic process} {countable})) (new-knext-is-a '({phylogeny} {countable}) '({organic process} {countable})) (new-knext-is-a '({filling} {countable}) '({flow} {countable})) (new-knext-is-a '({flame} {countable}) '({combustion} {countable})) (new-knext-type {flaming} {uncountable}) (new-knext-type {combustion} {uncountable}) (new-statement {flaming} {consists of} {combustion}) (new-knext-is-a '({flow} {countable}) '({natural process} {countable})) (new-knext-is-a '({freeze} {countable}) '({cooling} {countable})) (new-knext-is-a '({geological process} {countable}) '({natural process} {countable})) (new-knext-is-a '({growth} {uncountable}) '({organic process} {countable})) (new-knext-is-a '({growth} {countable}) '({evolution} {uncountable})) (new-knext-is-a '({solidifying} {countable}) '({natural process} {countable})) (new-knext-is-a '({curing} {uncountable}) '({natural process} {countable})) (new-knext-is-a '({healing} {uncountable}) '({bodily process} {countable})) (new-knext-is-a '({increment} {countable}) '({physical process} {countable})) (new-knext-is-a '({inflation} {countable}) '({economic process} {countable})) (new-knext-is-a '({looping} {countable}) '({physical process} {countable})) (new-knext-is-a '({iteration} {countable}) '({physical process} {countable})) (new-knext-is-a '({lacrimation} {uncountable}) '({bodily process} {countable})) (new-knext-is-a '({loss} {countable}) '({decline} {countable})) (new-knext-is-a '({materialization} {countable}) '({natural process} {countable})) (new-knext-is-a '({maturation} {uncountable}) '({organic process} {countable})) (new-knext-is-a '({molt} {countable}) '({shedding} {countable})) (new-knext-is-a '({natural process} {countable}) '({physical process} {countable})) (new-knext-is-a '({nondevelopment} {uncountable}) '({organic process} {countable})) (new-knext-is-a '({nuclear reaction} {countable}) '({natural process} {countable})) (new-knext-is-a '({operation} {countable}) '({data processing} {uncountable})) (new-knext-is-a '({functioning} {countable}) '({physical process} {countable})) (new-knext-is-a '({organic process} {countable}) '({physical process} {countable})) (new-knext-is-a '({parturition} {uncountable}) '({organic process} {countable})) (new-knext-is-a '({giving birth} {countable}) '({organic process} {countable})) (new-knext-is-a '({processing} {uncountable}) '({physical process} {countable})) (new-knext-is-a '({proliferation} {uncountable}) '({growth} {uncountable})) (new-knext-type {proliferation} {uncountable}) (new-knext-type {increment} {uncountable}) (new-statement {proliferation} {consists of} {increment}) (new-knext-type {reducing} {uncountable}) (new-knext-type {loss} {uncountable}) (new-statement {reducing} {consists of} {loss}) (new-knext-type {reducing} {uncountable}) (new-knext-type {chemical reaction} {uncountable}) (new-statement {reducing} {consists of} {chemical reaction}) (new-knext-is-a '({relaxation} {countable}) '({increment} {countable})) (new-knext-is-a '({release} {uncountable}) '({natural process} {countable})) (new-knext-is-a '({reproduction} {uncountable}) '({organic process} {countable})) (new-knext-is-a '({lookup} {countable}) '({operation} {countable})) (new-knext-is-a '({shedding} {countable}) '({organic process} {countable})) (new-knext-is-a '({slippage} {countable}) '({decline} {countable})) (new-knext-is-a '({slump} {countable}) '({deterioration} {uncountable})) (new-knext-is-a '({slump} {countable}) '({decline in quality} {countable})) (new-knext-is-a '({sorting} {countable}) '({operation} {countable})) (new-knext-is-a '({rigidifying} {uncountable}) '({natural process} {countable})) (new-knext-is-a '({ecological succession} {countable}) '({natural process} {countable})) (new-knext-is-a '({supply} {countable}) '({economic process} {countable})) (new-knext-is-a '({survival of the fittest} {uncountable}) '({natural process} {countable})) (new-knext-is-a '({selection} {countable}) '({natural process} {countable})) (new-knext-is-a '({thaw} {countable}) '({heating} {uncountable})) (new-knext-is-a '({thawing} {uncountable}) '({heating} {uncountable})) (new-knext-is-a '({tumefaction} {uncountable}) '({organic process} {countable})) (new-knext-is-a '({fundamental quantity} {countable}) '({quantity} {countable})) (new-knext-is-a '({definite quantity} {countable}) '({quantity} {countable})) (new-knext-is-a '({indefinite quantity} {countable}) '({quantity} {countable})) (new-knext-is-a '({relative quantity} {countable}) '({quantity} {countable})) (new-knext-is-a '({system of measurement} {countable}) '({quantity} {countable})) (new-knext-is-a '({enough} {uncountable}) '({relative quantity} {countable})) (new-knext-is-a '({sufficiency} {countable}) '({relative quantity} {countable})) (new-knext-is-a '({fill} {countable}) '({enough} {uncountable})) (new-knext-is-a '({fill} {countable}) '({sufficiency} {countable})) (new-knext-is-a '({absolute majority} {countable}) '({relative quantity} {countable})) (new-knext-is-a '({number} {countable}) '({definite quantity} {countable})) (new-knext-is-a '({unit of measurement} {countable}) '({definite quantity} {countable})) (new-knext-is-a '({count} {countable}) '({number} {countable})) (new-knext-is-a '({circulation} {uncountable}) '({count} {countable})) (new-knext-is-a '({score} {countable}) '({number} {countable})) (new-knext-is-a '({record} {countable}) '({number} {countable})) (new-knext-is-a '({radix} {countable}) '({number} {countable})) (new-knext-is-a '({quota} {countable}) '({number} {countable})) (new-knext-is-a '({area unit} {countable}) '({unit of measurement} {countable})) (new-knext-is-a '({linear unit} {countable}) '({unit of measurement} {countable})) (new-knext-is-a '({metric unit} {countable}) '({unit of measurement} {countable})) (new-knext-is-a '({temperature unit} {countable}) '({unit of measurement} {countable})) (new-knext-is-a '({weight unit} {countable}) '({unit of measurement} {countable})) (new-knext-is-a '({mass unit} {countable}) '({unit of measurement} {countable})) (new-knext-is-a '({inch} {countable}) '({linear unit} {countable})) (new-knext-is-a '({ft} {countable}) '({linear unit} {countable})) (new-knext-is-a '({yard} {countable}) '({linear unit} {countable})) (new-knext-is-a '({chain} {countable}) '({linear unit} {countable})) (new-knext-is-a '({palm} {countable}) '({linear unit} {countable})) (new-knext-is-a '({agate line} {countable}) '({area unit} {countable})) (new-knext-is-a '({degree} {countable}) '({temperature unit} {countable})) (new-knext-is-a '({metric weight unit} {countable}) '({metric unit} {countable})) (new-knext-is-a '({metric weight unit} {countable}) '({mass unit} {countable})) (new-knext-is-a '({gram} {countable}) '({metric weight unit} {countable})) (new-knext-is-a '({dekagram} {countable}) '({metric weight unit} {countable})) (new-knext-is-a '({kilogram} {countable}) '({metric weight unit} {countable})) (new-knext-is-a '({key} {countable}) '({kilogram} {countable})) (new-knext-is-a '({remainder} {countable}) '({number} {countable})) (new-knext-is-a '({second power} {countable}) '({number} {countable})) (new-knext-is-a '({nothing} {countable}) '({relative quantity} {countable})) (new-knext-is-a '({zilch} {uncountable}) '({relative quantity} {countable})) (new-knext-is-a '({increase} {countable}) '({indefinite quantity} {countable})) (new-knext-is-a '({containerful} {countable}) '({indefinite quantity} {countable})) (new-knext-is-a '({pace} {countable}) '({indefinite quantity} {countable})) (new-knext-is-a '({large indefinite quantity} {countable}) '({indefinite quantity} {countable})) (new-knext-is-a '({limitation} {countable}) '({indefinite quantity} {countable})) (new-knext-is-a '({limit point} {countable}) '({indefinite quantity} {countable})) (new-knext-is-a '({output} {countable}) '({indefinite quantity} {countable})) (new-knext-is-a '({picking} {countable}) '({output} {countable})) (new-knext-is-a '({small indefinite quantity} {countable}) '({indefinite quantity} {countable})) (new-knext-is-a '({dab} {countable}) '({small indefinite quantity} {countable})) (new-knext-is-a '({scattering} {countable}) '({small indefinite quantity} {countable})) (new-knext-is-a '({nose} {countable}) '({small indefinite quantity} {countable})) (new-knext-is-a '({minimum} {countable}) '({small indefinite quantity} {countable})) (new-knext-is-a '({worth} {uncountable}) '({indefinite quantity} {countable})) (new-knext-is-a '({basketful} {countable}) '({containerful} {countable})) (new-knext-is-a '({bottleful} {countable}) '({containerful} {countable})) (new-knext-is-a '({cupful} {countable}) '({containerful} {countable})) (new-knext-is-a '({dishful} {countable}) '({containerful} {countable})) (new-knext-is-a '({potful} {countable}) '({containerful} {countable})) (new-knext-is-a '({drib} {countable}) '({small indefinite quantity} {countable})) (new-knext-is-a '({load} {countable}) '({indefinite quantity} {countable})) (new-knext-is-a '({precipitation} {uncountable}) '({indefinite quantity} {countable})) (new-knext-is-a '({maximum} {countable}) '({large indefinite quantity} {countable})) (new-knext-is-a '({mile} {countable}) '({large indefinite quantity} {countable})) (new-knext-is-a '({ocean} {countable}) '({large indefinite quantity} {countable})) (new-knext-is-a '({supply} {countable}) '({indefinite quantity} {countable})) (new-knext-is-a '({elbow room} {uncountable}) '({spatial relation} {countable})) (new-knext-is-a '({headroom} {uncountable}) '({elbow room} {uncountable})) (new-knext-is-a '({parking} {uncountable}) '({elbow room} {uncountable})) (new-knext-is-a '({volume} {countable}) '({quantity} {countable})) (new-knext-is-a '({capacity} {countable}) '({volume} {countable})) (new-knext-is-a '({proof} {countable}) '({quantity} {countable})) (new-knext-is-a '({function} {countable}) '({mathematical relation} {countable})) (new-knext-is-a '({alliance} {countable}) '({connection} {countable})) (new-knext-is-a '({alliance} {countable}) '({connectedness} {uncountable})) (new-knext-is-a '({linkage} {countable}) '({connection} {countable})) (new-knext-is-a '({linkage} {countable}) '({connectedness} {uncountable})) (new-knext-is-a '({communication} {countable}) '({connection} {countable})) (new-knext-is-a '({communication} {countable}) '({connectedness} {uncountable})) (new-knext-is-a '({bridge} {countable}) '({connection} {countable})) (new-knext-is-a '({bridge} {countable}) '({connectedness} {uncountable})) (new-knext-type {relevance} {uncountable}) (new-knext-type {connection} {uncountable}) (new-statement {relevance} {consists of} {connection}) (new-knext-is-a '({relevance} {uncountable}) '({connectedness} {uncountable})) (new-knext-is-a '({relatedness} {countable}) '({connection} {countable})) (new-knext-is-a '({relatedness} {countable}) '({connectedness} {uncountable})) (new-knext-is-a '({irrelevance} {uncountable}) '({unconnectedness} {uncountable})) (new-knext-is-a '({unrelatedness} {uncountable}) '({unconnectedness} {uncountable})) (new-knext-is-a '({grammatical relation} {countable}) '({linguistic relation} {countable})) (new-knext-is-a '({aspect} {uncountable}) '({grammatical relation} {countable})) (new-knext-is-a '({highlight} {countable}) '({detail} {countable})) (new-knext-is-a '({line of descent} {countable}) '({family relationship} {countable})) (new-knext-type {parentage} {uncountable}) (new-knext-type {family relationship} {uncountable}) (new-statement {parentage} {consists of} {family relationship}) (new-knext-is-a '({scale} {countable}) '({magnitude relation} {countable})) (new-knext-is-a '({percentage} {countable}) '({proportion} {countable})) (new-knext-is-a '({ratio} {countable}) '({magnitude relation} {countable})) (new-knext-is-a '({efficiency} {uncountable}) '({ratio} {countable})) (new-knext-is-a '({focal ratio} {countable}) '({ratio} {countable})) (new-knext-is-a '({direction} {uncountable}) '({spatial relation} {countable})) (new-knext-is-a '({orientation} {uncountable}) '({direction} {uncountable})) (new-knext-is-a '({compass point} {countable}) '({direction} {uncountable})) (new-knext-is-a '({cardinal compass point} {countable}) '({compass point} {countable})) (new-knext-is-a '({due north} {uncountable}) '({cardinal compass point} {countable})) (new-knext-is-a '({northward} {countable}) '({cardinal compass point} {countable})) (new-knext-is-a '({magnetic north} {countable}) '({direction} {uncountable})) (new-knext-is-a '({east} {uncountable}) '({cardinal compass point} {countable})) (new-knext-type {cardinal compass point} {countable}) (new-knext-indv {due east} {cardinal compass point}) (new-knext-is-a '({due south} {countable}) '({cardinal compass point} {countable})) (new-knext-is-a '({due west} {uncountable}) '({cardinal compass point} {countable})) (new-knext-is-a '({angular position} {countable}) '({spatial relation} {countable})) (new-knext-type {competition} {uncountable}) (new-knext-type {business relation} {uncountable}) (new-statement {competition} {consists of} {business relation}) (new-knext-is-a '({politics} {countable}) '({social relation} {countable})) (new-knext-is-a '({correlation} {countable}) '({reciprocality} {uncountable})) (new-knext-is-a '({second} {countable}) '({rank} {countable})) (new-knext-is-a '({scale} {countable}) '({standard} {countable})) (new-knext-is-a '({wind scale} {countable}) '({scale} {countable})) (new-knext-is-a '({norm} {countable}) '({standard} {countable})) (new-knext-type {contrast} {uncountable}) (new-knext-type {opposition} {uncountable}) (new-statement {contrast} {consists of} {opposition}) (new-knext-is-a '({contrast} {uncountable}) '({oppositeness} {uncountable})) (new-knext-is-a '({direct contrast} {countable}) '({opposition} {countable})) (new-knext-is-a '({direct contrast} {countable}) '({oppositeness} {uncountable})) (new-knext-is-a '({contrary} {countable}) '({opposition} {countable})) (new-knext-is-a '({contrary} {countable}) '({oppositeness} {uncountable})) (new-knext-is-a '({reverse} {countable}) '({opposition} {countable})) (new-knext-is-a '({reverse} {countable}) '({oppositeness} {uncountable})) (new-knext-is-a '({inverse} {countable}) '({opposition} {countable})) (new-knext-is-a '({inverse} {countable}) '({oppositeness} {uncountable})) (new-knext-is-a '({solid} {countable}) '({shape} {countable})) (new-knext-is-a '({plane} {countable}) '({shape} {countable})) (new-knext-is-a '({natural shape} {countable}) '({shape} {countable})) (new-knext-is-a '({figure} {countable}) '({shape} {countable})) (new-knext-is-a '({plane figure} {countable}) '({figure} {countable})) (new-knext-is-a '({subfigure} {countable}) '({figure} {countable})) (new-knext-is-a '({line} {countable}) '({shape} {countable})) (new-knext-is-a '({convex shape} {countable}) '({solid} {countable})) (new-knext-is-a '({angular shape} {countable}) '({shape} {countable})) (new-knext-is-a '({concave shape} {countable}) '({solid} {countable})) (new-knext-is-a '({cylinder} {countable}) '({solid} {countable})) (new-knext-is-a '({round shape} {countable}) '({shape} {countable})) (new-knext-is-a '({heart} {countable}) '({plane figure} {countable})) (new-knext-is-a '({distorted shape} {countable}) '({shape} {countable})) (new-knext-is-a '({amorphous shape} {countable}) '({shape} {countable})) (new-knext-is-a '({curve} {countable}) '({line} {countable})) (new-knext-is-a '({bend} {countable}) '({curve} {countable})) (new-knext-is-a '({straight line} {countable}) '({line} {countable})) (add-english-names (list {connection} {connexion} {connection} {connexion}) (list "connection" "connexion" "connection" "connexion")) (new-knext-is-a '({diameter} {countable}) '({straight line} {countable})) (new-knext-is-a '({recess} {countable}) '({concave shape} {countable})) (new-knext-is-a '({conic section} {countable}) '({plane figure} {countable})) (new-knext-is-a '({intersection} {countable}) '({set} {countable})) (new-knext-is-a '({oblong} {countable}) '({plane figure} {countable})) (new-knext-is-a '({circle} {countable}) '({ellipse} {countable})) (new-knext-is-a '({equator} {countable}) '({circle} {countable})) (new-knext-is-a '({disk} {countable}) '({round shape} {countable})) (new-knext-is-a '({whorl} {countable}) '({round shape} {countable})) (new-knext-is-a '({ellipse} {countable}) '({conic section} {countable})) (new-knext-is-a '({star} {countable}) '({plane figure} {countable})) (new-knext-is-a '({polyhedron} {countable}) '({solid} {countable})) (new-knext-is-a '({parabola} {countable}) '({conic section} {countable})) (new-knext-is-a '({angle} {countable}) '({space} {countable})) (new-knext-type {angle of inclination} {uncountable}) (new-knext-type {angle} {uncountable}) (new-statement {angle of inclination} {consists of} {angle}) (new-knext-type {inclination of an orbit} {uncountable}) (new-knext-type {angle} {uncountable}) (new-statement {inclination of an orbit} {consists of} {angle}) (new-knext-is-a '({angle of dip} {countable}) '({angle} {countable})) (new-knext-is-a '({bulge} {countable}) '({projection} {countable})) (new-knext-is-a '({arc} {countable}) '({curve} {countable})) (new-knext-is-a '({imprint} {countable}) '({concave shape} {countable})) (new-knext-is-a '({flank} {countable}) '({subfigure} {countable})) (new-knext-is-a '({equipoise} {countable}) '({structure} {countable})) (new-knext-is-a '({sphere} {countable}) '({round shape} {countable})) (new-knext-is-a '({dewdrop} {countable}) '({drop} {countable})) (new-knext-is-a '({tip} {countable}) '({convex shape} {countable})) (new-knext-is-a '({bound} {countable}) '({line} {countable})) (new-knext-is-a '({brink} {countable}) '({bound} {countable})) (new-knext-is-a '({upper bound} {countable}) '({bound} {countable})) (new-knext-is-a '({incision} {countable}) '({imprint} {countable})) (new-knext-is-a '({wrinkle} {countable}) '({imprint} {countable})) (new-knext-is-a '({crevice} {countable}) '({imprint} {countable})) (new-knext-is-a '({fold} {countable}) '({angular shape} {countable})) (new-knext-is-a '({void} {countable}) '({space} {countable})) (new-knext-type {emptiness} {uncountable}) (new-knext-type {space} {uncountable}) (new-statement {emptiness} {consists of} {space}) (new-knext-is-a '({space} {countable}) '({location} {countable})) (new-knext-is-a '({space} {countable}) '({amorphous shape} {countable})) (add-english-names (list {connection} {connexion} {connection} {connexion}) (list "connection" "connexion" "connection" "connexion")) (add-english-names (list {connection} {connexion} {connection} {connexion}) (list "connection" "connexion" "connection" "connexion")) (new-knext-is-a '({dot} {countable}) '({disk} {countable})) (new-knext-is-a '({mold} {countable}) '({solid} {countable})) (new-knext-is-a '({cube} {countable}) '({solid} {countable})) (new-knext-is-a '({pyramid} {countable}) '({polyhedron} {countable})) (new-knext-is-a '({projection} {countable}) '({convex shape} {countable})) (new-knext-is-a '({medium} {countable}) '({state} {countable})) (new-knext-is-a '({condition} {countable}) '({state} {countable})) (new-knext-is-a '({condition} {countable}) '({state} {countable})) (new-knext-is-a '({health} {uncountable}) '({condition} {countable})) (new-knext-is-a '({participation} {uncountable}) '({condition} {countable})) (new-knext-is-a '({regularization} {countable}) '({condition} {countable})) (new-knext-is-a '({situation} {countable}) '({condition} {countable})) (new-knext-is-a '({place} {countable}) '({situation} {countable})) (new-knext-is-a '({situation} {countable}) '({state} {countable})) (new-knext-is-a '({relationship} {countable}) '({state} {countable})) (new-knext-is-a '({relationship} {countable}) '({state} {countable})) (new-knext-is-a '({business relationship} {countable}) '({relationship} {countable})) (new-knext-is-a '({companionship} {uncountable}) '({friendship} {uncountable})) (new-knext-is-a '({confidence} {uncountable}) '({friendship} {uncountable})) (new-knext-is-a '({acquaintance} {countable}) '({relationship} {countable})) (new-knext-type {acquaintanceship} {uncountable}) (new-knext-type {relationship} {uncountable}) (new-statement {acquaintanceship} {consists of} {relationship}) (new-knext-is-a '({affiliation} {countable}) '({relationship} {countable})) (new-knext-type {friendship} {uncountable}) (new-knext-type {relationship} {uncountable}) (new-statement {friendship} {consists of} {relationship}) (new-knext-is-a '({love affair} {countable}) '({relationship} {countable})) (new-knext-type {membership} {uncountable}) (new-knext-type {relationship} {uncountable}) (new-statement {membership} {consists of} {relationship}) (new-knext-is-a '({sexual relationship} {countable}) '({relationship} {countable})) (new-knext-is-a '({liaison} {countable}) '({sexual relationship} {countable})) (new-knext-type {involvement} {uncountable}) (new-knext-type {sexual relationship} {uncountable}) (new-statement {involvement} {consists of} {sexual relationship}) (new-knext-is-a '({challenge} {countable}) '({situation} {countable})) (new-knext-is-a '({complication} {countable}) '({situation} {countable})) (new-knext-is-a '({crisis} {countable}) '({situation} {countable})) (new-knext-type {crowding} {uncountable}) (new-knext-type {situation} {uncountable}) (new-statement {crowding} {consists of} {situation}) (new-knext-is-a '({environment} {countable}) '({situation} {countable})) (new-knext-is-a '({equilibrium} {countable}) '({situation} {countable})) (new-knext-is-a '({strait} {countable}) '({situation} {countable})) (new-knext-type {straits} {uncountable}) (new-knext-type {situation} {uncountable}) (new-statement {straits} {consists of} {situation}) (new-knext-is-a '({picture} {countable}) '({situation} {countable})) (new-knext-is-a '({prison house} {countable}) '({situation} {countable})) (new-knext-is-a '({wild} {countable}) '({state} {countable})) (new-knext-is-a '({degree} {countable}) '({state} {countable})) (new-knext-is-a '({acme} {countable}) '({degree} {countable})) (new-knext-is-a '({extent} {countable}) '({degree} {countable})) (new-knext-is-a '({resultant} {countable}) '({degree} {countable})) (new-knext-is-a '({plane} {countable}) '({degree} {countable})) (new-knext-is-a '({circumstance} {countable}) '({condition} {countable})) (new-knext-is-a '({event} {countable}) '({circumstance} {countable})) (new-knext-is-a '({thing} {countable}) '({situation} {countable})) (new-knext-type {urgency} {uncountable}) (new-knext-type {situation} {uncountable}) (new-statement {urgency} {consists of} {situation}) (new-knext-is-a '({office} {countable}) '({state} {countable})) (new-knext-is-a '({power} {uncountable}) '({state} {countable})) (new-knext-is-a '({status} {countable}) '({state} {countable})) (new-knext-is-a '({equivalence} {uncountable}) '({status} {countable})) (new-knext-is-a '({social station} {countable}) '({status} {countable})) (new-knext-is-a '({station} {countable}) '({social station} {countable})) (new-knext-is-a '({quality} {countable}) '({social station} {countable})) (new-knext-is-a '({standing} {uncountable}) '({status} {countable})) (new-knext-is-a '({legal status} {countable}) '({status} {countable})) (new-knext-is-a '({command} {countable}) '({status} {countable})) (new-knext-is-a '({nationality} {countable}) '({status} {countable})) (new-knext-is-a '({being} {uncountable}) '({state} {countable})) (new-knext-is-a '({actuality} {uncountable}) '({being} {uncountable})) (new-knext-is-a '({realness} {uncountable}) '({actuality} {uncountable})) (new-knext-is-a '({the true} {uncountable}) '({actuality} {uncountable})) (new-knext-is-a '({presence} {uncountable}) '({being} {uncountable})) (new-knext-is-a '({nonbeing} {uncountable}) '({state} {countable})) (new-knext-is-a '({nonexistence} {uncountable}) '({nonbeing} {uncountable})) (new-knext-is-a '({absence} {countable}) '({lack} {countable})) (new-knext-is-a '({life} {uncountable}) '({being} {uncountable})) (new-knext-is-a '({animation} {uncountable}) '({being} {uncountable})) (new-knext-is-a '({survival} {uncountable}) '({animation} {uncountable})) (new-knext-is-a '({subsistence} {countable}) '({survival} {uncountable})) (new-knext-is-a '({death} {uncountable}) '({state} {countable})) (new-knext-is-a '({marital status} {countable}) '({legal status} {countable})) (new-knext-type {marriage} {uncountable}) (new-knext-type {marital status} {uncountable}) (new-statement {marriage} {consists of} {marital status}) (new-knext-is-a '({employment} {uncountable}) '({state} {countable})) (new-knext-is-a '({unemployment} {uncountable}) '({state} {countable})) (new-knext-is-a '({order} {uncountable}) '({state} {countable})) (new-knext-is-a '({concordance} {countable}) '({order} {uncountable})) (new-knext-is-a '({peace} {uncountable}) '({order} {uncountable})) (new-knext-type {agreement} {uncountable}) (new-knext-type {concordance} {uncountable}) (new-statement {agreement} {consists of} {concordance}) (new-knext-is-a '({accord} {countable}) '({concordance} {countable})) (new-knext-is-a '({conciliation} {uncountable}) '({peace} {uncountable})) (new-knext-is-a '({consensus} {uncountable}) '({agreement} {uncountable})) (new-knext-type {consensus} {uncountable}) (new-knext-type {accord} {uncountable}) (new-statement {consensus} {consists of} {accord}) (new-knext-is-a '({disorder} {uncountable}) '({state} {countable})) (new-knext-is-a '({commotion} {countable}) '({disorder} {uncountable})) (new-knext-is-a '({enmity} {uncountable}) '({state} {countable})) (new-knext-is-a '({latent hostility} {uncountable}) '({enmity} {uncountable})) (new-knext-is-a '({tension} {countable}) '({enmity} {uncountable})) (new-knext-is-a '({conflict} {uncountable}) '({state} {countable})) (new-knext-is-a '({friction} {uncountable}) '({conflict} {uncountable})) (new-knext-is-a '({war} {countable}) '({enmity} {uncountable})) (new-knext-is-a '({disagreement} {countable}) '({conflict} {uncountable})) (new-knext-is-a '({dissension} {uncountable}) '({conflict} {uncountable})) (new-knext-is-a '({illumination} {uncountable}) '({state} {countable})) (new-knext-is-a '({lighting} {uncountable}) '({illumination} {uncountable})) (new-knext-is-a '({dark} {uncountable}) '({illumination} {uncountable})) (new-knext-is-a '({total darkness} {countable}) '({dark} {uncountable})) (new-knext-is-a '({lightlessness} {uncountable}) '({dark} {uncountable})) (new-knext-is-a '({emotional state} {countable}) '({emotion} {countable})) (new-knext-is-a '({spirit} {uncountable}) '({emotion} {countable})) (new-knext-is-a '({ecstasy} {uncountable}) '({emotional state} {countable})) (new-knext-is-a '({ecstasy} {uncountable}) '({spirit} {uncountable})) (new-knext-is-a '({happiness} {uncountable}) '({emotional state} {countable})) (new-knext-is-a '({happiness} {uncountable}) '({spirit} {uncountable})) (new-knext-is-a '({unhappiness} {uncountable}) '({emotional state} {countable})) (new-knext-is-a '({unhappiness} {uncountable}) '({spirit} {uncountable})) (new-knext-is-a '({sorrowfulness} {uncountable}) '({unhappiness} {uncountable})) (new-knext-is-a '({mourning} {uncountable}) '({sorrowfulness} {uncountable})) (new-knext-is-a '({innocence} {uncountable}) '({condition} {countable})) (new-knext-is-a '({clear} {uncountable}) '({innocence} {uncountable})) (new-knext-is-a '({guilt} {uncountable}) '({condition} {countable})) (new-knext-is-a '({freedom} {uncountable}) '({state} {countable})) (new-knext-is-a '({autonomy} {uncountable}) '({independence} {uncountable})) (new-knext-type {fragmentation} {uncountable}) (new-knext-type {disintegration} {uncountable}) (new-statement {fragmentation} {consists of} {disintegration}) (new-knext-is-a '({free rein} {uncountable}) '({freedom} {uncountable})) (new-knext-is-a '({independence} {uncountable}) '({freedom} {uncountable})) (new-knext-is-a '({liberty} {uncountable}) '({freedom} {uncountable})) (new-knext-type {subjugation} {uncountable}) (new-knext-type {relationship} {uncountable}) (new-statement {subjugation} {consists of} {relationship}) (new-knext-is-a '({confinement} {uncountable}) '({subjugation} {uncountable})) (new-knext-is-a '({constraint} {uncountable}) '({confinement} {uncountable})) (new-knext-is-a '({detention} {uncountable}) '({confinement} {uncountable})) (new-knext-is-a '({delegacy} {uncountable}) '({state} {countable})) (new-knext-type {balance} {uncountable}) (new-knext-type {equilibrium} {uncountable}) (new-statement {balance} {consists of} {equilibrium}) (new-knext-is-a '({motion} {uncountable}) '({state} {countable})) (new-knext-is-a '({shakiness} {uncountable}) '({motion} {uncountable})) (new-knext-is-a '({trembling} {countable}) '({motion} {uncountable})) (new-knext-is-a '({stream} {countable}) '({motion} {uncountable})) (new-knext-is-a '({motionlessness} {uncountable}) '({state} {countable})) (new-knext-is-a '({activeness} {uncountable}) '({state} {countable})) (add-english-names (list {behavior} {behaviour}) (list "behavior" "behaviour")) (new-knext-is-a '({eructation} {countable}) '({activeness} {uncountable})) (new-knext-is-a '({operation} {uncountable}) '({activeness} {uncountable})) (new-knext-is-a '({play} {uncountable}) '({activeness} {uncountable})) (new-knext-is-a '({inaction} {uncountable}) '({state} {countable})) (new-knext-is-a '({rest} {uncountable}) '({inaction} {uncountable})) (new-knext-is-a '({sleep} {uncountable}) '({physical condition} {countable})) (new-knext-is-a '({slumber} {countable}) '({physical condition} {countable})) (new-knext-is-a '({imminence} {uncountable}) '({state} {countable})) (new-knext-is-a '({readiness} {uncountable}) '({state} {countable})) (new-knext-is-a '({ready} {countable}) '({readiness} {uncountable})) (new-knext-is-a '({alert} {countable}) '({readiness} {uncountable})) (new-knext-is-a '({physical condition} {countable}) '({condition} {countable})) (new-knext-is-a '({drive} {uncountable}) '({physical condition} {countable})) (new-knext-is-a '({sensation} {uncountable}) '({excitation} {uncountable})) (new-knext-is-a '({hunger} {uncountable}) '({drive} {uncountable})) (new-knext-is-a '({thirst} {uncountable}) '({drive} {uncountable})) (new-knext-is-a '({asphyxia} {uncountable}) '({physical condition} {countable})) (new-knext-is-a '({pregnancy} {uncountable}) '({physical condition} {countable})) (new-knext-is-a '({good health} {uncountable}) '({physical condition} {countable})) (new-knext-is-a '({vim} {countable}) '({good health} {uncountable})) (new-knext-is-a '({vitality} {uncountable}) '({good health} {uncountable})) (new-knext-is-a '({blush} {countable}) '({good health} {uncountable})) (new-knext-is-a '({rosiness} {uncountable}) '({good health} {uncountable})) (new-knext-is-a '({pathological state} {countable}) '({physical condition} {countable})) (new-knext-type {ill health} {uncountable}) (new-knext-type {pathological state} {uncountable}) (new-statement {ill health} {consists of} {pathological state}) (new-knext-is-a '({health problem} {countable}) '({pathological state} {countable})) (new-knext-is-a '({disorder} {countable}) '({physical condition} {countable})) (new-knext-is-a '({ailment} {countable}) '({disorder} {countable})) (new-knext-is-a '({eating disorder} {countable}) '({disorder} {countable})) (new-knext-is-a '({anorexia} {uncountable}) '({eating disorder} {countable})) (new-knext-is-a '({illness} {uncountable}) '({ill health} {uncountable})) (new-knext-type {illness} {uncountable}) (new-knext-type {health problem} {uncountable}) (new-statement {illness} {consists of} {health problem}) (new-knext-is-a '({malady} {countable}) '({ill health} {uncountable})) (new-knext-is-a '({malady} {countable}) '({health problem} {countable})) (new-knext-is-a '({addiction} {countable}) '({physical condition} {countable})) (new-knext-is-a '({habituation} {uncountable}) '({physical condition} {countable})) (new-knext-is-a '({collapse} {countable}) '({illness} {uncountable})) (new-knext-is-a '({collapse} {countable}) '({malady} {countable})) (new-knext-is-a '({disease} {countable}) '({illness} {uncountable})) (new-knext-is-a '({disease} {countable}) '({malady} {countable})) (new-knext-is-a '({attack} {countable}) '({affliction} {countable})) (new-knext-is-a '({apoplexy} {countable}) '({attack} {countable})) (new-knext-is-a '({cerebrovascular accident} {countable}) '({attack} {countable})) (new-knext-is-a '({paroxysm} {countable}) '({attack} {countable})) (new-knext-is-a '({fit} {countable}) '({attack} {countable})) (new-knext-is-a '({mental disorder} {countable}) '({disorder} {countable})) (new-knext-is-a '({inflammatory disease} {countable}) '({disease} {countable})) (new-knext-is-a '({indisposition} {countable}) '({illness} {uncountable})) (new-knext-is-a '({indisposition} {countable}) '({malady} {countable})) (new-knext-is-a '({infection} {countable}) '({ill health} {uncountable})) (new-knext-is-a '({infection} {countable}) '({health problem} {countable})) (new-knext-is-a '({focal infection} {countable}) '({infection} {countable})) (new-knext-type {scabies} {uncountable}) (new-knext-type {infection} {uncountable}) (new-statement {scabies} {consists of} {infection}) (new-knext-is-a '({itch} {countable}) '({infection} {countable})) (new-knext-is-a '({nidus} {countable}) '({point} {countable})) (new-knext-is-a '({growth} {countable}) '({illness} {uncountable})) (new-knext-is-a '({growth} {countable}) '({malady} {countable})) (new-knext-is-a '({tumor} {countable}) '({growth} {countable})) (new-knext-is-a '({plant disease} {countable}) '({disease} {countable})) (new-knext-is-a '({injury} {countable}) '({ill health} {uncountable})) (new-knext-is-a '({injury} {countable}) '({health problem} {countable})) (new-knext-is-a '({abrasion} {countable}) '({wound} {countable})) (new-knext-is-a '({graze} {countable}) '({abrasion} {countable})) (new-knext-is-a '({gash} {countable}) '({wound} {countable})) (new-knext-is-a '({bite} {countable}) '({wound} {countable})) (new-knext-is-a '({burn} {countable}) '({injury} {countable})) (new-knext-is-a '({dislocation} {countable}) '({injury} {countable})) (new-knext-is-a '({fracture} {countable}) '({injury} {countable})) (new-knext-is-a '({rupture} {countable}) '({injury} {countable})) (new-knext-is-a '({insect bite} {countable}) '({injury} {countable})) (new-knext-is-a '({wound} {countable}) '({injury} {countable})) (new-knext-is-a '({wrench} {countable}) '({injury} {countable})) (new-knext-is-a '({symptom} {countable}) '({evidence} {uncountable})) (new-knext-is-a '({syndrome} {countable}) '({symptom} {countable})) (new-knext-is-a '({radiation sickness} {uncountable}) '({syndrome} {countable})) (new-knext-type {syndrome} {countable}) (new-knext-indv {radiation syndrome} {syndrome}) (new-knext-is-a '({effect} {countable}) '({symptom} {countable})) (new-knext-is-a '({festination} {countable}) '({symptom} {countable})) (new-knext-is-a '({swelling} {uncountable}) '({symptom} {countable})) (new-knext-is-a '({lump} {countable}) '({symptom} {countable})) (new-knext-is-a '({intumescence} {uncountable}) '({swelling} {uncountable})) (new-knext-type {intumescence} {uncountable}) (new-knext-type {lump} {uncountable}) (new-statement {intumescence} {consists of} {lump}) (new-knext-is-a '({intumescency} {countable}) '({swelling} {uncountable})) (new-knext-is-a '({intumescency} {countable}) '({lump} {countable})) (new-knext-is-a '({pain} {uncountable}) '({symptom} {countable})) (new-knext-is-a '({ache} {countable}) '({pain} {uncountable})) (new-knext-is-a '({aching} {uncountable}) '({pain} {uncountable})) (new-knext-is-a '({suffering} {uncountable}) '({pain} {uncountable})) (new-knext-is-a '({sting} {countable}) '({pain} {uncountable})) (new-knext-is-a '({inflammation} {uncountable}) '({symptom} {countable})) (new-knext-is-a '({shivering} {countable}) '({symptom} {countable})) (new-knext-is-a '({nausea} {uncountable}) '({symptom} {countable})) (new-knext-is-a '({fever} {uncountable}) '({symptom} {countable})) (new-knext-is-a '({constipation} {uncountable}) '({symptom} {countable})) (new-knext-is-a '({psychological state} {countable}) '({condition} {countable})) (new-knext-is-a '({morale} {uncountable}) '({psychological state} {countable})) (new-knext-is-a '({anxiety} {uncountable}) '({psychological state} {countable})) (new-knext-is-a '({delusion} {countable}) '({psychological state} {countable})) (new-knext-is-a '({mental health} {uncountable}) '({psychological state} {countable})) (new-knext-is-a '({sanity} {uncountable}) '({mental health} {uncountable})) (new-knext-is-a '({lucidity} {countable}) '({sanity} {uncountable})) (new-knext-is-a '({rationality} {uncountable}) '({sanity} {uncountable})) (new-knext-is-a '({mental illness} {countable}) '({psychological state} {countable})) (new-knext-is-a '({megalomania} {uncountable}) '({mental illness} {countable})) (new-knext-is-a '({neurosis} {countable}) '({mental disorder} {countable})) (new-knext-is-a '({neuroticism} {uncountable}) '({mental disorder} {countable})) (new-knext-is-a '({insanity} {uncountable}) '({mental illness} {countable})) (new-knext-is-a '({psychosis} {countable}) '({mental illness} {countable})) (new-knext-is-a '({elation} {uncountable}) '({psychological state} {countable})) (new-knext-is-a '({spell} {countable}) '({psychological state} {countable})) (new-knext-is-a '({separation} {uncountable}) '({state} {countable})) (new-knext-is-a '({isolation} {uncountable}) '({separation} {uncountable})) (new-knext-is-a '({privateness} {uncountable}) '({isolation} {uncountable})) (new-knext-is-a '({discontinuity} {uncountable}) '({separation} {uncountable})) (new-knext-is-a '({disjunction} {countable}) '({separation} {uncountable})) (new-knext-is-a '({disconnectedness} {uncountable}) '({separation} {uncountable})) (new-knext-type {incoherence} {uncountable}) (new-knext-type {disjunction} {uncountable}) (new-statement {incoherence} {consists of} {disjunction}) (new-knext-is-a '({incoherence} {uncountable}) '({disconnectedness} {uncountable})) (new-knext-is-a '({unification} {uncountable}) '({state} {countable})) (new-knext-is-a '({coalition} {uncountable}) '({unification} {uncountable})) (new-knext-is-a '({alliance} {uncountable}) '({coalition} {uncountable})) (new-knext-is-a '({connectedness} {uncountable}) '({unification} {uncountable})) (new-knext-is-a '({contact} {uncountable}) '({connectedness} {uncountable})) (new-knext-is-a '({coherence} {uncountable}) '({connectedness} {uncountable})) (new-knext-is-a '({conjugation} {uncountable}) '({unification} {uncountable})) (new-knext-is-a '({association} {uncountable}) '({unification} {uncountable})) (new-knext-is-a '({disassociation} {uncountable}) '({separation} {uncountable})) (new-knext-is-a '({continuity} {uncountable}) '({coherence} {uncountable})) (new-knext-is-a '({melioration} {countable}) '({condition} {countable})) (new-knext-is-a '({declination} {countable}) '({condition} {countable})) (new-knext-type {development} {uncountable}) (new-knext-type {melioration} {uncountable}) (new-statement {development} {consists of} {melioration}) (new-knext-is-a '({wreck} {countable}) '({declination} {countable})) (new-knext-type {refurbishment} {uncountable}) (new-knext-type {melioration} {uncountable}) (new-statement {refurbishment} {consists of} {melioration}) (new-knext-is-a '({matureness} {uncountable}) '({state} {countable})) (new-knext-is-a '({immaturity} {uncountable}) '({state} {countable})) (new-knext-is-a '({puerility} {uncountable}) '({immaturity} {uncountable})) (new-knext-is-a '({tier} {countable}) '({rank} {countable})) (new-knext-is-a '({rating} {countable}) '({standing} {uncountable})) (new-knext-is-a '({gradation} {countable}) '({rank} {countable})) (new-knext-is-a '({cut} {countable}) '({gradation} {countable})) (new-knext-is-a '({rank} {countable}) '({status} {countable})) (new-knext-is-a '({dignity} {uncountable}) '({status} {countable})) (new-knext-is-a '({noblesse} {uncountable}) '({status} {countable})) (new-knext-is-a '({leadership} {uncountable}) '({status} {countable})) (new-knext-type {stress} {uncountable}) (new-knext-type {emphasis} {uncountable}) (new-statement {stress} {consists of} {emphasis}) (new-knext-is-a '({focus} {countable}) '({emphasis} {countable})) (new-knext-is-a '({prestige} {uncountable}) '({standing} {uncountable})) (add-english-names (list {honor} {honour}) (list "honor" "honour")) (new-knext-is-a '({laurels} {uncountable}) '({standing} {uncountable})) (add-english-names (list {honor} {honour}) (list "honor" "honour")) (new-knext-is-a '({glory} {uncountable}) '({laurels} {uncountable})) (add-english-names (list {honor} {honour}) (list "honor" "honour")) (new-knext-is-a '({fame} {uncountable}) '({laurels} {uncountable})) (add-english-names (list {honor} {honour}) (list "honor" "honour")) (new-knext-is-a '({esteem} {uncountable}) '({laurels} {uncountable})) (add-english-names (list {honor} {honour}) (list "honor" "honour")) (new-knext-is-a '({repute} {uncountable}) '({laurels} {uncountable})) (new-knext-is-a '({character} {countable}) '({repute} {uncountable})) (new-knext-is-a '({name} {countable}) '({repute} {uncountable})) (new-knext-is-a '({dishonor} {uncountable}) '({standing} {uncountable})) (new-knext-is-a '({disgrace} {uncountable}) '({dishonor} {uncountable})) (new-knext-is-a '({humiliation} {uncountable}) '({disgrace} {uncountable})) (new-knext-is-a '({abasement} {countable}) '({humiliation} {uncountable})) (new-knext-type {degeneracy} {uncountable}) (new-knext-type {abasement} {uncountable}) (new-statement {degeneracy} {consists of} {abasement}) (new-knext-is-a '({infamy} {uncountable}) '({dishonor} {uncountable})) (new-knext-is-a '({ascendance} {uncountable}) '({condition} {countable})) (new-knext-is-a '({ascendancy} {uncountable}) '({condition} {countable})) (new-knext-type {supremacy} {uncountable}) (new-knext-type {ascendance} {uncountable}) (new-statement {supremacy} {consists of} {ascendance}) (new-knext-is-a '({supremacy} {uncountable}) '({ascendancy} {uncountable})) (new-knext-type {dominion} {uncountable}) (new-knext-type {ascendance} {uncountable}) (new-statement {dominion} {consists of} {ascendance}) (new-knext-is-a '({dominion} {uncountable}) '({ascendancy} {uncountable})) (new-knext-is-a '({rule} {countable}) '({ascendance} {countable})) (new-knext-is-a '({rule} {countable}) '({ascendancy} {uncountable})) (new-knext-is-a '({monopoly} {countable}) '({ascendance} {countable})) (new-knext-is-a '({monopoly} {countable}) '({ascendancy} {uncountable})) (new-knext-is-a '({comfort} {uncountable}) '({condition} {countable})) (new-knext-is-a '({relief} {uncountable}) '({comfort} {uncountable})) (new-knext-is-a '({discomfort} {uncountable}) '({condition} {countable})) (new-knext-type {health} {uncountable}) (new-knext-type {wellbeing} {uncountable}) (new-statement {health} {consists of} {wellbeing}) (new-knext-is-a '({woe} {countable}) '({misery} {uncountable})) (new-knext-is-a '({need} {countable}) '({condition} {countable})) (new-knext-is-a '({lack} {countable}) '({need} {countable})) (new-knext-is-a '({dearth} {countable}) '({lack} {countable})) (new-knext-is-a '({stringency} {countable}) '({lack} {countable})) (new-knext-is-a '({necessity} {countable}) '({need} {countable})) (new-knext-is-a '({nothingness} {uncountable}) '({nonexistence} {uncountable})) (new-knext-is-a '({nakedness} {uncountable}) '({condition} {countable})) (new-knext-is-a '({grace} {uncountable}) '({state} {countable})) (new-knext-is-a '({state of grace} {countable}) '({state} {countable})) (new-knext-is-a '({perfection} {uncountable}) '({state} {countable})) (new-knext-is-a '({dream} {countable}) '({perfection} {uncountable})) (new-knext-is-a '({refinement} {uncountable}) '({perfection} {uncountable})) (new-knext-is-a '({culture} {countable}) '({perfection} {uncountable})) (new-knext-is-a '({integrity} {uncountable}) '({state} {countable})) (new-knext-is-a '({imperfection} {uncountable}) '({state} {countable})) (new-knext-is-a '({imperfectness} {uncountable}) '({state} {countable})) (new-knext-is-a '({failing} {countable}) '({imperfection} {countable})) (new-knext-is-a '({failing} {countable}) '({imperfectness} {uncountable})) (new-knext-is-a '({flaw} {countable}) '({imperfection} {countable})) (new-knext-is-a '({flaw} {countable}) '({imperfectness} {uncountable})) (new-knext-is-a '({luck} {countable}) '({condition} {countable})) (new-knext-type {circumstances} {uncountable}) (new-knext-type {condition} {uncountable}) (new-statement {circumstances} {consists of} {condition}) (new-knext-is-a '({victimization} {uncountable}) '({adversity} {uncountable})) (new-knext-is-a '({failure} {countable}) '({luck} {countable})) (new-knext-type {failure} {countable}) (new-knext-type {circumstances} {countable}) (new-statement {circumstances} {consists of} {failure}) (new-knext-type {solvency} {uncountable}) (new-knext-type {financial condition} {uncountable}) (new-statement {solvency} {consists of} {financial condition}) (new-knext-is-a '({insolvency} {countable}) '({financial condition} {countable})) (new-knext-type {bankruptcy} {uncountable}) (new-knext-type {insolvency} {uncountable}) (new-statement {bankruptcy} {consists of} {insolvency}) (new-knext-is-a '({failure} {countable}) '({insolvency} {countable})) (new-knext-is-a '({state of matter} {countable}) '({chemical phenomenon} {countable})) (new-knext-is-a '({solid state} {uncountable}) '({state of matter} {countable})) (new-knext-is-a '({gas} {uncountable}) '({state of matter} {countable})) (new-knext-is-a '({possibleness} {countable}) '({being} {uncountable})) (new-knext-is-a '({potential} {countable}) '({possibleness} {countable})) (new-knext-is-a '({impossibility} {uncountable}) '({nonexistence} {uncountable})) (new-knext-is-a '({opportunity} {countable}) '({possibleness} {countable})) (new-knext-is-a '({day} {countable}) '({opportunity} {countable})) (new-knext-is-a '({hearing} {countable}) '({opportunity} {countable})) (new-knext-is-a '({occasion} {countable}) '({opportunity} {countable})) (new-knext-is-a '({opening} {countable}) '({opportunity} {countable})) (new-knext-is-a '({say} {countable}) '({opportunity} {countable})) (new-knext-is-a '({shot} {countable}) '({opportunity} {countable})) (new-knext-is-a '({financial condition} {countable}) '({condition} {countable})) (new-knext-is-a '({boom} {uncountable}) '({prosperity} {uncountable})) (new-knext-is-a '({economic crisis} {countable}) '({crisis} {countable})) (new-knext-type {wealth} {uncountable}) (new-knext-type {financial condition} {uncountable}) (new-statement {wealth} {consists of} {financial condition}) (new-knext-is-a '({affluence} {uncountable}) '({wealth} {uncountable})) (new-knext-is-a '({ease} {uncountable}) '({affluence} {uncountable})) (new-knext-is-a '({luxuriousness} {uncountable}) '({wealth} {uncountable})) (new-knext-is-a '({sufficiency} {uncountable}) '({wealth} {uncountable})) (new-knext-type {poverty} {uncountable}) (new-knext-type {financial condition} {uncountable}) (new-statement {poverty} {consists of} {financial condition}) (new-knext-is-a '({privation} {uncountable}) '({poverty} {uncountable})) (new-knext-is-a '({indigence} {uncountable}) '({poverty} {uncountable})) (new-knext-is-a '({sanitary condition} {uncountable}) '({condition} {countable})) (new-knext-type {cleanness} {uncountable}) (new-knext-type {sanitary condition} {uncountable}) (new-statement {cleanness} {consists of} {sanitary condition}) (new-knext-is-a '({orderliness} {uncountable}) '({condition} {countable})) (new-knext-type {dirtiness} {uncountable}) (new-knext-type {sanitary condition} {uncountable}) (new-statement {dirtiness} {consists of} {sanitary condition}) (new-knext-is-a '({grime} {uncountable}) '({dirtiness} {uncountable})) (new-knext-is-a '({disorderliness} {uncountable}) '({condition} {countable})) (new-knext-is-a '({mess} {uncountable}) '({disorderliness} {uncountable})) (new-knext-is-a '({normality} {uncountable}) '({condition} {countable})) (new-knext-is-a '({abnormality} {countable}) '({physical condition} {countable})) (new-knext-is-a '({context} {countable}) '({environment} {countable})) (new-knext-type {setting} {uncountable}) (new-knext-type {environment} {uncountable}) (new-statement {setting} {consists of} {environment}) (new-knext-is-a '({canvass} {countable}) '({setting} {uncountable})) (new-knext-is-a '({atmosphere} {countable}) '({condition} {countable})) (new-knext-type {gloominess} {uncountable}) (new-knext-type {atmosphere} {uncountable}) (new-statement {gloominess} {consists of} {atmosphere}) (new-knext-is-a '({flavor} {countable}) '({atmosphere} {countable})) (new-knext-is-a '({unsusceptibility} {uncountable}) '({condition} {countable})) (new-knext-is-a '({susceptibility} {uncountable}) '({condition} {countable})) (new-knext-is-a '({liability} {uncountable}) '({susceptibility} {uncountable})) (new-knext-is-a '({irritation} {uncountable}) '({abnormality} {countable})) (new-knext-is-a '({wetness} {uncountable}) '({condition} {countable})) (new-knext-is-a '({moisture} {uncountable}) '({wetness} {uncountable})) (new-knext-is-a '({wet} {countable}) '({wetness} {uncountable})) (new-knext-is-a '({dryness} {uncountable}) '({condition} {countable})) (new-knext-is-a '({safety} {uncountable}) '({condition} {countable})) (new-knext-is-a '({salvation} {uncountable}) '({safety} {uncountable})) (new-knext-is-a '({security} {uncountable}) '({safety} {uncountable})) (new-knext-is-a '({indemnity} {uncountable}) '({protection} {uncountable})) (new-knext-type {indemnity} {uncountable}) (new-knext-type {shelter} {uncountable}) (new-statement {indemnity} {consists of} {shelter}) (new-knext-is-a '({protection} {uncountable}) '({security} {uncountable})) (new-knext-is-a '({shelter} {countable}) '({security} {uncountable})) (new-knext-is-a '({cause of death} {countable}) '({causal agent} {countable})) (new-knext-is-a '({danger} {uncountable}) '({condition} {countable})) (new-knext-is-a '({danger} {countable}) '({causal agent} {countable})) (new-knext-type {insecurity} {uncountable}) (new-knext-type {danger} {uncountable}) (new-statement {insecurity} {consists of} {danger}) (new-knext-is-a '({hazard} {countable}) '({danger} {countable})) (new-knext-is-a '({menace} {countable}) '({danger} {countable})) (new-knext-type {riskiness} {uncountable}) (new-knext-type {danger} {uncountable}) (new-statement {riskiness} {consists of} {danger}) (new-knext-is-a '({tensity} {uncountable}) '({condition} {countable})) (new-knext-is-a '({soundness} {uncountable}) '({condition} {countable})) (new-knext-is-a '({amputation} {countable}) '({disability} {countable})) (new-knext-is-a '({unsoundness} {uncountable}) '({condition} {countable})) (new-knext-is-a '({decay} {uncountable}) '({unsoundness} {uncountable})) (new-knext-is-a '({disintegration} {countable}) '({decay} {uncountable})) (new-knext-is-a '({deterioration} {uncountable}) '({decay} {uncountable})) (new-knext-is-a '({wear} {uncountable}) '({deterioration} {uncountable})) (new-knext-is-a '({destruction} {countable}) '({state} {countable})) (new-knext-is-a '({wickedness} {uncountable}) '({condition} {countable})) (new-knext-is-a '({exoneration} {uncountable}) '({condition} {countable})) (new-knext-is-a '({facilitation} {uncountable}) '({condition} {countable})) (new-knext-is-a '({identification} {countable}) '({condition} {countable})) (new-knext-is-a '({motivation} {countable}) '({condition} {countable})) (new-knext-is-a '({preservation} {uncountable}) '({condition} {countable})) (new-knext-is-a '({alloy} {countable}) '({mixture} {countable})) (new-knext-is-a '({composition} {countable}) '({mixture} {countable})) (new-knext-is-a '({solution} {countable}) '({mixture} {countable})) (new-knext-is-a '({suspension} {countable}) '({mixture} {countable})) (new-knext-is-a '({plastic} {uncountable}) '({solid} {countable})) (new-knext-is-a '({aliphatic compound} {countable}) '({organic compound} {countable})) (new-knext-is-a '({acid} {countable}) '({chemical compound} {countable})) (new-knext-is-a '({alkali} {countable}) '({chemical compound} {countable})) (new-knext-is-a '({binary compound} {countable}) '({chemical compound} {countable})) (new-knext-is-a '({radical} {countable}) '({building block} {countable})) (new-knext-is-a '({metallic element} {countable}) '({chemical element} {countable})) (new-knext-is-a '({noble metal} {countable}) '({metallic element} {countable})) (new-knext-is-a '({aluminum} {uncountable}) '({metallic element} {countable})) (new-knext-type {metallic element} {countable}) (new-knext-indv {al} {metallic element}) (new-knext-is-a '({carbon} {uncountable}) '({chemical element} {countable})) (new-knext-is-a '({copper} {uncountable}) '({metallic element} {countable})) (new-knext-type {metallic element} {countable}) (new-knext-indv {cu} {metallic element}) (new-knext-is-a '({copper} {uncountable}) '({conductor} {countable})) (new-knext-type {conductor} {countable}) (new-knext-indv {cu} {conductor}) (new-knext-is-a '({gold} {uncountable}) '({noble metal} {countable})) (new-knext-type {noble metal} {countable}) (new-knext-indv {au} {noble metal}) (new-knext-is-a '({iron} {uncountable}) '({metallic element} {countable})) (new-knext-type {metallic element} {countable}) (new-knext-indv {fe} {metallic element}) (new-knext-is-a '({lead} {uncountable}) '({metallic element} {countable})) (new-knext-type {metallic element} {countable}) (new-knext-indv {pb} {metallic element}) (new-knext-is-a '({oxygen} {uncountable}) '({gas} {uncountable})) (new-knext-is-a '({oxygen} {uncountable}) '({chemical element} {countable})) (new-knext-is-a '({phosphorus} {uncountable}) '({chemical element} {countable})) (new-knext-is-a '({plutonium} {uncountable}) '({chemical element} {countable})) (new-knext-type {chemical element} {countable}) (new-knext-indv {pu} {chemical element}) (new-knext-is-a '({silver} {uncountable}) '({noble metal} {countable})) (new-knext-type {noble metal} {countable}) (new-knext-indv {ag} {noble metal}) (new-knext-is-a '({silver} {uncountable}) '({conductor} {countable})) (new-knext-type {conductor} {countable}) (new-knext-indv {ag} {conductor}) (new-knext-is-a '({sodium} {uncountable}) '({metallic element} {countable})) (new-knext-type {metallic element} {countable}) (new-knext-indv {na} {metallic element}) (new-knext-is-a '({sulfur} {uncountable}) '({chemical element} {countable})) (new-knext-is-a '({tin} {uncountable}) '({metallic element} {countable})) (new-knext-type {metallic element} {countable}) (new-knext-indv {sn} {metallic element}) (new-knext-is-a '({apatite} {uncountable}) '({mineral} {countable})) (new-knext-is-a '({bornite} {uncountable}) '({mineral} {countable})) (new-knext-is-a '({cassiterite} {uncountable}) '({mineral} {countable})) (new-knext-is-a '({cerussite} {uncountable}) '({mineral} {countable})) (new-knext-is-a '({chalcocite} {uncountable}) '({mineral} {countable})) (new-knext-is-a '({chalcopyrite} {uncountable}) '({mineral} {countable})) (new-knext-is-a '({cuprite} {uncountable}) '({mineral} {countable})) (new-knext-is-a '({galena} {uncountable}) '({mineral} {countable})) (new-knext-is-a '({malachite} {uncountable}) '({mineral} {countable})) (new-knext-is-a '({molecule} {countable}) '({building block} {countable})) (new-knext-is-a '({coke} {uncountable}) '({fuel} {countable})) (new-knext-is-a '({gasohol} {countable}) '({fuel} {countable})) (new-knext-is-a '({gasohol} {countable}) '({hydrocarbon} {countable})) (new-knext-is-a '({gasoline} {uncountable}) '({fuel} {countable})) (new-knext-is-a '({gasoline} {uncountable}) '({hydrocarbon} {countable})) (new-knext-is-a '({illuminant} {countable}) '({fuel} {countable})) (new-knext-is-a '({kerosene} {countable}) '({fuel} {countable})) (new-knext-is-a '({lamp oil} {uncountable}) '({fuel} {countable})) (new-knext-is-a '({kerosene} {countable}) '({hydrocarbon} {countable})) (new-knext-is-a '({lamp oil} {uncountable}) '({hydrocarbon} {countable})) (new-knext-is-a '({peat} {uncountable}) '({vegetable matter} {uncountable})) (new-knext-is-a '({peat} {uncountable}) '({humate} {uncountable})) (new-knext-is-a '({gravel} {uncountable}) '({rock} {uncountable})) (new-knext-is-a '({gemstone} {countable}) '({crystal} {countable})) (new-knext-is-a '({binder} {countable}) '({adhesive material} {countable})) (new-knext-type {library paste} {uncountable}) (new-knext-type {adhesive material} {uncountable}) (new-statement {library paste} {consists of} {adhesive material}) (new-knext-is-a '({organic compound} {countable}) '({chemical compound} {countable})) (new-knext-is-a '({protein} {countable}) '({macromolecule} {countable})) (new-knext-is-a '({ash} {countable}) '({residue} {countable})) (new-knext-is-a '({agent} {countable}) '({causal agent} {countable})) (new-knext-type {building material} {uncountable}) (new-knext-type {artifact} {uncountable}) (new-statement {building material} {consists of} {artifact}) (new-knext-is-a '({steel} {uncountable}) '({alloy} {countable})) (new-knext-is-a '({chaff} {uncountable}) '({plant material} {uncountable})) (new-knext-is-a '({clay} {uncountable}) '({dirt} {uncountable})) (new-knext-is-a '({coal} {uncountable}) '({vegetable matter} {uncountable})) (new-knext-is-a '({coordination compound} {countable}) '({chemical compound} {countable})) (new-knext-is-a '({chemical compound} {countable}) '({chemical} {countable})) (new-knext-is-a '({concrete} {uncountable}) '({building material} {uncountable})) (new-knext-is-a '({coolant} {countable}) '({agent} {countable})) (new-knext-is-a '({coolant} {countable}) '({fluid} {countable})) (new-knext-is-a '({dental gold} {countable}) '({alloy} {countable})) (new-knext-is-a '({air} {uncountable}) '({gas} {uncountable})) (new-knext-is-a '({air} {countable}) '({element} {countable})) (new-knext-is-a '({fire} {uncountable}) '({element} {countable})) (new-knext-is-a '({earth} {countable}) '({element} {countable})) (new-knext-is-a '({dirt} {uncountable}) '({earth} {uncountable})) (new-knext-type {water} {uncountable}) (new-knext-type {binary compound} {uncountable}) (new-statement {water} {consists of} {binary compound}) (new-knext-type {water} {uncountable}) (new-knext-type {liquid} {uncountable}) (new-statement {water} {consists of} {liquid}) (new-knext-is-a '({garbage} {uncountable}) '({waste} {uncountable})) (new-knext-type {garbage} {uncountable}) (new-knext-type {waste material} {uncountable}) (new-statement {garbage} {consists of} {waste material}) (new-knext-is-a '({scraps} {uncountable}) '({waste} {uncountable})) (new-knext-type {scraps} {uncountable}) (new-knext-type {waste material} {uncountable}) (new-statement {scraps} {consists of} {waste material}) (new-knext-is-a '({rubbish} {uncountable}) '({waste} {uncountable})) (new-knext-type {rubbish} {uncountable}) (new-knext-type {waste material} {uncountable}) (new-statement {rubbish} {consists of} {waste material}) (new-knext-type {flux} {uncountable}) (new-knext-type {chemical} {uncountable}) (new-statement {flux} {consists of} {chemical}) (new-knext-is-a '({fat} {uncountable}) '({lipid} {uncountable})) (new-knext-is-a '({formulation} {countable}) '({chemical compound} {countable})) (new-knext-type {gas} {uncountable}) (new-knext-type {fluid} {uncountable}) (new-statement {gas} {consists of} {fluid}) (new-knext-is-a '({glass} {countable}) '({solid} {countable})) (new-knext-is-a '({crystal} {countable}) '({solid} {countable})) (new-knext-is-a '({hydrocarbon} {countable}) '({organic compound} {countable})) (new-knext-is-a '({ice} {countable}) '({crystal} {countable})) (new-knext-is-a '({limestone} {uncountable}) '({rock} {uncountable})) (new-knext-type {lipid} {uncountable}) (new-knext-type {macromolecule} {uncountable}) (new-statement {lipid} {consists of} {macromolecule}) (new-knext-is-a '({fluid} {countable}) '({matter} {uncountable})) (new-knext-is-a '({liquid} {countable}) '({fluid} {countable})) (new-knext-is-a '({liquid} {countable}) '({fluid} {countable})) (new-knext-is-a '({log} {countable}) '({wood} {uncountable})) (new-knext-is-a '({lumber} {uncountable}) '({building material} {uncountable})) (new-knext-is-a '({macromolecule} {countable}) '({molecule} {countable})) (new-knext-is-a '({macromolecule} {countable}) '({organic compound} {countable})) (new-knext-is-a '({marble} {countable}) '({rock} {uncountable})) (new-knext-is-a '({mash} {countable}) '({suspension} {countable})) (new-knext-is-a '({methane series} {countable}) '({aliphatic compound} {countable})) (new-knext-is-a '({mud} {uncountable}) '({dirt} {uncountable})) (new-knext-is-a '({slime} {uncountable}) '({matter} {uncountable})) (new-knext-is-a '({oil} {uncountable}) '({lipid} {uncountable})) (new-knext-is-a '({oxide} {countable}) '({chemical compound} {countable})) (new-knext-is-a '({petroleum} {uncountable}) '({oil} {uncountable})) (new-knext-is-a '({dye} {uncountable}) '({coloring material} {uncountable})) (add-english-names (list {color} {colour}) (list "color" "colour")) (new-knext-is-a '({dye} {uncountable}) '({color} {countable})) (new-knext-is-a '({pigment} {uncountable}) '({coloring material} {uncountable})) (add-english-names (list {color} {colour}) (list "color" "colour")) (new-knext-is-a '({pigment} {uncountable}) '({color} {countable})) (new-knext-is-a '({polish} {uncountable}) '({formulation} {countable})) (new-knext-is-a '({powder} {uncountable}) '({solid} {countable})) (add-english-names (list {pulverization} {pulverisation} {pulverization} {pulverisation}) (list "pulverization" "pulverisation" "pulverization" "pulverisation")) (new-knext-is-a '({remover} {countable}) '({solvent} {countable})) (new-knext-is-a '({residue} {countable}) '({matter} {uncountable})) (new-knext-is-a '({salicylate} {countable}) '({salt} {uncountable})) (new-knext-is-a '({salt} {uncountable}) '({chemical compound} {countable})) (new-knext-is-a '({sand} {uncountable}) '({dirt} {uncountable})) (new-knext-is-a '({solid} {countable}) '({matter} {uncountable})) (new-knext-type {steam} {uncountable}) (new-knext-type {vapor} {uncountable}) (new-statement {steam} {consists of} {vapor}) (new-knext-is-a '({vapor} {countable}) '({suspension} {countable})) (new-knext-is-a '({stripper} {countable}) '({chemical compound} {countable})) (new-knext-is-a '({sulfide} {countable}) '({chemical compound} {countable})) (new-knext-is-a '({sylvanite} {uncountable}) '({mineral} {countable})) (new-knext-is-a '({tissue paper} {uncountable}) '({paper} {uncountable})) (new-knext-is-a '({vitamin} {countable}) '({nutriment} {uncountable})) (new-knext-type {vitamin} {countable}) (new-knext-type {victuals} {countable}) (new-statement {victuals} {consists of} {vitamin}) (new-knext-is-a '({vitriol} {uncountable}) '({acid} {countable})) (new-knext-is-a '({wood} {uncountable}) '({plant material} {uncountable})) (new-knext-is-a '({firewood} {uncountable}) '({fuel} {countable})) (new-knext-is-a '({plank} {countable}) '({lumber} {uncountable})) (new-knext-is-a '({vegetable matter} {uncountable}) '({matter} {uncountable})) (new-knext-is-a '({time period} {countable}) '({fundamental quantity} {countable})) (new-knext-is-a '({geological time} {countable}) '({time} {uncountable})) (new-knext-is-a '({cosmic time} {uncountable}) '({time} {uncountable})) (new-knext-is-a '({work time} {uncountable}) '({time period} {countable})) (new-knext-is-a '({time off} {uncountable}) '({time period} {countable})) (new-knext-is-a '({musical time} {countable}) '({time} {uncountable})) (new-knext-is-a '({time} {countable}) '({time period} {countable})) (new-knext-is-a '({day} {countable}) '({time} {countable})) (new-knext-is-a '({continuum} {countable}) '({time} {uncountable})) (new-knext-type {history} {uncountable}) (new-knext-type {continuum} {uncountable}) (new-statement {history} {consists of} {continuum}) (new-knext-type {clock time} {uncountable}) (new-knext-type {meter reading} {uncountable}) (new-statement {clock time} {consists of} {meter reading}) (new-knext-is-a '({time} {countable}) '({meter reading} {countable})) (new-knext-is-a '({duration} {countable}) '({time period} {countable})) (new-knext-is-a '({clocking} {uncountable}) '({duration} {countable})) (new-knext-is-a '({stint} {countable}) '({duration} {countable})) (new-knext-is-a '({workweek} {countable}) '({work time} {uncountable})) (new-knext-is-a '({calendar week} {countable}) '({time period} {countable})) (new-knext-is-a '({day} {countable}) '({work time} {uncountable})) (new-knext-is-a '({workday} {countable}) '({day} {countable})) (new-knext-is-a '({leave} {uncountable}) '({time off} {uncountable})) (new-knext-is-a '({leave of absence} {countable}) '({time off} {uncountable})) (new-knext-is-a '({lifetime} {countable}) '({time period} {countable})) (new-knext-is-a '({life} {uncountable}) '({time period} {countable})) (new-knext-is-a '({life} {countable}) '({time period} {countable})) (new-knext-is-a '({millennium} {countable}) '({time period} {countable})) (new-knext-is-a '({past} {countable}) '({time period} {countable})) (new-knext-is-a '({birth} {countable}) '({commencement} {countable})) (new-knext-is-a '({last} {countable}) '({end} {countable})) (new-knext-is-a '({time of life} {countable}) '({time period} {countable})) (new-knext-is-a '({eld} {uncountable}) '({time of life} {countable})) (new-knext-is-a '({childhood} {uncountable}) '({time of life} {countable})) (new-knext-is-a '({youth} {uncountable}) '({time of life} {countable})) (new-knext-is-a '({adolescence} {uncountable}) '({time of life} {countable})) (new-knext-is-a '({puberty} {uncountable}) '({time of life} {countable})) (new-knext-is-a '({old age} {uncountable}) '({time of life} {countable})) (new-knext-is-a '({years} {uncountable}) '({time of life} {countable})) (new-knext-is-a '({time unit} {countable}) '({quantity} {countable})) (new-knext-is-a '({day} {countable}) '({time unit} {countable})) (new-knext-is-a '({night} {countable}) '({time unit} {countable})) (new-knext-is-a '({calendar day} {countable}) '({time period} {countable})) (new-knext-is-a '({day} {countable}) '({calendar day} {countable})) (new-knext-is-a '({date} {countable}) '({day} {countable})) (new-knext-is-a '({daytime} {uncountable}) '({time period} {countable})) (new-knext-is-a '({morning} {countable}) '({time period} {countable})) (new-knext-is-a '({noon} {countable}) '({time of day} {countable})) (new-knext-is-a '({afternoon} {countable}) '({daytime} {uncountable})) (new-knext-is-a '({evening} {countable}) '({daytime} {uncountable})) (new-knext-is-a '({night} {uncountable}) '({time period} {countable})) (new-knext-is-a '({nighttime} {countable}) '({time period} {countable})) (new-knext-is-a '({night} {countable}) '({time period} {countable})) (new-knext-is-a '({night} {countable}) '({time period} {countable})) (new-knext-is-a '({night} {countable}) '({time period} {countable})) (new-knext-is-a '({midnight} {countable}) '({time of day} {countable})) (new-knext-is-a '({dawn} {countable}) '({time of day} {countable})) (new-knext-is-a '({twilight} {countable}) '({time of day} {countable})) (new-knext-is-a '({evenfall} {uncountable}) '({time of day} {countable})) (new-knext-is-a '({week} {countable}) '({time period} {countable})) (new-knext-is-a '({weekend} {countable}) '({time period} {countable})) (new-knext-is-a '({calendar} {countable}) '({organization} {countable})) (new-knext-is-a '({deadline} {countable}) '({point in time} {countable})) (new-knext-is-a '({point in time} {countable}) '({quantity} {countable})) (new-knext-is-a '({holiday} {countable}) '({day} {countable})) (new-knext-is-a '({year} {countable}) '({time period} {countable})) (new-knext-is-a '({calendar year} {countable}) '({year} {countable})) (new-knext-is-a '({lunar year} {countable}) '({year} {countable})) (new-knext-is-a '({school year} {countable}) '({year} {countable})) (new-knext-is-a '({year} {countable}) '({time period} {countable})) (new-knext-is-a '({year} {countable}) '({time period} {countable})) (new-knext-is-a '({decade} {countable}) '({time period} {countable})) (new-knext-is-a '({century} {countable}) '({time period} {countable})) (new-knext-is-a '({month} {countable}) '({time unit} {countable})) (new-knext-is-a '({quarter} {countable}) '({time period} {countable})) (new-knext-is-a '({lunar month} {countable}) '({month} {countable})) (new-knext-is-a '({sidereal time} {uncountable}) '({cosmic time} {uncountable})) (new-knext-is-a '({sidereal day} {countable}) '({time unit} {countable})) (new-knext-is-a '({sidereal day} {countable}) '({sidereal time} {uncountable})) (new-knext-is-a '({day} {countable}) '({time period} {countable})) (new-knext-is-a '({calendar month} {countable}) '({time period} {countable})) (new-knext-is-a '({time limit} {countable}) '({time period} {countable})) (new-knext-is-a '({limitation} {countable}) '({time limit} {countable})) (new-knext-is-a '({term} {countable}) '({time period} {countable})) (new-knext-is-a '({school term} {countable}) '({term} {countable})) (new-knext-is-a '({hour} {countable}) '({time unit} {countable})) (new-knext-is-a '({time of day} {countable}) '({clock time} {uncountable})) (new-knext-is-a '({time of day} {countable}) '({time} {countable})) (new-knext-is-a '({hour} {countable}) '({time period} {countable})) (new-knext-is-a '({minute} {countable}) '({time unit} {countable})) (new-knext-is-a '({second} {countable}) '({time unit} {countable})) (new-knext-is-a '({time of year} {countable}) '({time period} {countable})) (new-knext-is-a '({fall} {countable}) '({time of year} {countable})) (new-knext-is-a '({spring} {uncountable}) '({time of year} {countable})) (new-knext-is-a '({summer} {countable}) '({time of year} {countable})) (new-knext-is-a '({winter} {uncountable}) '({time of year} {countable})) (new-knext-is-a '({season} {countable}) '({time period} {countable})) (new-knext-is-a '({season} {countable}) '({time period} {countable})) (new-knext-is-a '({long time} {countable}) '({time period} {countable})) (new-knext-is-a '({years} {uncountable}) '({time period} {countable})) (new-knext-is-a '({moment} {countable}) '({point in time} {countable})) (new-knext-is-a '({time} {countable}) '({moment} {countable})) (new-knext-is-a '({occasion} {countable}) '({time} {countable})) (new-knext-is-a '({geological period} {countable}) '({geological time} {countable})) (new-knext-is-a '({epoch} {countable}) '({geological time} {countable})) (new-knext-is-a '({era} {countable}) '({time period} {countable})) (new-knext-is-a '({day} {countable}) '({era} {countable})) (new-knext-is-a '({anniversary} {countable}) '({day} {countable})) (new-knext-is-a '({birthday} {countable}) '({anniversary} {countable})) (new-knext-is-a '({historic period} {countable}) '({era} {countable})) (new-knext-is-a '({prehistory} {uncountable}) '({time period} {countable})) (new-knext-is-a '({inning} {countable}) '({division} {countable})) (new-knext-is-a '({set} {countable}) '({playing period} {countable})) (new-knext-is-a '({set} {countable}) '({play} {uncountable})) (new-knext-is-a '({bout} {countable}) '({division} {countable})) (new-knext-is-a '({playing period} {countable}) '({quantity} {countable})) (new-knext-type {play} {uncountable}) (new-knext-type {quantity} {uncountable}) (new-statement {play} {consists of} {quantity}) (new-knext-is-a '({half} {countable}) '({division} {countable})) (new-knext-is-a '({quarter} {countable}) '({division} {countable})) (new-knext-is-a '({reign} {countable}) '({historic period} {countable})) (new-knext-is-a '({commencement} {countable}) '({point in time} {countable})) (new-knext-is-a '({youth} {countable}) '({time period} {countable})) (new-knext-is-a '({early days} {uncountable}) '({time period} {countable})) (new-knext-is-a '({middle} {countable}) '({point in time} {countable})) (new-knext-is-a '({end} {countable}) '({point in time} {countable})) (new-knext-is-a '({stopping point} {countable}) '({end} {countable})) (new-knext-is-a '({time interval} {countable}) '({quantity} {countable})) (new-knext-is-a '({time slot} {countable}) '({time interval} {countable})) (new-knext-is-a '({time} {countable}) '({time period} {countable})) (new-knext-is-a '({pause} {countable}) '({time interval} {countable})) (new-knext-is-a '({lapse} {countable}) '({pause} {countable})) (new-knext-is-a '({delay} {countable}) '({pause} {countable})) (new-knext-is-a '({extension} {countable}) '({delay} {countable})) (new-knext-is-a '({sleep} {uncountable}) '({time period} {countable})) (new-knext-is-a '({nap} {countable}) '({time period} {countable})) (new-knext-is-a '({respite} {uncountable}) '({pause} {countable})) (new-knext-is-a '({rest period} {countable}) '({pause} {countable})) (new-knext-is-a '({letup} {countable}) '({pause} {countable})) (new-knext-is-a '({term of a contract} {countable}) '({time period} {countable})) (new-knext-is-a '({deathrate} {countable}) '({rate} {countable})) (new-knext-is-a '({mortality} {uncountable}) '({rate} {countable})) (new-knext-is-a '({flow rate} {countable}) '({rate} {countable})) (new-knext-is-a '({frequency} {countable}) '({rate} {countable})) (new-knext-is-a '({pulse rate} {countable}) '({rate} {countable})) (new-knext-is-a '({speed} {countable}) '({rate} {countable})) (new-knext-is-a '({tempo} {countable}) '({rate} {countable})) (new-knext-is-a '({rate} {countable}) '({magnitude relation} {countable})) (new-knext-is-a '({period} {countable}) '({time interval} {countable})) (new-knext-is-a '({phase} {countable}) '({time period} {countable})) (new-knext-is-a '({enlistment} {countable}) '({time period} {countable})) (new-knext-is-a '({rule} {countable}) '({duration} {countable})) (new-knext-split {engineering science} '( {applied science} {computer science} )) (new-knext-split {biology} '( {biological science} {phytology} {bionomics} {environmental science} {forestry} )) (new-knext-split {philosophy} '( {moral philosophy} )) (new-knext-split {political science} '( {politics} )) (new-knext-split {environmental science} '( {bionomics} )) (new-knext-split {bionomics} '( {environmental science} )) (new-knext-split {economics} '( {finance} )) (new-knext-split {natural science} '( {life science} {bioscience} {chemistry} {physics} )) (new-knext-split {bioscience} '( {life science} {biology} {biological science} )) (new-knext-split {biological science} '( {biology} {phytology} {bionomics} {environmental science} {forestry} )) (new-knext-split {medicine} '( {dentistry} )) (new-knext-split {applied science} '( {engineering science} {computer science} )) (new-knext-split {life science} '( {bioscience} {biology} {biological science} )) (new-knext-split {politics} '( {political science} )) (new-knext-split {physics} '( {astronomy} {electronics} ))