(defparameter *wordnet-default-features* nil "A list of features (keywords) that will be added to each new WordNet-derived type and individual.") (setq *wordnet-default-features* '(:wordnet :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-wordnet-type (iname parent &key (features *wordnet-default-features*)) ;; Skip duplicates. Create the new type-node. (let ((e (lookup-element iname))) ;; Add the features for this new type-node. (if e (new-is-a iname parent) (progn (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-wordnet-indv (iname parent &key (features *wordnet-default-features*)) ;; Skip duplicates. Create the new indv-node. (let ((e (lookup-element iname))) (if e (new-is-a iname parent) ;; Add the features for this new indv-node. (progn (setq 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-wordnet-type and then adds an eq link. (defun new-wordnet-eq (one-all two-all) (let ((first-el (apply 'new-wordnet-type one-all)) (second-el (apply 'new-wordnet-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-wordnet-type and then adds an is-a link. (defun new-wordnet-is-a (one-all two-all) (let ((first-el (apply 'new-wordnet-type one-all)) (second-el (apply 'new-wordnet-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-wordnet-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)))) (in-namespace "common") ; part-of meronymy (new-relation {part of} :transitive t :inverse "has") ; substance meronymy (new-relation {makes up} :transitive t :inverse "consists of") ; member meronymy (new-relation {member of} :transitive t :inverse "includes") (new-wordnet-type {entity.n.01} {thing}) (new-wordnet-type {thing.n.08} {entity.n.01}) (english {thing.n.08} "thing") (new-wordnet-type {whacker.n.01} {thing.n.08}) (english {whacker.n.01} "whacker" "whopper") (new-wordnet-type {stinker.n.02} {thing.n.08}) (english {stinker.n.02} "stinker") (new-wordnet-type {security_blanket.n.01} {thing.n.08}) (english {security_blanket.n.01} "security blanket") (new-wordnet-type {pacifier.n.02} {thing.n.08}) (english {pacifier.n.02} "pacifier") (new-wordnet-type {jimdandy.n.02} {thing.n.08}) (english {jimdandy.n.02} "jimdandy" "jimhickey" "crackerjack") (new-wordnet-type {horror.n.02} {thing.n.08}) (english {horror.n.02} "horror") (new-wordnet-type {freshener.n.01} {thing.n.08}) (english {freshener.n.01} "freshener") (new-wordnet-type {change.n.06} {thing.n.08}) (english {change.n.06} "change") (new-wordnet-type {physical_entity.n.01} {entity.n.01}) (english {physical_entity.n.01} "physical entity") (new-wordnet-type {thing.n.12} {physical_entity.n.01}) (english {thing.n.12} "thing") (new-wordnet-type {variable.n.01} {thing.n.12}) (english {variable.n.01} "variable") (new-wordnet-type {unit.n.05} {thing.n.12}) (english {unit.n.05} "unit" "building block") (new-wordnet-type {unit_cell.n.01} {unit.n.05}) (english {unit_cell.n.01} "unit cell") (new-wordnet-type {molecule.n.01} {unit.n.05}) (english {molecule.n.01} "molecule") (new-wordnet-type {protein_molecule.n.01} {molecule.n.01}) (english {protein_molecule.n.01} "protein molecule") (new-wordnet-type {macromolecule.n.01} {molecule.n.01}) (english {macromolecule.n.01} "macromolecule" "supermolecule") (new-wordnet-type {protein.n.01} {macromolecule.n.01}) (english {protein.n.01} "protein") (new-wordnet-type {simple_protein.n.01} {protein.n.01}) (english {simple_protein.n.01} "simple protein") (new-wordnet-type {scleroprotein.n.01} {simple_protein.n.01}) (english {scleroprotein.n.01} "scleroprotein" "albuminoid") (new-wordnet-type {keratin.n.01} {scleroprotein.n.01}) (english {keratin.n.01} "keratin" "ceratin") (new-wordnet-type {gelatin.n.01} {scleroprotein.n.01}) (english {gelatin.n.01} "gelatin" "gelatine") (new-wordnet-type {elastin.n.01} {scleroprotein.n.01}) (english {elastin.n.01} "elastin") (new-wordnet-type {collagen.n.01} {scleroprotein.n.01}) (english {collagen.n.01} "collagen") (new-wordnet-type {chondrin.n.01} {scleroprotein.n.01}) (english {chondrin.n.01} "chondrin") (new-wordnet-type {protamine.n.01} {simple_protein.n.01}) (english {protamine.n.01} "protamine") (new-wordnet-type {prolamine.n.01} {simple_protein.n.01}) (english {prolamine.n.01} "prolamine") (new-wordnet-type {histone.n.01} {simple_protein.n.01}) (english {histone.n.01} "histone") (new-wordnet-type {glutelin.n.01} {simple_protein.n.01}) (english {glutelin.n.01} "glutelin") (new-wordnet-type {globulin.n.01} {simple_protein.n.01}) (english {globulin.n.01} "globulin") (new-wordnet-type {transferrin.n.01} {globulin.n.01}) (english {transferrin.n.01} "transferrin" "beta globulin" "siderophilin") (new-wordnet-type {serum_globulin.n.01} {globulin.n.01}) (english {serum_globulin.n.01} "serum globulin") (new-wordnet-type {c-reactive_protein.n.01} {serum_globulin.n.01}) (english {c-reactive_protein.n.01} "C-reactive protein" "CRP") (new-wordnet-type {myosin.n.01} {globulin.n.01}) (english {myosin.n.01} "myosin") (new-wordnet-type {gamma_globulin.n.01} {globulin.n.01}) (english {gamma_globulin.n.01} "gamma globulin" "human gamma globulin") (new-wordnet-type {immunoglobulin.n.01} {gamma_globulin.n.01}) (english {immunoglobulin.n.01} "immunoglobulin" "Ig" "immune serum globulin" "immune gamma globulin" "immune globulin") (new-wordnet-type {tetanus_immunoglobulin.n.01} {immunoglobulin.n.01}) (english {tetanus_immunoglobulin.n.01} "tetanus immunoglobulin" "tetanus immune globulin") (new-wordnet-type {immunoglobulin_m.n.01} {immunoglobulin.n.01}) (english {immunoglobulin_m.n.01} "immunoglobulin M" "IgM") (new-wordnet-type {immunoglobulin_g.n.01} {immunoglobulin.n.01}) (english {immunoglobulin_g.n.01} "immunoglobulin G" "IgG") (new-wordnet-type {immunoglobulin_e.n.01} {immunoglobulin.n.01}) (english {immunoglobulin_e.n.01} "immunoglobulin E" "IgE") (new-wordnet-type {reagin.n.01} {immunoglobulin_e.n.01}) (english {reagin.n.01} "reagin") (new-wordnet-type {immunoglobulin_d.n.01} {immunoglobulin.n.01}) (english {immunoglobulin_d.n.01} "immunoglobulin D" "IgD") (new-wordnet-type {immunoglobulin_a.n.01} {immunoglobulin.n.01}) (english {immunoglobulin_a.n.01} "immunoglobulin A" "IgA") (new-wordnet-type {alpha_globulin.n.01} {globulin.n.01}) (english {alpha_globulin.n.01} "alpha globulin") (new-wordnet-type {globin.n.01} {simple_protein.n.01}) (english {globin.n.01} "globin" "hematohiston" "haematohiston") (new-wordnet-type {albumin.n.01} {simple_protein.n.01}) (english {albumin.n.01} "albumin" "albumen") (new-wordnet-type {serum_albumin.n.01} {albumin.n.01}) (english {serum_albumin.n.01} "serum albumin") (new-wordnet-type {ricin.n.01} {albumin.n.01}) (english {ricin.n.01} "ricin" "ricin toxin") (new-wordnet-type {lactalbumin.n.01} {albumin.n.01}) (english {lactalbumin.n.01} "lactalbumin") (new-wordnet-type {actin.n.01} {simple_protein.n.01}) (english {actin.n.01} "actin") (new-wordnet-type {recombinant_protein.n.01} {protein.n.01}) (english {recombinant_protein.n.01} "recombinant protein") (new-wordnet-type {proteome.n.01} {protein.n.01}) (english {proteome.n.01} "proteome") (new-wordnet-type {prostate_specific_antigen.n.01} {protein.n.01}) (english {prostate_specific_antigen.n.01} "prostate specific antigen" "PSA") (new-wordnet-type {plasma_protein.n.01} {protein.n.01}) (english {plasma_protein.n.01} "plasma protein") (new-wordnet-type {gamma_globulin.n.01} {plasma_protein.n.01}) (english {gamma_globulin.n.01} "gamma globulin" "human gamma globulin") (new-wordnet-type {coagulation_factor.n.01} {plasma_protein.n.01}) (english {coagulation_factor.n.01} "coagulation factor" "clotting factor") (new-wordnet-type {thromboplastin.n.01} {coagulation_factor.n.01}) (english {thromboplastin.n.01} "thromboplastin" "thrombokinase" "factor III") (new-wordnet-type {prothrombinase.n.01} {coagulation_factor.n.01}) (english {prothrombinase.n.01} "prothrombinase" "factor X") (new-wordnet-type {prothrombin.n.01} {coagulation_factor.n.01}) (english {prothrombin.n.01} "prothrombin" "factor II") (new-wordnet-type {proconvertin.n.01} {coagulation_factor.n.01}) (english {proconvertin.n.01} "proconvertin" "cothromboplastin" "stable factor" "factor VII") (new-wordnet-type {proaccelerin.n.01} {coagulation_factor.n.01}) (english {proaccelerin.n.01} "proaccelerin" "prothrombin accelerator" "accelerator factor" "factor V") (new-wordnet-type {plasma_thromboplastin_antecedent.n.01} {coagulation_factor.n.01}) (english {plasma_thromboplastin_antecedent.n.01} "plasma thromboplastin antecedent" "factor XI") (new-wordnet-type {hageman_factor.n.01} {coagulation_factor.n.01}) (english {hageman_factor.n.01} "Hageman factor" "factor XII") (new-wordnet-type {fibrinogen.n.01} {coagulation_factor.n.01}) (english {fibrinogen.n.01} "fibrinogen" "factor I") (new-wordnet-type {fibrinase.n.01} {coagulation_factor.n.01}) (english {fibrinase.n.01} "fibrinase" "factor XIII") (new-wordnet-type {christmas_factor.n.01} {coagulation_factor.n.01}) (english {christmas_factor.n.01} "Christmas factor" "factor IX") (new-wordnet-type {calcium_ion.n.01} {coagulation_factor.n.01}) (english {calcium_ion.n.01} "calcium ion" "factor IV") (new-wordnet-type {antihemophilic_factor.n.01} {coagulation_factor.n.01}) (english {antihemophilic_factor.n.01} "antihemophilic factor" "antihaemophilic factor" "antihemophilic globulin" "antihaemophilic globulin" "factor VIII" "Hemofil") (new-wordnet-type {phosphoprotein.n.01} {protein.n.01}) (english {phosphoprotein.n.01} "phosphoprotein") (new-wordnet-type {casein.n.01} {phosphoprotein.n.01}) (english {casein.n.01} "casein") (new-wordnet-type {opsin.n.01} {protein.n.01}) (english {opsin.n.01} "opsin") (new-wordnet-type {nucleoprotein.n.01} {protein.n.01}) (english {nucleoprotein.n.01} "nucleoprotein") (new-wordnet-type {iodoprotein.n.01} {protein.n.01}) (english {iodoprotein.n.01} "iodoprotein" "iodinated protein") (new-wordnet-type {thyroprotein.n.01} {iodoprotein.n.01}) (english {thyroprotein.n.01} "thyroprotein") (new-wordnet-type {thyroglobulin.n.01} {iodoprotein.n.01}) (english {thyroglobulin.n.01} "thyroglobulin") (new-wordnet-type {haptoglobin.n.01} {protein.n.01}) (english {haptoglobin.n.01} "haptoglobin") (new-wordnet-type {growth_factor.n.01} {protein.n.01}) (english {growth_factor.n.01} "growth factor") (new-wordnet-type {nerve_growth_factor.n.01} {growth_factor.n.01}) (english {nerve_growth_factor.n.01} "nerve growth factor" "NGF") (new-wordnet-type {gluten.n.01} {protein.n.01}) (english {gluten.n.01} "gluten") (new-wordnet-type {wheat_gluten.n.01} {gluten.n.01}) (english {wheat_gluten.n.01} "wheat gluten") (new-wordnet-type {corn_gluten.n.01} {gluten.n.01}) (english {corn_gluten.n.01} "corn gluten") (new-wordnet-type {filaggrin.n.01} {protein.n.01}) (english {filaggrin.n.01} "filaggrin") (new-wordnet-type {fibrin.n.01} {protein.n.01}) (english {fibrin.n.01} "fibrin") (new-wordnet-type {ferritin.n.01} {protein.n.01}) (english {ferritin.n.01} "ferritin") (new-wordnet-type {enzyme.n.01} {protein.n.01}) (english {enzyme.n.01} "enzyme") (new-wordnet-type {zymase.n.01} {enzyme.n.01}) (english {zymase.n.01} "zymase") (new-wordnet-type {urease.n.01} {enzyme.n.01}) (english {urease.n.01} "urease") (new-wordnet-type {trypsin.n.01} {enzyme.n.01}) (english {trypsin.n.01} "trypsin") (new-wordnet-type {trypsinogen.n.01} {trypsin.n.01}) (english {trypsinogen.n.01} "trypsinogen") (new-wordnet-type {transferase.n.01} {enzyme.n.01}) (english {transferase.n.01} "transferase") (new-wordnet-type {transaminase.n.01} {transferase.n.01}) (english {transaminase.n.01} "transaminase" "aminotransferase" "aminopherase") (new-wordnet-type {glutamic_oxalacetic_transaminase.n.01} {transaminase.n.01}) (english {glutamic_oxalacetic_transaminase.n.01} "glutamic oxalacetic transaminase" "glutamic oxaloacetic transaminase") (new-wordnet-type {ribonuclease.n.01} {transferase.n.01}) (english {ribonuclease.n.01} "ribonuclease" "ribonucleinase" "RNase") (new-wordnet-type {telomerase.n.01} {enzyme.n.01}) (english {telomerase.n.01} "telomerase") (new-wordnet-type {superoxide_dismutase.n.01} {enzyme.n.01}) (english {superoxide_dismutase.n.01} "superoxide dismutase" "SOD") (new-wordnet-type {streptokinase.n.01} {enzyme.n.01}) (english {streptokinase.n.01} "streptokinase") (new-wordnet-type {streptodornase.n.01} {enzyme.n.01}) (english {streptodornase.n.01} "streptodornase") (new-wordnet-type {secretase.n.01} {enzyme.n.01}) (english {secretase.n.01} "secretase") (new-wordnet-type {rennin.n.01} {enzyme.n.01}) (english {rennin.n.01} "rennin" "chymosin") (new-wordnet-type {reductase.n.01} {enzyme.n.01}) (english {reductase.n.01} "reductase") (new-wordnet-type {hmg-coa_reductase.n.01} {reductase.n.01}) (english {hmg-coa_reductase.n.01} "HMG-CoA reductase" "5-hydroxy-3-methylglutaryl-coenzyme A reductase") (new-wordnet-type {protease.n.01} {enzyme.n.01}) (english {protease.n.01} "protease" "peptidase" "proteinase" "proteolytic enzyme") (new-wordnet-type {renin.n.01} {protease.n.01}) (english {renin.n.01} "renin") (new-wordnet-type {plasminogen_activator.n.01} {protease.n.01}) (english {plasminogen_activator.n.01} "plasminogen activator" "urokinase") (new-wordnet-type {caspase.n.01} {protease.n.01}) (english {caspase.n.01} "caspase") (new-wordnet-type {angiotensin_converting_enzyme.n.01} {protease.n.01}) (english {angiotensin_converting_enzyme.n.01} "angiotensin converting enzyme" "angiotensin-converting enzyme" "ACE") (new-wordnet-type {polymerase.n.01} {enzyme.n.01}) (english {polymerase.n.01} "polymerase") (new-wordnet-type {transcriptase.n.01} {polymerase.n.01}) (english {transcriptase.n.01} "transcriptase" "RNA polymerase") (new-wordnet-type {reverse_transcriptase.n.01} {polymerase.n.01}) (english {reverse_transcriptase.n.01} "reverse transcriptase") (new-wordnet-type {dna_polymerase.n.01} {polymerase.n.01}) (english {dna_polymerase.n.01} "DNA polymerase") (new-wordnet-type {plasmin.n.01} {enzyme.n.01}) (english {plasmin.n.01} "plasmin" "fibrinolysin") (new-wordnet-type {plasminogen.n.01} {plasmin.n.01}) (english {plasminogen.n.01} "plasminogen") (new-wordnet-type {phosphatase.n.01} {enzyme.n.01}) (english {phosphatase.n.01} "phosphatase") (new-wordnet-type {pepsinogen.n.01} {enzyme.n.01}) (english {pepsinogen.n.01} "pepsinogen") (new-wordnet-type {pepsin.n.01} {enzyme.n.01}) (english {pepsin.n.01} "pepsin") (new-wordnet-type {penicillinase.n.01} {enzyme.n.01}) (english {penicillinase.n.01} "penicillinase" "beta-lactamase") (new-wordnet-type {papain.n.01} {enzyme.n.01}) (english {papain.n.01} "papain") (new-wordnet-type {oxidoreductase.n.01} {enzyme.n.01}) (english {oxidoreductase.n.01} "oxidoreductase") (new-wordnet-type {oxygenase.n.01} {oxidoreductase.n.01}) (english {oxygenase.n.01} "oxygenase") (new-wordnet-type {oxidase.n.01} {enzyme.n.01}) (english {oxidase.n.01} "oxidase") (new-wordnet-type {peroxidase.n.01} {oxidase.n.01}) (english {peroxidase.n.01} "peroxidase") (new-wordnet-type {horseradish_peroxidase.n.01} {peroxidase.n.01}) (english {horseradish_peroxidase.n.01} "horseradish peroxidase") (new-wordnet-type {glutathione_peroxidase.n.01} {peroxidase.n.01}) (english {glutathione_peroxidase.n.01} "glutathione peroxidase") (new-wordnet-type {nuclease.n.01} {enzyme.n.01}) (english {nuclease.n.01} "nuclease") (new-wordnet-type {exonuclease.n.01} {nuclease.n.01}) (english {exonuclease.n.01} "exonuclease") (new-wordnet-type {endonuclease.n.01} {nuclease.n.01}) (english {endonuclease.n.01} "endonuclease") (new-wordnet-type {restriction_endonuclease.n.01} {endonuclease.n.01}) (english {restriction_endonuclease.n.01} "restriction endonuclease" "restriction nuclease" "restriction enzyme") (new-wordnet-type {nitrogenase.n.01} {enzyme.n.01}) (english {nitrogenase.n.01} "nitrogenase") (new-wordnet-type {monoamine_oxidase.n.01} {enzyme.n.01}) (english {monoamine_oxidase.n.01} "monoamine oxidase" "MAO") (new-wordnet-type {lysozyme.n.01} {enzyme.n.01}) (english {lysozyme.n.01} "lysozyme" "muramidase") (new-wordnet-type {lipase.n.01} {enzyme.n.01}) (english {lipase.n.01} "lipase") (new-wordnet-type {kinase.n.01} {enzyme.n.01}) (english {kinase.n.01} "kinase") (new-wordnet-type {isomerase.n.01} {enzyme.n.01}) (english {isomerase.n.01} "isomerase") (new-wordnet-type {hyaluronidase.n.01} {enzyme.n.01}) (english {hyaluronidase.n.01} "hyaluronidase" "spreading factor" "Hyazyme") (new-wordnet-type {histaminase.n.01} {enzyme.n.01}) (english {histaminase.n.01} "histaminase") (new-wordnet-type {enterokinase.n.01} {enzyme.n.01}) (english {enterokinase.n.01} "enterokinase") (new-wordnet-type {elastase.n.01} {enzyme.n.01}) (english {elastase.n.01} "elastase") (new-wordnet-type {disaccharidase.n.01} {enzyme.n.01}) (english {disaccharidase.n.01} "disaccharidase") (new-wordnet-type {lactase.n.01} {disaccharidase.n.01}) (english {lactase.n.01} "lactase" "Lactaid") (new-wordnet-type {invertase.n.01} {disaccharidase.n.01}) (english {invertase.n.01} "invertase" "saccharase" "sucrase") (new-wordnet-type {decarboxylase.n.01} {enzyme.n.01}) (english {decarboxylase.n.01} "decarboxylase") (new-wordnet-type {de-iodinase.n.01} {enzyme.n.01}) (english {de-iodinase.n.01} "de-iodinase") (new-wordnet-type {cyclooxygenase.n.01} {enzyme.n.01}) (english {cyclooxygenase.n.01} "cyclooxygenase" "Cox") (new-wordnet-type {cyclooxygenase-2.n.01} {cyclooxygenase.n.01}) (english {cyclooxygenase-2.n.01} "cyclooxygenase-2" "Cox-2") (new-wordnet-type {cyclooxygenase-1.n.01} {cyclooxygenase.n.01}) (english {cyclooxygenase-1.n.01} "cyclooxygenase-1" "Cox-1") (new-wordnet-type {complement.n.05} {enzyme.n.01}) (english {complement.n.05} "complement") (new-wordnet-type {collagenase.n.01} {enzyme.n.01}) (english {collagenase.n.01} "collagenase") (new-wordnet-type {coagulase.n.01} {enzyme.n.01}) (english {coagulase.n.01} "coagulase") (new-wordnet-type {thrombin.n.01} {coagulase.n.01}) (english {thrombin.n.01} "thrombin") (new-wordnet-type {rennin.n.01} {coagulase.n.01}) (english {rennin.n.01} "rennin" "chymosin") (new-wordnet-type {cholinesterase.n.01} {enzyme.n.01}) (english {cholinesterase.n.01} "cholinesterase") (new-wordnet-type {catalase.n.01} {enzyme.n.01}) (english {catalase.n.01} "catalase") (new-wordnet-type {amylase.n.01} {enzyme.n.01}) (english {amylase.n.01} "amylase") (new-wordnet-type {ptyalin.n.01} {amylase.n.01}) (english {ptyalin.n.01} "ptyalin") (new-wordnet-type {adenosine_deaminase.n.01} {enzyme.n.01}) (english {adenosine_deaminase.n.01} "adenosine deaminase" "ADA") (new-wordnet-type {cytokine.n.01} {protein.n.01}) (english {cytokine.n.01} "cytokine") (new-wordnet-type {tumor_necrosis_factor.n.01} {cytokine.n.01}) (english {tumor_necrosis_factor.n.01} "tumor necrosis factor" "tumour necrosis factor" "TNF") (new-wordnet-type {lymphokine.n.01} {cytokine.n.01}) (english {lymphokine.n.01} "lymphokine") (new-wordnet-type {interleukin.n.01} {lymphokine.n.01}) (english {interleukin.n.01} "interleukin") (new-wordnet-type {conjugated_protein.n.01} {protein.n.01}) (english {conjugated_protein.n.01} "conjugated protein" "compound protein") (new-wordnet-type {lipoprotein.n.01} {conjugated_protein.n.01}) (english {lipoprotein.n.01} "lipoprotein") (new-wordnet-type {very_low_density_lipoprotein.n.01} {lipoprotein.n.01}) (english {very_low_density_lipoprotein.n.01} "very low density lipoprotein" "VLDL") (new-wordnet-type {low-density_lipoprotein.n.01} {lipoprotein.n.01}) (english {low-density_lipoprotein.n.01} "low-density lipoprotein" "LDL" "beta-lipoprotein") (new-wordnet-type {high-density_lipoprotein.n.01} {lipoprotein.n.01}) (english {high-density_lipoprotein.n.01} "high-density lipoprotein" "HDL" "alpha-lipoprotein") (new-wordnet-type {hemoprotein.n.01} {conjugated_protein.n.01}) (english {hemoprotein.n.01} "hemoprotein" "haemoprotein") (new-wordnet-type {myoglobin.n.01} {hemoprotein.n.01}) (english {myoglobin.n.01} "myoglobin") (new-wordnet-type {hemoglobin.n.01} {hemoprotein.n.01}) (english {hemoglobin.n.01} "hemoglobin" "haemoglobin" "Hb") (new-wordnet-type {oxyhemoglobin.n.01} {hemoglobin.n.01}) (english {oxyhemoglobin.n.01} "oxyhemoglobin" "oxyhaemoglobin") (new-wordnet-type {cytochrome.n.01} {hemoprotein.n.01}) (english {cytochrome.n.01} "cytochrome") (new-wordnet-type {cytochrome_c.n.01} {cytochrome.n.01}) (english {cytochrome_c.n.01} "cytochrome c") (new-wordnet-type {glycoprotein.n.01} {conjugated_protein.n.01}) (english {glycoprotein.n.01} "glycoprotein") (new-wordnet-type {mucoid.n.01} {glycoprotein.n.01}) (english {mucoid.n.01} "mucoid") (new-wordnet-type {mucin.n.01} {glycoprotein.n.01}) (english {mucin.n.01} "mucin") (new-wordnet-type {lectin.n.01} {glycoprotein.n.01}) (english {lectin.n.01} "lectin") (new-wordnet-type {erythropoietin.n.01} {glycoprotein.n.01}) (english {erythropoietin.n.01} "erythropoietin") (new-wordnet-type {cluster_of_differentiation_8.n.01} {glycoprotein.n.01}) (english {cluster_of_differentiation_8.n.01} "cluster of differentiation 8" "CD8") (new-wordnet-type {cluster_of_differentiation_4.n.01} {glycoprotein.n.01}) (english {cluster_of_differentiation_4.n.01} "cluster of differentiation 4" "CD4") (new-wordnet-type {capsid.n.02} {protein.n.01}) (english {capsid.n.02} "capsid") (new-wordnet-type {apoenzyme.n.01} {protein.n.01}) (english {apoenzyme.n.01} "apoenzyme") (new-wordnet-type {antibody.n.01} {protein.n.01}) (english {antibody.n.01} "antibody") (new-wordnet-type {rh_antibody.n.01} {antibody.n.01}) (english {rh_antibody.n.01} "Rh antibody") (new-wordnet-type {precipitin.n.01} {antibody.n.01}) (english {precipitin.n.01} "precipitin") (new-wordnet-type {opsonin.n.01} {antibody.n.01}) (english {opsonin.n.01} "opsonin") (new-wordnet-type {monoclonal_antibody.n.01} {antibody.n.01}) (english {monoclonal_antibody.n.01} "monoclonal antibody" "monoclonal") (new-wordnet-type {infliximab.n.01} {monoclonal_antibody.n.01}) (english {infliximab.n.01} "infliximab" "Remicade") (new-wordnet-type {isoantibody.n.01} {antibody.n.01}) (english {isoantibody.n.01} "isoantibody" "alloantibody") (new-wordnet-type {immunoglobulin.n.01} {antibody.n.01}) (english {immunoglobulin.n.01} "immunoglobulin" "Ig" "immune serum globulin" "immune gamma globulin" "immune globulin") (new-wordnet-type {heterophil_antibody.n.01} {antibody.n.01}) (english {heterophil_antibody.n.01} "heterophil antibody" "heterophile antibody" "Forssman antibody") (new-wordnet-type {autoantibody.n.01} {antibody.n.01}) (english {autoantibody.n.01} "autoantibody") (new-wordnet-type {rheumatoid_factor.n.01} {autoantibody.n.01}) (english {rheumatoid_factor.n.01} "rheumatoid factor") (new-wordnet-type {antitoxin.n.01} {antibody.n.01}) (english {antitoxin.n.01} "antitoxin") (new-wordnet-type {tetanus_antitoxin.n.01} {antitoxin.n.01}) (english {tetanus_antitoxin.n.01} "tetanus antitoxin") (new-wordnet-type {antivenin.n.01} {antitoxin.n.01}) (english {antivenin.n.01} "antivenin" "antivenene") (new-wordnet-type {agglutinin.n.01} {antibody.n.01}) (english {agglutinin.n.01} "agglutinin") (new-wordnet-type {isoagglutinin.n.01} {agglutinin.n.01}) (english {isoagglutinin.n.01} "isoagglutinin") (new-wordnet-type {abo_antibodies.n.01} {antibody.n.01}) (english {abo_antibodies.n.01} "ABO antibodies") (new-wordnet-type {amyloid.n.02} {protein.n.01}) (english {amyloid.n.02} "amyloid") (new-wordnet-type {aleurone.n.01} {protein.n.01}) (english {aleurone.n.01} "aleurone") (new-wordnet-type {actomyosin.n.01} {protein.n.01}) (english {actomyosin.n.01} "actomyosin") (new-wordnet-type {nucleic_acid.n.01} {macromolecule.n.01}) (english {nucleic_acid.n.01} "nucleic acid") (new-wordnet-type {lipid.n.01} {macromolecule.n.01}) (english {lipid.n.01} "lipid" "lipide" "lipoid") (new-wordnet-type {wax.n.01} {lipid.n.01}) (english {wax.n.01} "wax") (new-wordnet-type {vegetable_wax.n.01} {wax.n.01}) (english {vegetable_wax.n.01} "vegetable wax") (new-wordnet-type {spermaceti.n.01} {wax.n.01}) (english {spermaceti.n.01} "spermaceti") (new-wordnet-type {ski_wax.n.01} {wax.n.01}) (english {ski_wax.n.01} "ski wax") (new-wordnet-type {shellac_wax.n.01} {wax.n.01}) (english {shellac_wax.n.01} "shellac wax" "lac wax") (new-wordnet-type {scale_wax.n.01} {wax.n.01}) (english {scale_wax.n.01} "scale wax" "paraffin scale") (new-wordnet-type {pisang_wax.n.01} {wax.n.01}) (english {pisang_wax.n.01} "pisang wax") (new-wordnet-type {paraffin.n.01} {wax.n.01}) (english {paraffin.n.01} "paraffin" "paraffin wax") (new-wordnet-type {montan_wax.n.01} {wax.n.01}) (english {montan_wax.n.01} "montan wax") (new-wordnet-type {japan_wax.n.01} {wax.n.01}) (english {japan_wax.n.01} "Japan wax" "Japan tallow") (new-wordnet-type {gondang_wax.n.01} {wax.n.01}) (english {gondang_wax.n.01} "gondang wax" "fig wax") (new-wordnet-type {floor_wax.n.01} {wax.n.01}) (english {floor_wax.n.01} "floor wax") (new-wordnet-type {cerumen.n.01} {wax.n.01}) (english {cerumen.n.01} "cerumen" "earwax") (new-wordnet-type {ceresin.n.01} {wax.n.01}) (english {ceresin.n.01} "ceresin") (new-wordnet-type {carnauba_wax.n.01} {wax.n.01}) (english {carnauba_wax.n.01} "carnauba wax" "carnauba") (new-wordnet-type {candelilla_wax.n.01} {wax.n.01}) (english {candelilla_wax.n.01} "candelilla wax") (new-wordnet-type {beeswax.n.01} {wax.n.01}) (english {beeswax.n.01} "beeswax") (new-wordnet-type {ghedda_wax.n.01} {beeswax.n.01}) (english {ghedda_wax.n.01} "Ghedda wax") (new-wordnet-type {bayberry_wax.n.01} {wax.n.01}) (english {bayberry_wax.n.01} "bayberry wax" "bayberry tallow") (new-wordnet-type {triglyceride.n.01} {lipid.n.01}) (english {triglyceride.n.01} "triglyceride") (new-wordnet-type {phospholipid.n.01} {lipid.n.01}) (english {phospholipid.n.01} "phospholipid") (new-wordnet-type {lecithin.n.01} {phospholipid.n.01}) (english {lecithin.n.01} "lecithin") (new-wordnet-type {oil.n.01} {lipid.n.01}) (english {oil.n.01} "oil") (new-wordnet-type {tung_oil.n.01} {oil.n.01}) (english {tung_oil.n.01} "tung oil" "Chinese wood oil") (new-wordnet-type {tall_oil.n.01} {oil.n.01}) (english {tall_oil.n.01} "tall oil") (new-wordnet-type {stand_oil.n.01} {oil.n.01}) (english {stand_oil.n.01} "stand oil") (new-wordnet-type {spike_lavender_oil.n.01} {oil.n.01}) (english {spike_lavender_oil.n.01} "spike lavender oil" "spike oil") (new-wordnet-type {shale_oil.n.01} {oil.n.01}) (english {shale_oil.n.01} "shale oil") (new-wordnet-type {sassafras_oil.n.01} {oil.n.01}) (english {sassafras_oil.n.01} "sassafras oil") (new-wordnet-type {safflower_oil.n.01} {oil.n.01}) (english {safflower_oil.n.01} "safflower oil") (new-wordnet-type {rape_oil.n.01} {oil.n.01}) (english {rape_oil.n.01} "rape oil" "rapeseed oil" "colza oil") (new-wordnet-type {petroleum.n.01} {oil.n.01}) (english {petroleum.n.01} "petroleum" "crude oil" "crude" "rock oil" "fossil oil" "oil") (new-wordnet-type {residual_oil.n.01} {petroleum.n.01}) (english {residual_oil.n.01} "residual oil" "resid") (new-wordnet-type {pennyroyal_oil.n.02} {oil.n.01}) (english {pennyroyal_oil.n.02} "pennyroyal oil" "hedeoma oil") (new-wordnet-type {pennyroyal_oil.n.01} {oil.n.01}) (english {pennyroyal_oil.n.01} "pennyroyal oil") (new-wordnet-type {neroli_oil.n.01} {oil.n.01}) (english {neroli_oil.n.01} "neroli oil") (new-wordnet-type {mustard_oil.n.01} {oil.n.01}) (english {mustard_oil.n.01} "mustard oil") (new-wordnet-type {motor_oil.n.01} {oil.n.01}) (english {motor_oil.n.01} "motor oil") (new-wordnet-type {mineral_oil.n.01} {oil.n.01}) (english {mineral_oil.n.01} "mineral oil") (new-wordnet-type {linseed_oil.n.01} {oil.n.01}) (english {linseed_oil.n.01} "linseed oil" "flaxseed oil") (new-wordnet-type {lemongrass.n.01} {oil.n.01}) (english {lemongrass.n.01} "lemongrass" "lemon grass" "lemongrass oil") (new-wordnet-type {hyssop_oil.n.01} {oil.n.01}) (english {hyssop_oil.n.01} "hyssop oil") (new-wordnet-type {hydnocarpus_oil.n.01} {oil.n.01}) (english {hydnocarpus_oil.n.01} "hydnocarpus oil") (new-wordnet-type {grease.n.01} {oil.n.01}) (english {grease.n.01} "grease" "lubricating oil") (new-wordnet-type {axle_grease.n.01} {grease.n.01}) (english {axle_grease.n.01} "axle grease") (new-wordnet-type {fusel_oil.n.01} {oil.n.01}) (english {fusel_oil.n.01} "fusel oil") (new-wordnet-type {fuel_oil.n.01} {oil.n.01}) (english {fuel_oil.n.01} "fuel oil" "heating oil") (new-wordnet-type {gas_oil.n.01} {fuel_oil.n.01}) (english {gas_oil.n.01} "gas oil") (new-wordnet-type {fixed_oil.n.01} {oil.n.01}) (english {fixed_oil.n.01} "fixed oil" "fatty oil") (new-wordnet-type {essential_oil.n.01} {oil.n.01}) (english {essential_oil.n.01} "essential oil" "volatile oil") (new-wordnet-type {wormwood_oil.n.01} {essential_oil.n.01}) (english {wormwood_oil.n.01} "wormwood oil" "absinthe oil") (new-wordnet-type {turpentine.n.02} {essential_oil.n.01}) (english {turpentine.n.02} "turpentine" "oil of turpentine" "spirit of turpentine" "turps") (new-wordnet-type {linalool.n.01} {essential_oil.n.01}) (english {linalool.n.01} "linalool") (new-wordnet-type {ilang-ilang.n.01} {essential_oil.n.01}) (english {ilang-ilang.n.01} "ilang-ilang") (new-wordnet-type {eucalyptus_oil.n.01} {essential_oil.n.01}) (english {eucalyptus_oil.n.01} "eucalyptus oil") (new-wordnet-type {costus_oil.n.01} {essential_oil.n.01}) (english {costus_oil.n.01} "costus oil") (new-wordnet-type {clove_oil.n.01} {essential_oil.n.01}) (english {clove_oil.n.01} "clove oil" "oil of cloves") (new-wordnet-type {bitter_almond_oil.n.01} {essential_oil.n.01}) (english {bitter_almond_oil.n.01} "bitter almond oil") (new-wordnet-type {attar.n.01} {essential_oil.n.01}) (english {attar.n.01} "attar" "atar" "athar" "ottar") (new-wordnet-type {attar_of_roses.n.01} {attar.n.01}) (english {attar_of_roses.n.01} "attar of roses" "rose oil") (new-wordnet-type {croton_oil.n.01} {oil.n.01}) (english {croton_oil.n.01} "croton oil") (new-wordnet-type {cohune-nut_oil.n.01} {oil.n.01}) (english {cohune-nut_oil.n.01} "cohune-nut oil" "cohune oil" "cohune fat") (new-wordnet-type {chaulmoogra_oil.n.01} {oil.n.01}) (english {chaulmoogra_oil.n.01} "chaulmoogra oil") (new-wordnet-type {camphor_oil.n.01} {oil.n.01}) (english {camphor_oil.n.01} "camphor oil") (new-wordnet-type {calamus_oil.n.01} {oil.n.01}) (english {calamus_oil.n.01} "calamus oil") (new-wordnet-type {babassu_oil.n.01} {oil.n.01}) (english {babassu_oil.n.01} "babassu oil" "babacu oil") (new-wordnet-type {animal_oil.n.01} {oil.n.01}) (english {animal_oil.n.01} "animal oil") (new-wordnet-type {wool_oil.n.01} {animal_oil.n.01}) (english {wool_oil.n.01} "wool oil") (new-wordnet-type {whale_oil.n.01} {animal_oil.n.01}) (english {whale_oil.n.01} "whale oil" "train oil") (new-wordnet-type {tallow_oil.n.01} {animal_oil.n.01}) (english {tallow_oil.n.01} "tallow oil") (new-wordnet-type {tallow.n.01} {animal_oil.n.01}) (english {tallow.n.01} "tallow") (new-wordnet-type {mutton_tallow.n.01} {tallow.n.01}) (english {mutton_tallow.n.01} "mutton tallow") (new-wordnet-type {dubbin.n.01} {tallow.n.01}) (english {dubbin.n.01} "dubbin") (new-wordnet-type {beef_tallow.n.01} {tallow.n.01}) (english {beef_tallow.n.01} "beef tallow") (new-wordnet-type {sperm_oil.n.01} {animal_oil.n.01}) (english {sperm_oil.n.01} "sperm oil") (new-wordnet-type {shark_oil.n.01} {animal_oil.n.01}) (english {shark_oil.n.01} "shark oil" "shark-liver oil") (new-wordnet-type {seal_oil.n.01} {animal_oil.n.01}) (english {seal_oil.n.01} "seal oil") (new-wordnet-type {sardine_oil.n.01} {animal_oil.n.01}) (english {sardine_oil.n.01} "sardine oil") (new-wordnet-type {salmon_oil.n.01} {animal_oil.n.01}) (english {salmon_oil.n.01} "salmon oil") (new-wordnet-type {porpoise_oil.n.01} {animal_oil.n.01}) (english {porpoise_oil.n.01} "porpoise oil") (new-wordnet-type {oleo_oil.n.01} {animal_oil.n.01}) (english {oleo_oil.n.01} "oleo oil") (new-wordnet-type {neat's-foot_oil.n.01} {animal_oil.n.01}) (english {neat's-foot_oil.n.01} "neat's-foot oil") (new-wordnet-type {menhaden_oil.n.01} {animal_oil.n.01}) (english {menhaden_oil.n.01} "menhaden oil") (new-wordnet-type {lard_oil.n.01} {animal_oil.n.01}) (english {lard_oil.n.01} "lard oil") (new-wordnet-type {lanolin.n.01} {animal_oil.n.01}) (english {lanolin.n.01} "lanolin" "wool fat" "wool grease") (new-wordnet-type {halibut-liver_oil.n.01} {animal_oil.n.01}) (english {halibut-liver_oil.n.01} "halibut-liver oil") (new-wordnet-type {goose_grease.n.01} {animal_oil.n.01}) (english {goose_grease.n.01} "goose grease") (new-wordnet-type {glyceride.n.01} {animal_oil.n.01}) (english {glyceride.n.01} "glyceride" "acylglycerol") (new-wordnet-type {triglyceride.n.01} {glyceride.n.01}) (english {triglyceride.n.01} "triglyceride") (new-wordnet-type {fish-liver_oil.n.01} {animal_oil.n.01}) (english {fish-liver_oil.n.01} "fish-liver oil" "fish oil") (new-wordnet-type {tuna_oil.n.01} {fish-liver_oil.n.01}) (english {tuna_oil.n.01} "tuna oil") (new-wordnet-type {drying_oil.n.01} {animal_oil.n.01}) (english {drying_oil.n.01} "drying oil") (new-wordnet-type {dolphin_oil.n.01} {animal_oil.n.01}) (english {dolphin_oil.n.01} "dolphin oil") (new-wordnet-type {cod-liver_oil.n.01} {animal_oil.n.01}) (english {cod-liver_oil.n.01} "cod-liver oil" "cod liver oil") (new-wordnet-type {cod_oil.n.01} {cod-liver_oil.n.01}) (english {cod_oil.n.01} "cod oil") (new-wordnet-type {bone_oil.n.02} {animal_oil.n.01}) (english {bone_oil.n.02} "bone oil" "Dippel's oil") (new-wordnet-type {bone_oil.n.01} {animal_oil.n.01}) (english {bone_oil.n.01} "bone oil") (new-wordnet-type {blubber.n.01} {animal_oil.n.01}) (english {blubber.n.01} "blubber") (new-wordnet-type {almond_oil.n.01} {oil.n.01}) (english {almond_oil.n.01} "almond oil" "expressed almond oil" "sweet almond oil") (new-wordnet-type {fat.n.01} {lipid.n.01}) (english {fat.n.01} "fat") (new-wordnet-type {polyunsaturated_fat.n.01} {fat.n.01}) (english {polyunsaturated_fat.n.01} "polyunsaturated fat") (new-wordnet-type {myelin.n.01} {fat.n.01}) (english {myelin.n.01} "myelin" "myeline" "medulla") (new-wordnet-type {leaf_fat.n.01} {fat.n.01}) (english {leaf_fat.n.01} "leaf fat" "leaf lard") (new-wordnet-type {edible_fat.n.01} {fat.n.01}) (english {edible_fat.n.01} "edible fat") (new-wordnet-type {vegetable_oil.n.01} {edible_fat.n.01}) (english {vegetable_oil.n.01} "vegetable oil" "oil") (new-wordnet-type {walnut_oil.n.01} {vegetable_oil.n.01}) (english {walnut_oil.n.01} "walnut oil") (new-wordnet-type {sweet_oil.n.01} {vegetable_oil.n.01}) (english {sweet_oil.n.01} "sweet oil") (new-wordnet-type {sunflower_oil.n.01} {vegetable_oil.n.01}) (english {sunflower_oil.n.01} "sunflower oil" "sunflower-seed oil") (new-wordnet-type {soybean_oil.n.01} {vegetable_oil.n.01}) (english {soybean_oil.n.01} "soybean oil" "soyabean oil") (new-wordnet-type {sesame_oil.n.01} {vegetable_oil.n.01}) (english {sesame_oil.n.01} "sesame oil") (new-wordnet-type {salad_oil.n.01} {vegetable_oil.n.01}) (english {salad_oil.n.01} "salad oil") (new-wordnet-type {safflower_oil.n.02} {vegetable_oil.n.01}) (english {safflower_oil.n.02} "safflower oil") (new-wordnet-type {peanut_oil.n.01} {vegetable_oil.n.01}) (english {peanut_oil.n.01} "peanut oil" "groundnut oil") (new-wordnet-type {palm_oil.n.01} {vegetable_oil.n.01}) (english {palm_oil.n.01} "palm oil") (new-wordnet-type {olive_oil.n.01} {vegetable_oil.n.01}) (english {olive_oil.n.01} "olive oil") (new-wordnet-type {madia_oil.n.01} {vegetable_oil.n.01}) (english {madia_oil.n.01} "madia oil") (new-wordnet-type {drying_oil.n.01} {vegetable_oil.n.01}) (english {drying_oil.n.01} "drying oil") (new-wordnet-type {cottonseed_oil.n.01} {vegetable_oil.n.01}) (english {cottonseed_oil.n.01} "cottonseed oil") (new-wordnet-type {corn_oil.n.01} {vegetable_oil.n.01}) (english {corn_oil.n.01} "corn oil") (new-wordnet-type {cooking_oil.n.01} {vegetable_oil.n.01}) (english {cooking_oil.n.01} "cooking oil") (new-wordnet-type {coconut_oil.n.01} {vegetable_oil.n.01}) (english {coconut_oil.n.01} "coconut oil" "copra oil") (new-wordnet-type {canola_oil.n.01} {vegetable_oil.n.01}) (english {canola_oil.n.01} "canola oil" "canola") (new-wordnet-type {suet.n.01} {edible_fat.n.01}) (english {suet.n.01} "suet") (new-wordnet-type {shortening.n.01} {edible_fat.n.01}) (english {shortening.n.01} "shortening") (new-wordnet-type {marbling.n.01} {edible_fat.n.01}) (english {marbling.n.01} "marbling") (new-wordnet-type {lard.n.01} {edible_fat.n.01}) (english {lard.n.01} "lard") (new-wordnet-type {drippings.n.01} {edible_fat.n.01}) (english {drippings.n.01} "drippings") (new-wordnet-type {cracklings.n.01} {edible_fat.n.01}) (english {cracklings.n.01} "cracklings") (new-wordnet-type {cocoa_butter.n.01} {fat.n.01}) (english {cocoa_butter.n.01} "cocoa butter") (new-wordnet-type {animal_fat.n.01} {fat.n.01}) (english {animal_fat.n.01} "animal fat") (new-wordnet-type {butterfat.n.01} {animal_fat.n.01}) (english {butterfat.n.01} "butterfat") (new-wordnet-type {bone_fat.n.01} {animal_fat.n.01}) (english {bone_fat.n.01} "bone fat") (new-wordnet-type {carbohydrate.n.01} {macromolecule.n.01}) (english {carbohydrate.n.01} "carbohydrate" "saccharide" "sugar") (new-wordnet-type {wood_sugar.n.01} {carbohydrate.n.01}) (english {wood_sugar.n.01} "wood sugar" "xylose") (new-wordnet-type {ribose.n.01} {carbohydrate.n.01}) (english {ribose.n.01} "ribose") (new-wordnet-type {polysaccharide.n.01} {carbohydrate.n.01}) (english {polysaccharide.n.01} "polysaccharide" "polyose") (new-wordnet-type {starch.n.01} {polysaccharide.n.01}) (english {starch.n.01} "starch" "amylum") (new-wordnet-type {sago.n.01} {starch.n.01}) (english {sago.n.01} "sago") (new-wordnet-type {pearl_sago.n.01} {sago.n.01}) (english {pearl_sago.n.01} "pearl sago") (new-wordnet-type {otaheite_arrowroot.n.01} {starch.n.01}) (english {otaheite_arrowroot.n.01} "Otaheite arrowroot" "Otaheite arrowroot starch") (new-wordnet-type {cornstarch.n.01} {starch.n.01}) (english {cornstarch.n.01} "cornstarch" "cornflour") (new-wordnet-type {cassava.n.01} {starch.n.01}) (english {cassava.n.01} "cassava" "cassava starch" "manioc" "manioca") (new-wordnet-type {arum.n.01} {starch.n.01}) (english {arum.n.01} "arum") (new-wordnet-type {arrowroot.n.01} {starch.n.01}) (english {arrowroot.n.01} "arrowroot") (new-wordnet-type {amyloid.n.01} {starch.n.01}) (english {amyloid.n.01} "amyloid") (new-wordnet-type {mucopolysaccharide.n.01} {polysaccharide.n.01}) (english {mucopolysaccharide.n.01} "mucopolysaccharide") (new-wordnet-type {hyaluronic_acid.n.01} {mucopolysaccharide.n.01}) (english {hyaluronic_acid.n.01} "hyaluronic acid") (new-wordnet-type {inulin.n.01} {polysaccharide.n.01}) (english {inulin.n.01} "inulin") (new-wordnet-type {heparin.n.01} {polysaccharide.n.01}) (english {heparin.n.01} "heparin" "Lipo-Hepin" "Liquaemin") (new-wordnet-type {glycogen.n.01} {polysaccharide.n.01}) (english {glycogen.n.01} "glycogen" "animal starch") (new-wordnet-type {dextrin.n.01} {polysaccharide.n.01}) (english {dextrin.n.01} "dextrin") (new-wordnet-type {chitin.n.01} {polysaccharide.n.01}) (english {chitin.n.01} "chitin") (new-wordnet-type {cellulose.n.01} {polysaccharide.n.01}) (english {cellulose.n.01} "cellulose") (new-wordnet-type {pulp.n.03} {cellulose.n.01}) (english {pulp.n.03} "pulp") (new-wordnet-type {wood_pulp.n.01} {pulp.n.03}) (english {wood_pulp.n.01} "wood pulp") (new-wordnet-type {bagasse.n.01} {pulp.n.03}) (english {bagasse.n.01} "bagasse") (new-wordnet-type {pectin.n.01} {cellulose.n.01}) (english {pectin.n.01} "pectin") (new-wordnet-type {diethylaminoethyl_cellulose.n.01} {cellulose.n.01}) (english {diethylaminoethyl_cellulose.n.01} "diethylaminoethyl cellulose" "DEAE cellulose") (new-wordnet-type {carboxymethyl_cellulose.n.01} {cellulose.n.01}) (english {carboxymethyl_cellulose.n.01} "carboxymethyl cellulose") (new-wordnet-type {oligosaccharide.n.01} {carbohydrate.n.01}) (english {oligosaccharide.n.01} "oligosaccharide") (new-wordnet-type {trisaccharide.n.01} {oligosaccharide.n.01}) (english {trisaccharide.n.01} "trisaccharide") (new-wordnet-type {raffinose.n.01} {trisaccharide.n.01}) (english {raffinose.n.01} "raffinose") (new-wordnet-type {tetrasaccharide.n.01} {oligosaccharide.n.01}) (english {tetrasaccharide.n.01} "tetrasaccharide") (new-wordnet-type {stachyose.n.01} {tetrasaccharide.n.01}) (english {stachyose.n.01} "stachyose") (new-wordnet-type {disaccharide.n.01} {oligosaccharide.n.01}) (english {disaccharide.n.01} "disaccharide") (new-wordnet-type {sucrose.n.01} {disaccharide.n.01}) (english {sucrose.n.01} "sucrose" "saccharose") (new-wordnet-type {galactose.n.01} {sucrose.n.01}) (english {galactose.n.01} "galactose" "brain sugar") (new-wordnet-type {maltose.n.01} {disaccharide.n.01}) (english {maltose.n.01} "maltose" "malt sugar") (new-wordnet-type {lactose.n.01} {disaccharide.n.01}) (english {lactose.n.01} "lactose" "milk sugar") (new-wordnet-type {monosaccharide.n.01} {carbohydrate.n.01}) (english {monosaccharide.n.01} "monosaccharide" "monosaccharose" "simple sugar") (new-wordnet-type {triose.n.01} {monosaccharide.n.01}) (english {triose.n.01} "triose") (new-wordnet-type {tetrose.n.01} {monosaccharide.n.01}) (english {tetrose.n.01} "tetrose") (new-wordnet-type {pentose.n.01} {monosaccharide.n.01}) (english {pentose.n.01} "pentose") (new-wordnet-type {ketose.n.01} {monosaccharide.n.01}) (english {ketose.n.01} "ketose") (new-wordnet-type {ketohexose.n.01} {ketose.n.01}) (english {ketohexose.n.01} "ketohexose") (new-wordnet-type {fructose.n.01} {ketohexose.n.01}) (english {fructose.n.01} "fructose" "fruit sugar" "levulose" "laevulose") (new-wordnet-type {hexose.n.01} {monosaccharide.n.01}) (english {hexose.n.01} "hexose") (new-wordnet-type {ketohexose.n.01} {hexose.n.01}) (english {ketohexose.n.01} "ketohexose") (new-wordnet-type {aldohexose.n.01} {hexose.n.01}) (english {aldohexose.n.01} "aldohexose") (new-wordnet-type {glucose.n.01} {aldohexose.n.01}) (english {glucose.n.01} "glucose") (new-wordnet-type {glucosamine.n.01} {glucose.n.01}) (english {glucosamine.n.01} "glucosamine") (new-wordnet-type {dextrose.n.01} {glucose.n.01}) (english {dextrose.n.01} "dextrose" "dextroglucose" "grape sugar") (new-wordnet-type {corn_sugar.n.01} {glucose.n.01}) (english {corn_sugar.n.01} "corn sugar") (new-wordnet-type {blood_sugar.n.01} {glucose.n.01}) (english {blood_sugar.n.01} "blood sugar" "blood glucose") (new-wordnet-type {aldose.n.01} {monosaccharide.n.01}) (english {aldose.n.01} "aldose") (new-wordnet-type {aldohexose.n.01} {aldose.n.01}) (english {aldohexose.n.01} "aldohexose") (new-wordnet-type {maple_sugar.n.01} {carbohydrate.n.01}) (english {maple_sugar.n.01} "maple sugar") (new-wordnet-type {jaggery.n.01} {carbohydrate.n.01}) (english {jaggery.n.01} "jaggery" "jagghery" "jaggary") (new-wordnet-type {invert_sugar.n.01} {carbohydrate.n.01}) (english {invert_sugar.n.01} "invert sugar") (new-wordnet-type {deoxyribose.n.01} {carbohydrate.n.01}) (english {deoxyribose.n.01} "deoxyribose") (new-wordnet-type {cane_sugar.n.01} {carbohydrate.n.01}) (english {cane_sugar.n.01} "cane sugar") (new-wordnet-type {demerara.n.01} {cane_sugar.n.01}) (english {demerara.n.01} "demerara") (new-wordnet-type {beet_sugar.n.01} {carbohydrate.n.01}) (english {beet_sugar.n.01} "beet sugar") (new-wordnet-type {ethylenediaminetetraacetic_acid.n.01} {molecule.n.01}) (english {ethylenediaminetetraacetic_acid.n.01} "ethylenediaminetetraacetic acid" "EDTA") (new-wordnet-type {dipole_molecule.n.01} {molecule.n.01}) (english {dipole_molecule.n.01} "dipole molecule") (new-wordnet-type {coenzyme.n.01} {molecule.n.01}) (english {coenzyme.n.01} "coenzyme") (new-wordnet-type {ubiquinone.n.01} {coenzyme.n.01}) (english {ubiquinone.n.01} "ubiquinone" "coenzyme Q") (new-wordnet-type {triphosphopyridine_nucleotide.n.01} {coenzyme.n.01}) (english {triphosphopyridine_nucleotide.n.01} "triphosphopyridine nucleotide") (new-wordnet-type {nicotinamide_adenine_dinucleotide_phosphate.n.01} {coenzyme.n.01}) (english {nicotinamide_adenine_dinucleotide_phosphate.n.01} "nicotinamide adenine dinucleotide phosphate" "NADP") (new-wordnet-type {nicotinamide_adenine_dinucleotide.n.01} {coenzyme.n.01}) (english {nicotinamide_adenine_dinucleotide.n.01} "nicotinamide adenine dinucleotide" "NAD") (new-wordnet-type {coenzyme_a.n.01} {coenzyme.n.01}) (english {coenzyme_a.n.01} "coenzyme A") (new-wordnet-type {cocarboxylase.n.01} {coenzyme.n.01}) (english {cocarboxylase.n.01} "cocarboxylase" "thiamine pyrophosphate") (new-wordnet-type {group.n.02} {unit.n.05}) (english {group.n.02} "group" "radical" "chemical group") (new-wordnet-type {vinyl.n.01} {group.n.02}) (english {vinyl.n.01} "vinyl" "vinyl group" "vinyl radical") (new-wordnet-type {uranyl.n.01} {group.n.02}) (english {uranyl.n.01} "uranyl" "uranyl group" "uranyl radical") (new-wordnet-type {propyl.n.01} {group.n.02}) (english {propyl.n.01} "propyl" "propyl group" "propyl radical") (new-wordnet-type {nitro_group.n.01} {group.n.02}) (english {nitro_group.n.01} "nitro group") (new-wordnet-type {nitrite.n.01} {group.n.02}) (english {nitrite.n.01} "nitrite") (new-wordnet-type {sodium_nitrite.n.01} {nitrite.n.01}) (english {sodium_nitrite.n.01} "sodium nitrite") (new-wordnet-type {methylene_group.n.01} {group.n.02}) (english {methylene_group.n.01} "methylene group" "methylene radical" "methylene") (new-wordnet-type {ketone_group.n.01} {group.n.02}) (english {ketone_group.n.01} "ketone group") (new-wordnet-type {hydroxyl.n.01} {group.n.02}) (english {hydroxyl.n.01} "hydroxyl" "hydroxyl group" "hydroxyl radical") (new-wordnet-type {hydrazo_group.n.01} {group.n.02}) (english {hydrazo_group.n.01} "hydrazo group" "hydrazo radical") (new-wordnet-type {glyceryl.n.01} {group.n.02}) (english {glyceryl.n.01} "glyceryl") (new-wordnet-type {cyano_group.n.01} {group.n.02}) (english {cyano_group.n.01} "cyano group" "cyano radical" "cyanide group" "cyanide radical") (new-wordnet-type {chromophore.n.01} {group.n.02}) (english {chromophore.n.01} "chromophore") (new-wordnet-type {carboxyl.n.01} {group.n.02}) (english {carboxyl.n.01} "carboxyl" "carboxyl group") (new-wordnet-type {carbonyl_group.n.01} {group.n.02}) (english {carbonyl_group.n.01} "carbonyl group") (new-wordnet-type {cacodyl.n.02} {group.n.02}) (english {cacodyl.n.02} "cacodyl" "cacodyl group" "cacodyl radical" "arsenic group") (new-wordnet-type {butyl.n.01} {group.n.02}) (english {butyl.n.01} "butyl") (new-wordnet-type {benzyl.n.01} {group.n.02}) (english {benzyl.n.01} "benzyl" "benzyl group" "benzyl radical") (new-wordnet-type {benzoyl_group.n.01} {group.n.02}) (english {benzoyl_group.n.01} "benzoyl group" "benzoyl radical") (new-wordnet-type {azo_group.n.01} {group.n.02}) (english {azo_group.n.01} "azo group" "azo radical") (new-wordnet-type {azido_group.n.01} {group.n.02}) (english {azido_group.n.01} "azido group" "azido radical") (new-wordnet-type {amyl.n.01} {group.n.02}) (english {amyl.n.01} "amyl") (new-wordnet-type {amino.n.01} {group.n.02}) (english {amino.n.01} "amino" "amino group") (new-wordnet-type {glucosamine.n.01} {amino.n.01}) (english {glucosamine.n.01} "glucosamine") (new-wordnet-type {allyl.n.01} {group.n.02}) (english {allyl.n.01} "allyl" "allyl group" "allyl radical") (new-wordnet-type {alkyl.n.01} {group.n.02}) (english {alkyl.n.01} "alkyl" "alkyl group" "alkyl radical") (new-wordnet-type {methyl.n.01} {alkyl.n.01}) (english {methyl.n.01} "methyl" "methyl group" "methyl radical") (new-wordnet-type {hydroxymethyl.n.01} {methyl.n.01}) (english {hydroxymethyl.n.01} "hydroxymethyl") (new-wordnet-type {aminomethane.n.01} {methyl.n.01}) (english {aminomethane.n.01} "aminomethane") (new-wordnet-type {ethyl.n.01} {alkyl.n.01}) (english {ethyl.n.01} "ethyl" "ethyl group" "ethyl radical") (new-wordnet-type {aldehyde_group.n.01} {group.n.02}) (english {aldehyde_group.n.01} "aldehyde group" "aldehyde radical") (new-wordnet-type {alcohol_group.n.01} {group.n.02}) (english {alcohol_group.n.01} "alcohol group" "alcohol radical") (new-wordnet-type {acyl.n.01} {group.n.02}) (english {acyl.n.01} "acyl" "acyl group") (new-wordnet-type {foryml.n.01} {acyl.n.01}) (english {foryml.n.01} "foryml") (new-wordnet-type {acetyl.n.01} {acyl.n.01}) (english {acetyl.n.01} "acetyl" "acetyl group" "acetyl radical" "ethanoyl group" "ethanoyl radical") (new-wordnet-type {couple.n.05} {unit.n.05}) (english {couple.n.05} "couple") (new-wordnet-type {dipole.n.01} {couple.n.05}) (english {dipole.n.01} "dipole") (new-wordnet-type {magnetic_dipole.n.01} {dipole.n.01}) (english {magnetic_dipole.n.01} "magnetic dipole") (new-wordnet-type {electric_dipole.n.01} {dipole.n.01}) (english {electric_dipole.n.01} "electric dipole" "electric doublet") (new-wordnet-type {chain.n.02} {unit.n.05}) (english {chain.n.02} "chain" "chemical chain") (new-wordnet-type {open_chain.n.01} {chain.n.02}) (english {open_chain.n.01} "open chain") (new-wordnet-type {straight_chain.n.01} {open_chain.n.01}) (english {straight_chain.n.01} "straight chain") (new-wordnet-type {branched_chain.n.01} {open_chain.n.01}) (english {branched_chain.n.01} "branched chain") (new-wordnet-type {long_chain.n.01} {chain.n.02}) (english {long_chain.n.01} "long chain" "long-chain molecule") (new-wordnet-type {closed_chain.n.01} {chain.n.02}) (english {closed_chain.n.01} "closed chain" "ring") (new-wordnet-type {heterocyclic_ring.n.01} {closed_chain.n.01}) (english {heterocyclic_ring.n.01} "heterocyclic ring" "heterocycle") (new-wordnet-type {subject.n.02} {thing.n.12}) (english {subject.n.02} "subject" "content" "depicted object") (new-wordnet-type {reservoir.n.04} {thing.n.12}) (english {reservoir.n.04} "reservoir" "source") (new-wordnet-type {part.n.03} {thing.n.12}) (english {part.n.03} "part" "piece") (new-wordnet-type {world.n.06} {part.n.03}) (english {world.n.06} "world") (new-wordnet-type {strip.n.01} {part.n.03}) (english {strip.n.01} "strip") (new-wordnet-type {row.n.03} {strip.n.01}) (english {row.n.03} "row") (new-wordnet-type {slice.n.05} {part.n.03}) (english {slice.n.05} "slice") (new-wordnet-type {section.n.02} {slice.n.05}) (english {section.n.02} "section") (new-wordnet-type {segment.n.02} {part.n.03}) (english {segment.n.02} "segment") (new-wordnet-type {section.n.13} {segment.n.02}) (english {section.n.13} "section") (new-wordnet-type {sarcomere.n.01} {segment.n.02}) (english {sarcomere.n.01} "sarcomere") (new-wordnet-type {metamere.n.01} {segment.n.02}) (english {metamere.n.01} "metamere" "somite") (new-wordnet-type {internode.n.01} {segment.n.02}) (english {internode.n.01} "internode") (new-wordnet-type {nub.n.02} {part.n.03}) (english {nub.n.02} "nub" "stub") (new-wordnet-type {nubbin.n.01} {nub.n.02}) (english {nubbin.n.01} "nubbin") (new-wordnet-type {hunk.n.02} {part.n.03}) (english {hunk.n.02} "hunk" "lump") (new-wordnet-type {nugget.n.01} {hunk.n.02}) (english {nugget.n.01} "nugget") (new-wordnet-type {nodule.n.03} {hunk.n.02}) (english {nodule.n.03} "nodule") (new-wordnet-type {geode.n.01} {nodule.n.03}) (english {geode.n.01} "geode") (new-wordnet-type {fragment.n.01} {part.n.03}) (english {fragment.n.01} "fragment") (new-wordnet-type {spark.n.06} {fragment.n.01}) (english {spark.n.06} "spark") (new-wordnet-type {spall.n.01} {fragment.n.01}) (english {spall.n.01} "spall" "spawl") (new-wordnet-type {scraping.n.01} {fragment.n.01}) (english {scraping.n.01} "scraping") (new-wordnet-type {restriction_fragment.n.01} {fragment.n.01}) (english {restriction_fragment.n.01} "restriction fragment") (new-wordnet-type {paring.n.01} {fragment.n.01}) (english {paring.n.01} "paring" "sliver" "shaving") (new-wordnet-type {turning.n.03} {paring.n.01}) (english {turning.n.03} "turning") (new-wordnet-type {splint.n.01} {paring.n.01}) (english {splint.n.01} "splint") (new-wordnet-type {filing.n.02} {fragment.n.01}) (english {filing.n.02} "filing") (new-wordnet-type {metal_filing.n.01} {filing.n.02}) (english {metal_filing.n.01} "metal filing") (new-wordnet-type {iron_filing.n.01} {metal_filing.n.01}) (english {iron_filing.n.01} "iron filing") (new-wordnet-type {ember.n.01} {fragment.n.01}) (english {ember.n.01} "ember" "coal") (new-wordnet-type {clast.n.01} {fragment.n.01}) (english {clast.n.01} "clast") (new-wordnet-type {cinder.n.01} {fragment.n.01}) (english {cinder.n.01} "cinder" "clinker") (new-wordnet-type {brickbat.n.01} {fragment.n.01}) (english {brickbat.n.01} "brickbat") (new-wordnet-type {bit.n.02} {fragment.n.01}) (english {bit.n.02} "bit" "chip" "flake" "fleck" "scrap") (new-wordnet-type {splinter.n.01} {bit.n.02}) (english {splinter.n.01} "splinter" "sliver") (new-wordnet-type {scurf.n.01} {bit.n.02}) (english {scurf.n.01} "scurf") (new-wordnet-type {scale.n.05} {bit.n.02}) (english {scale.n.05} "scale" "scurf" "exfoliation") (new-wordnet-type {dandruff.n.02} {scale.n.05}) (english {dandruff.n.02} "dandruff") (new-wordnet-type {dander.n.01} {scale.n.05}) (english {dander.n.01} "dander") (new-wordnet-type {matchwood.n.03} {bit.n.02}) (english {matchwood.n.03} "matchwood") (new-wordnet-type {cutting.n.04} {part.n.03}) (english {cutting.n.04} "cutting") (new-wordnet-type {pruning.n.01} {cutting.n.04}) (english {pruning.n.01} "pruning") (new-wordnet-type {craton.n.01} {part.n.03}) (english {craton.n.01} "craton") (new-wordnet-type {corpus.n.03} {part.n.03}) (english {corpus.n.03} "corpus") (new-wordnet-type {corner.n.09} {part.n.03}) (english {corner.n.09} "corner") (new-wordnet-type {body_part.n.01} {part.n.03}) (english {body_part.n.01} "body part") (new-wordnet-type {withers.n.01} {body_part.n.01}) (english {withers.n.01} "withers") (new-wordnet-type {venter.n.04} {body_part.n.01}) (english {venter.n.04} "venter") (new-wordnet-type {underpart.n.01} {body_part.n.01}) (english {underpart.n.01} "underpart") (new-wordnet-type {belly.n.05} {underpart.n.01}) (english {belly.n.05} "belly") (new-wordnet-type {torso.n.01} {body_part.n.01}) (english {torso.n.01} "torso" "trunk" "body") (new-wordnet-type {toe.n.03} {body_part.n.01}) (english {toe.n.03} "toe") (new-wordnet-type {tissue.n.01} {body_part.n.01}) (english {tissue.n.01} "tissue") (new-wordnet-type {isthmus.n.02} {tissue.n.01}) (english {isthmus.n.02} "isthmus" "band") (new-wordnet-type {animal_tissue.n.01} {tissue.n.01}) (english {animal_tissue.n.01} "animal tissue") (new-wordnet-type {stroma.n.03} {animal_tissue.n.01}) (english {stroma.n.03} "stroma") (new-wordnet-type {parenchyma.n.01} {animal_tissue.n.01}) (english {parenchyma.n.01} "parenchyma") (new-wordnet-type {nervous_tissue.n.01} {animal_tissue.n.01}) (english {nervous_tissue.n.01} "nervous tissue" "nerve tissue") (new-wordnet-type {white_matter.n.01} {nervous_tissue.n.01}) (english {white_matter.n.01} "white matter" "substantia alba") (new-wordnet-type {nerve_pathway.n.01} {white_matter.n.01}) (english {nerve_pathway.n.01} "nerve pathway" "tract" "nerve tract" "pathway") (new-wordnet-type {peduncle.n.03} {nerve_pathway.n.01}) (english {peduncle.n.03} "peduncle" "cerebral peduncle") (new-wordnet-type {optic_radiation.n.01} {nerve_pathway.n.01}) (english {optic_radiation.n.01} "optic radiation" "radiatio optica") (new-wordnet-type {commissure.n.01} {nerve_pathway.n.01}) (english {commissure.n.01} "commissure") (new-wordnet-type {corpus_callosum.n.01} {commissure.n.01}) (english {corpus_callosum.n.01} "corpus callosum") (new-wordnet-type {neuropil.n.01} {nervous_tissue.n.01}) (english {neuropil.n.01} "neuropil" "neuropile") (new-wordnet-type {grey_matter.n.01} {nervous_tissue.n.01}) (english {grey_matter.n.01} "grey matter" "gray matter" "grey substance" "gray substance" "substantia grisea") (new-wordnet-type {fiber_bundle.n.01} {nervous_tissue.n.01}) (english {fiber_bundle.n.01} "fiber bundle" "fibre bundle" "fascicle" "fasciculus") (new-wordnet-type {nerve.n.01} {fiber_bundle.n.01}) (english {nerve.n.01} "nerve" "nervus") (new-wordnet-type {ulnar_nerve.n.01} {nerve.n.01}) (english {ulnar_nerve.n.01} "ulnar nerve" "cubital nerve" "nervus ulnaris") (new-wordnet-type {funny_bone.n.01} {ulnar_nerve.n.01}) (english {funny_bone.n.01} "funny bone" "crazy bone") (new-wordnet-type {splanchnic_nerve.n.01} {nerve.n.01}) (english {splanchnic_nerve.n.01} "splanchnic nerve") (new-wordnet-type {spinal_nerve.n.01} {nerve.n.01}) (english {spinal_nerve.n.01} "spinal nerve" "nervus spinalis") (new-wordnet-type {thoracic_nerve.n.01} {spinal_nerve.n.01}) (english {thoracic_nerve.n.01} "thoracic nerve") (new-wordnet-type {sacral_nerve.n.01} {spinal_nerve.n.01}) (english {sacral_nerve.n.01} "sacral nerve") (new-wordnet-type {phrenic_nerve.n.01} {spinal_nerve.n.01}) (english {phrenic_nerve.n.01} "phrenic nerve" "nervus phrenicus") (new-wordnet-type {lumbar_nerve.n.01} {spinal_nerve.n.01}) (english {lumbar_nerve.n.01} "lumbar nerve") (new-wordnet-type {femoral_nerve.n.01} {spinal_nerve.n.01}) (english {femoral_nerve.n.01} "femoral nerve" "nervus femoralis" "anterior crural nerve") (new-wordnet-type {coccygeal_nerve.n.01} {spinal_nerve.n.01}) (english {coccygeal_nerve.n.01} "coccygeal nerve" "nervus coccygeus") (new-wordnet-type {cervical_nerve.n.01} {spinal_nerve.n.01}) (english {cervical_nerve.n.01} "cervical nerve") (new-wordnet-type {sensory_nerve.n.01} {nerve.n.01}) (english {sensory_nerve.n.01} "sensory nerve" "afferent nerve" "afferent") (new-wordnet-type {lemniscus.n.01} {sensory_nerve.n.01}) (english {lemniscus.n.01} "lemniscus" "fillet") (new-wordnet-type {dorsal_root.n.01} {sensory_nerve.n.01}) (english {dorsal_root.n.01} "dorsal root" "dorsal horn") (new-wordnet-type {sciatic_nerve.n.01} {nerve.n.01}) (english {sciatic_nerve.n.01} "sciatic nerve" "nervus ischiadicus") (new-wordnet-type {saphenous_nerve.n.01} {nerve.n.01}) (english {saphenous_nerve.n.01} "saphenous nerve" "nervus saphenus") (new-wordnet-type {radial_nerve.n.01} {nerve.n.01}) (english {radial_nerve.n.01} "radial nerve" "nervus radialis" "musculospiral nerve") (new-wordnet-type {motor_nerve.n.01} {nerve.n.01}) (english {motor_nerve.n.01} "motor nerve" "efferent nerve" "efferent") (new-wordnet-type {ventral_root.n.01} {motor_nerve.n.01}) (english {ventral_root.n.01} "ventral root" "ventral horn" "anterior root" "anterior horn") (new-wordnet-type {pyramidal_tract.n.01} {motor_nerve.n.01}) (english {pyramidal_tract.n.01} "pyramidal tract" "pyramidal motor system" "corticospinal tract") (new-wordnet-type {depressor.n.02} {nerve.n.01}) (english {depressor.n.02} "depressor" "depressor nerve") (new-wordnet-type {cranial_nerve.n.01} {nerve.n.01}) (english {cranial_nerve.n.01} "cranial nerve") (new-wordnet-type {vagus.n.01} {cranial_nerve.n.01}) (english {vagus.n.01} "vagus" "vagus nerve" "nervus vagus" "pneumogastric" "pneumogastric nerve" "tenth cranial nerve" "wandering nerve") (new-wordnet-type {trochlear.n.01} {cranial_nerve.n.01}) (english {trochlear.n.01} "trochlear" "trochlear nerve" "trochlearis" "fourth cranial nerve") (new-wordnet-type {trigeminal.n.01} {cranial_nerve.n.01}) (english {trigeminal.n.01} "trigeminal" "trigeminal nerve" "trigeminus" "nervus trigeminus" "fifth cranial nerve") (new-wordnet-type {optic_nerve.n.01} {cranial_nerve.n.01}) (english {optic_nerve.n.01} "optic nerve" "nervus opticus" "second cranial nerve" "optic tract") (new-wordnet-type {olfactory_nerve.n.01} {cranial_nerve.n.01}) (english {olfactory_nerve.n.01} "olfactory nerve" "nervii olfactorii" "first cranial nerve") (new-wordnet-type {oculomotor.n.01} {cranial_nerve.n.01}) (english {oculomotor.n.01} "oculomotor" "oculomotor nerve" "nervus oculomotorius" "third cranial nerve") (new-wordnet-type {hypoglossal.n.01} {cranial_nerve.n.01}) (english {hypoglossal.n.01} "hypoglossal" "hypoglossal nerve" "nervus hypoglosus" "twelfth cranial nerve") (new-wordnet-type {glossopharyngeal_nerve.n.01} {cranial_nerve.n.01}) (english {glossopharyngeal_nerve.n.01} "glossopharyngeal nerve" "nervus glossopharyngeus" "ninth cranial nerve") (new-wordnet-type {facial.n.01} {cranial_nerve.n.01}) (english {facial.n.01} "facial" "facial nerve" "nervus facialis" "seventh cranial nerve") (new-wordnet-type {acoustic_nerve.n.01} {cranial_nerve.n.01}) (english {acoustic_nerve.n.01} "acoustic nerve" "auditory nerve" "vestibulocochlear nerve" "nervus vestibulocochlearis" "eighth cranial nerve") (new-wordnet-type {accessory_nerve.n.01} {cranial_nerve.n.01}) (english {accessory_nerve.n.01} "accessory nerve" "spinal accessory" "nervus accessorius" "eleventh cranial nerve") (new-wordnet-type {abducent.n.01} {cranial_nerve.n.01}) (english {abducent.n.01} "abducent" "abducent nerve" "abducens" "abducens nerve" "nervus abducens" "sixth cranial nerve") (new-wordnet-type {fornix.n.02} {fiber_bundle.n.01}) (english {fornix.n.02} "fornix" "trigonum cerebrale") (new-wordnet-type {muscle.n.02} {animal_tissue.n.01}) (english {muscle.n.02} "muscle" "muscular tissue") (new-wordnet-type {striated_muscle_tissue.n.01} {muscle.n.02}) (english {striated_muscle_tissue.n.01} "striated muscle tissue") (new-wordnet-type {smooth_muscle.n.02} {muscle.n.02}) (english {smooth_muscle.n.02} "smooth muscle") (new-wordnet-type {cardiac_muscle.n.01} {muscle.n.02}) (english {cardiac_muscle.n.01} "cardiac muscle" "heart muscle") (new-wordnet-type {purkinje_network.n.01} {cardiac_muscle.n.01}) (english {purkinje_network.n.01} "Purkinje network" "Purkinje's tissue" "Purkinje's system") (new-wordnet-type {purkinje_fiber.n.01} {cardiac_muscle.n.01}) (english {purkinje_fiber.n.01} "Purkinje fiber") (new-wordnet-type {papillary_muscle.n.01} {cardiac_muscle.n.01}) (english {papillary_muscle.n.01} "papillary muscle") (new-wordnet-type {pacemaker.n.02} {cardiac_muscle.n.01}) (english {pacemaker.n.02} "pacemaker" "cardiac pacemaker" "sinoatrial node" "SA node") (new-wordnet-type {myocardium.n.01} {cardiac_muscle.n.01}) (english {myocardium.n.01} "myocardium") (new-wordnet-type {atrioventricular_node.n.01} {cardiac_muscle.n.01}) (english {atrioventricular_node.n.01} "atrioventricular node") (new-wordnet-type {atrioventricular_bundle.n.01} {cardiac_muscle.n.01}) (english {atrioventricular_bundle.n.01} "atrioventricular bundle" "bundle of His" "atrioventricular trunk" "truncus atrioventricularis") (new-wordnet-type {membrane.n.02} {animal_tissue.n.01}) (english {membrane.n.02} "membrane" "tissue layer") (new-wordnet-type {web.n.07} {membrane.n.02}) (english {web.n.07} "web") (new-wordnet-type {tunic.n.01} {membrane.n.02}) (english {tunic.n.01} "tunic" "tunica" "adventitia") (new-wordnet-type {albuginea.n.01} {tunic.n.01}) (english {albuginea.n.01} "albuginea") (new-wordnet-type {tunica_albuginea_testes.n.01} {albuginea.n.01}) (english {tunica_albuginea_testes.n.01} "tunica albuginea testes") (new-wordnet-type {sclera.n.01} {albuginea.n.01}) (english {sclera.n.01} "sclera" "sclerotic coat") (new-wordnet-type {trophoblast.n.01} {membrane.n.02}) (english {trophoblast.n.01} "trophoblast") (new-wordnet-type {synovial_membrane.n.01} {membrane.n.02}) (english {synovial_membrane.n.01} "synovial membrane" "synovium") (new-wordnet-type {serous_membrane.n.01} {membrane.n.02}) (english {serous_membrane.n.01} "serous membrane" "serosa") (new-wordnet-type {pleura.n.01} {serous_membrane.n.01}) (english {pleura.n.01} "pleura") (new-wordnet-type {visceral_pleura.n.01} {pleura.n.01}) (english {visceral_pleura.n.01} "visceral pleura") (new-wordnet-type {parietal_pleura.n.01} {pleura.n.01}) (english {parietal_pleura.n.01} "parietal pleura") (new-wordnet-type {peritoneum.n.01} {serous_membrane.n.01}) (english {peritoneum.n.01} "peritoneum") (new-wordnet-type {omentum.n.01} {peritoneum.n.01}) (english {omentum.n.01} "omentum") (new-wordnet-type {lesser_omentum.n.01} {omentum.n.01}) (english {lesser_omentum.n.01} "lesser omentum") (new-wordnet-type {greater_omentum.n.01} {omentum.n.01}) (english {greater_omentum.n.01} "greater omentum" "gastrocolic omentum" "caul") (new-wordnet-type {mesentery.n.01} {peritoneum.n.01}) (english {mesentery.n.01} "mesentery") (new-wordnet-type {mesocolon.n.01} {mesentery.n.01}) (english {mesocolon.n.01} "mesocolon") (new-wordnet-type {pericardium.n.01} {serous_membrane.n.01}) (english {pericardium.n.01} "pericardium") (new-wordnet-type {parietal_pericardium.n.01} {serous_membrane.n.01}) (english {parietal_pericardium.n.01} "parietal pericardium") (new-wordnet-type {epicardium.n.01} {serous_membrane.n.01}) (english {epicardium.n.01} "epicardium" "visceral pericardium") (new-wordnet-type {endocardium.n.01} {serous_membrane.n.01}) (english {endocardium.n.01} "endocardium") (new-wordnet-type {semipermeable_membrane.n.01} {membrane.n.02}) (english {semipermeable_membrane.n.01} "semipermeable membrane") (new-wordnet-type {cell_membrane.n.01} {semipermeable_membrane.n.01}) (english {cell_membrane.n.01} "cell membrane" "cytomembrane" "plasma membrane") (new-wordnet-type {sarcolemma.n.01} {membrane.n.02}) (english {sarcolemma.n.01} "sarcolemma") (new-wordnet-type {retina.n.01} {membrane.n.02}) (english {retina.n.01} "retina") (new-wordnet-type {perithelium.n.01} {membrane.n.02}) (english {perithelium.n.01} "perithelium") (new-wordnet-type {periosteum.n.01} {membrane.n.02}) (english {periosteum.n.01} "periosteum") (new-wordnet-type {mucous_membrane.n.01} {membrane.n.02}) (english {mucous_membrane.n.01} "mucous membrane" "mucosa") (new-wordnet-type {hymen.n.02} {mucous_membrane.n.01}) (english {hymen.n.02} "hymen" "maidenhead" "virginal membrane") (new-wordnet-type {imperforate_hymen.n.01} {hymen.n.02}) (english {imperforate_hymen.n.01} "imperforate hymen") (new-wordnet-type {endometrium.n.01} {mucous_membrane.n.01}) (english {endometrium.n.01} "endometrium") (new-wordnet-type {conjunctiva.n.01} {mucous_membrane.n.01}) (english {conjunctiva.n.01} "conjunctiva") (new-wordnet-type {pterygium.n.01} {conjunctiva.n.01}) (english {pterygium.n.01} "pterygium") (new-wordnet-type {pinguecula.n.01} {conjunctiva.n.01}) (english {pinguecula.n.01} "pinguecula") (new-wordnet-type {palpebra_conjunctiva.n.01} {conjunctiva.n.01}) (english {palpebra_conjunctiva.n.01} "palpebra conjunctiva" "conjunctival layer of eyelids" "tunica conjunctiva palpebrarum") (new-wordnet-type {bulbar_conjunctiva.n.01} {conjunctiva.n.01}) (english {bulbar_conjunctiva.n.01} "bulbar conjunctiva" "conjunctival layer of bulb" "tunica conjunctiva bulbi") (new-wordnet-type {meninx.n.01} {membrane.n.02}) (english {meninx.n.01} "meninx" "meninges") (new-wordnet-type {pia_mater.n.01} {meninx.n.01}) (english {pia_mater.n.01} "pia mater") (new-wordnet-type {leptomeninges.n.01} {meninx.n.01}) (english {leptomeninges.n.01} "leptomeninges") (new-wordnet-type {dura_mater.n.01} {meninx.n.01}) (english {dura_mater.n.01} "dura mater" "dura") (new-wordnet-type {arachnoid.n.01} {meninx.n.01}) (english {arachnoid.n.01} "arachnoid" "arachnoid membrane") (new-wordnet-type {lamella.n.02} {membrane.n.02}) (english {lamella.n.02} "lamella") (new-wordnet-type {iris.n.02} {membrane.n.02}) (english {iris.n.02} "iris") (new-wordnet-type {intima.n.01} {membrane.n.02}) (english {intima.n.01} "intima") (new-wordnet-type {hyaloid_membrane.n.01} {membrane.n.02}) (english {hyaloid_membrane.n.01} "hyaloid membrane" "hyaloid") (new-wordnet-type {fetal_membrane.n.01} {membrane.n.02}) (english {fetal_membrane.n.01} "fetal membrane") (new-wordnet-type {umbilical_cord.n.01} {fetal_membrane.n.01}) (english {umbilical_cord.n.01} "umbilical cord" "umbilical") (new-wordnet-type {caul.n.02} {fetal_membrane.n.01}) (english {caul.n.02} "caul" "veil" "embryonic membrane") (new-wordnet-type {allantois.n.01} {fetal_membrane.n.01}) (english {allantois.n.01} "allantois") (new-wordnet-type {fertilization_membrane.n.01} {membrane.n.02}) (english {fertilization_membrane.n.01} "fertilization membrane") (new-wordnet-type {ependyma.n.01} {membrane.n.02}) (english {ependyma.n.01} "ependyma") (new-wordnet-type {endosteum.n.01} {membrane.n.02}) (english {endosteum.n.01} "endosteum") (new-wordnet-type {endocranium.n.01} {membrane.n.02}) (english {endocranium.n.01} "endocranium") (new-wordnet-type {eardrum.n.01} {membrane.n.02}) (english {eardrum.n.01} "eardrum" "tympanum" "tympanic membrane" "myringa") (new-wordnet-type {perforated_eardrum.n.01} {eardrum.n.01}) (english {perforated_eardrum.n.01} "perforated eardrum") (new-wordnet-type {diaphragm.n.02} {membrane.n.02}) (english {diaphragm.n.02} "diaphragm" "midriff") (new-wordnet-type {cornea.n.01} {membrane.n.02}) (english {cornea.n.01} "cornea") (new-wordnet-type {arcus.n.01} {cornea.n.01}) (english {arcus.n.01} "arcus" "arcus senilis") (new-wordnet-type {ciliary_body.n.01} {membrane.n.02}) (english {ciliary_body.n.01} "ciliary body") (new-wordnet-type {choroid.n.01} {membrane.n.02}) (english {choroid.n.01} "choroid" "choroid coat") (new-wordnet-type {chorioallantois.n.01} {membrane.n.02}) (english {chorioallantois.n.01} "chorioallantois" "chorioallantoic membrane") (new-wordnet-type {bowman's_capsule.n.01} {membrane.n.02}) (english {bowman's_capsule.n.01} "Bowman's capsule" "glomerular capsule" "capsula glomeruli") (new-wordnet-type {basilar_membrane.n.01} {membrane.n.02}) (english {basilar_membrane.n.01} "basilar membrane") (new-wordnet-type {axolemma.n.01} {membrane.n.02}) (english {axolemma.n.01} "axolemma") (new-wordnet-type {medulla.n.03} {animal_tissue.n.01}) (english {medulla.n.03} "medulla") (new-wordnet-type {adrenal_medulla.n.01} {medulla.n.03}) (english {adrenal_medulla.n.01} "adrenal medulla") (new-wordnet-type {matrix.n.05} {animal_tissue.n.01}) (english {matrix.n.05} "matrix") (new-wordnet-type {lymphatic_tissue.n.01} {animal_tissue.n.01}) (english {lymphatic_tissue.n.01} "lymphatic tissue" "lymphoid tissue") (new-wordnet-type {tonsil.n.01} {lymphatic_tissue.n.01}) (english {tonsil.n.01} "tonsil" "palatine tonsil" "faucial tonsil" "tonsilla") (new-wordnet-type {spleen.n.01} {lymphatic_tissue.n.01}) (english {spleen.n.01} "spleen" "lien") (new-wordnet-type {pharyngeal_tonsil.n.01} {lymphatic_tissue.n.01}) (english {pharyngeal_tonsil.n.01} "pharyngeal tonsil" "adenoid" "Luschka's tonsil" "third tonsil" "tonsilla pharyngealis" "tonsilla adenoidea") (new-wordnet-type {lymph_node.n.01} {lymphatic_tissue.n.01}) (english {lymph_node.n.01} "lymph node" "lymph gland" "node") (new-wordnet-type {peyer's_patch.n.01} {lymph_node.n.01}) (english {peyer's_patch.n.01} "Peyer's patch" "Peter's gland") (new-wordnet-type {bubo.n.01} {lymph_node.n.01}) (english {bubo.n.01} "bubo") (new-wordnet-type {axillary_node.n.01} {lymph_node.n.01}) (english {axillary_node.n.01} "axillary node") (new-wordnet-type {lens_cortex.n.01} {animal_tissue.n.01}) (english {lens_cortex.n.01} "lens cortex" "cortex") (new-wordnet-type {interstitial_tissue.n.01} {animal_tissue.n.01}) (english {interstitial_tissue.n.01} "interstitial tissue") (new-wordnet-type {neuroglia.n.01} {interstitial_tissue.n.01}) (english {neuroglia.n.01} "neuroglia" "glia") (new-wordnet-type {oligodendroglia.n.01} {neuroglia.n.01}) (english {oligodendroglia.n.01} "oligodendroglia" "oligodendria") (new-wordnet-type {microglia.n.01} {neuroglia.n.01}) (english {microglia.n.01} "microglia") (new-wordnet-type {astroglia.n.01} {neuroglia.n.01}) (english {astroglia.n.01} "astroglia" "macroglia") (new-wordnet-type {graft.n.01} {animal_tissue.n.01}) (english {graft.n.01} "graft" "transplant") (new-wordnet-type {homograft.n.01} {graft.n.01}) (english {homograft.n.01} "homograft" "allograft") (new-wordnet-type {heterograft.n.01} {graft.n.01}) (english {heterograft.n.01} "heterograft" "xenograft") (new-wordnet-type {autograft.n.01} {graft.n.01}) (english {autograft.n.01} "autograft" "autoplasty") (new-wordnet-type {gingiva.n.01} {animal_tissue.n.01}) (english {gingiva.n.01} "gingiva" "gum") (new-wordnet-type {flesh.n.01} {animal_tissue.n.01}) (english {flesh.n.01} "flesh") (new-wordnet-type {flap.n.04} {animal_tissue.n.01}) (english {flap.n.04} "flap") (new-wordnet-type {uvula.n.01} {flap.n.04}) (english {uvula.n.01} "uvula") (new-wordnet-type {soft_palate.n.01} {flap.n.04}) (english {soft_palate.n.01} "soft palate" "velum") (new-wordnet-type {protective_fold.n.01} {flap.n.04}) (english {protective_fold.n.01} "protective fold") (new-wordnet-type {nictitating_membrane.n.01} {protective_fold.n.01}) (english {nictitating_membrane.n.01} "nictitating membrane" "third eyelid") (new-wordnet-type {haw.n.02} {nictitating_membrane.n.01}) (english {haw.n.02} "haw") (new-wordnet-type {eyelid.n.01} {protective_fold.n.01}) (english {eyelid.n.01} "eyelid" "lid" "palpebra") (new-wordnet-type {cusp.n.02} {flap.n.04}) (english {cusp.n.02} "cusp" "leaflet") (new-wordnet-type {fibrous_tissue.n.01} {animal_tissue.n.01}) (english {fibrous_tissue.n.01} "fibrous tissue") (new-wordnet-type {trabecula.n.01} {fibrous_tissue.n.01}) (english {trabecula.n.01} "trabecula") (new-wordnet-type {erectile_tissue.n.01} {animal_tissue.n.01}) (english {erectile_tissue.n.01} "erectile tissue") (new-wordnet-type {epithelium.n.01} {animal_tissue.n.01}) (english {epithelium.n.01} "epithelium" "epithelial tissue") (new-wordnet-type {neuroepithelium.n.01} {epithelium.n.01}) (english {neuroepithelium.n.01} "neuroepithelium") (new-wordnet-type {mesothelium.n.01} {epithelium.n.01}) (english {mesothelium.n.01} "mesothelium") (new-wordnet-type {endothelium.n.01} {epithelium.n.01}) (english {endothelium.n.01} "endothelium") (new-wordnet-type {decidua.n.01} {epithelium.n.01}) (english {decidua.n.01} "decidua") (new-wordnet-type {embryonic_tissue.n.01} {animal_tissue.n.01}) (english {embryonic_tissue.n.01} "embryonic tissue") (new-wordnet-type {germ_layer.n.01} {embryonic_tissue.n.01}) (english {germ_layer.n.01} "germ layer") (new-wordnet-type {mesoderm.n.01} {germ_layer.n.01}) (english {mesoderm.n.01} "mesoderm" "mesoblast") (new-wordnet-type {mesenchyme.n.01} {mesoderm.n.01}) (english {mesenchyme.n.01} "mesenchyme") (new-wordnet-type {chordamesoderm.n.01} {mesoderm.n.01}) (english {chordamesoderm.n.01} "chordamesoderm" "chordomesoderm") (new-wordnet-type {endoderm.n.01} {germ_layer.n.01}) (english {endoderm.n.01} "endoderm" "entoderm" "endoblast" "entoblast" "hypoblast") (new-wordnet-type {ectoderm.n.01} {germ_layer.n.01}) (english {ectoderm.n.01} "ectoderm" "exoderm" "ectoblast") (new-wordnet-type {neural_tube.n.01} {ectoderm.n.01}) (english {neural_tube.n.01} "neural tube") (new-wordnet-type {cortex.n.02} {animal_tissue.n.01}) (english {cortex.n.02} "cortex") (new-wordnet-type {renal_cortex.n.01} {cortex.n.02}) (english {renal_cortex.n.01} "renal cortex") (new-wordnet-type {adrenal_cortex.n.01} {cortex.n.02}) (english {adrenal_cortex.n.01} "adrenal cortex") (new-wordnet-type {coronet.n.02} {animal_tissue.n.01}) (english {coronet.n.02} "coronet") (new-wordnet-type {connective_tissue.n.01} {animal_tissue.n.01}) (english {connective_tissue.n.01} "connective tissue") (new-wordnet-type {tendon.n.01} {connective_tissue.n.01}) (english {tendon.n.01} "tendon" "sinew") (new-wordnet-type {hamstring.n.01} {tendon.n.01}) (english {hamstring.n.01} "hamstring" "hamstring tendon") (new-wordnet-type {achilles_tendon.n.01} {tendon.n.01}) (english {achilles_tendon.n.01} "Achilles tendon" "tendon of Achilles") (new-wordnet-type {submucosa.n.01} {connective_tissue.n.01}) (english {submucosa.n.01} "submucosa") (new-wordnet-type {skin.n.01} {connective_tissue.n.01}) (english {skin.n.01} "skin" "tegument" "cutis") (new-wordnet-type {thick_skin.n.01} {skin.n.01}) (english {thick_skin.n.01} "thick skin") (new-wordnet-type {skin_graft.n.01} {skin.n.01}) (english {skin_graft.n.01} "skin graft") (new-wordnet-type {scalp.n.01} {skin.n.01}) (english {scalp.n.01} "scalp") (new-wordnet-type {prepuce.n.02} {skin.n.01}) (english {prepuce.n.02} "prepuce" "foreskin") (new-wordnet-type {prepuce.n.01} {skin.n.01}) (english {prepuce.n.01} "prepuce" "foreskin") (new-wordnet-type {investment.n.04} {skin.n.01}) (english {investment.n.04} "investment") (new-wordnet-type {pellicle.n.01} {investment.n.04}) (english {pellicle.n.01} "pellicle") (new-wordnet-type {hangnail.n.01} {skin.n.01}) (english {hangnail.n.01} "hangnail" "agnail") (new-wordnet-type {dewlap.n.01} {skin.n.01}) (english {dewlap.n.01} "dewlap") (new-wordnet-type {cuticle.n.01} {skin.n.01}) (english {cuticle.n.01} "cuticle") (new-wordnet-type {buff.n.03} {skin.n.01}) (english {buff.n.03} "buff") (new-wordnet-type {scar_tissue.n.01} {connective_tissue.n.01}) (english {scar_tissue.n.01} "scar tissue") (new-wordnet-type {adhesion.n.02} {scar_tissue.n.01}) (english {adhesion.n.02} "adhesion") (new-wordnet-type {perineurium.n.01} {connective_tissue.n.01}) (english {perineurium.n.01} "perineurium") (new-wordnet-type {perimysium.n.01} {connective_tissue.n.01}) (english {perimysium.n.01} "perimysium") (new-wordnet-type {marrow.n.01} {connective_tissue.n.01}) (english {marrow.n.01} "marrow" "bone marrow") (new-wordnet-type {yellow_marrow.n.01} {marrow.n.01}) (english {yellow_marrow.n.01} "yellow marrow" "yellow bone marrow") (new-wordnet-type {red_marrow.n.01} {marrow.n.01}) (english {red_marrow.n.01} "red marrow" "red bone marrow") (new-wordnet-type {ligament.n.01} {connective_tissue.n.01}) (english {ligament.n.01} "ligament") (new-wordnet-type {round_ligament_of_the_uterus.n.01} {ligament.n.01}) (english {round_ligament_of_the_uterus.n.01} "round ligament of the uterus" "ligamentum teres uteri") (new-wordnet-type {falciform_ligament.n.01} {ligament.n.01}) (english {falciform_ligament.n.01} "falciform ligament") (new-wordnet-type {granulation.n.01} {connective_tissue.n.01}) (english {granulation.n.01} "granulation" "granulation tissue") (new-wordnet-type {proud_flesh.n.01} {granulation.n.01}) (english {proud_flesh.n.01} "proud flesh") (new-wordnet-type {fascia.n.01} {connective_tissue.n.01}) (english {fascia.n.01} "fascia" "facia") (new-wordnet-type {aponeurosis.n.01} {fascia.n.01}) (english {aponeurosis.n.01} "aponeurosis") (new-wordnet-type {endoneurium.n.01} {connective_tissue.n.01}) (english {endoneurium.n.01} "endoneurium") (new-wordnet-type {elastic_tissue.n.01} {connective_tissue.n.01}) (english {elastic_tissue.n.01} "elastic tissue") (new-wordnet-type {bone.n.01} {connective_tissue.n.01}) (english {bone.n.01} "bone" "os") (new-wordnet-type {zygoma.n.01} {bone.n.01}) (english {zygoma.n.01} "zygoma" "zygomatic arch" "arcus zygomaticus") (new-wordnet-type {xiphoid_process.n.01} {bone.n.01}) (english {xiphoid_process.n.01} "xiphoid process") (new-wordnet-type {wormian_bone.n.01} {bone.n.01}) (english {wormian_bone.n.01} "Wormian bone" "sutural bone") (new-wordnet-type {vomer.n.01} {bone.n.01}) (english {vomer.n.01} "vomer") (new-wordnet-type {vertebra.n.01} {bone.n.01}) (english {vertebra.n.01} "vertebra") (new-wordnet-type {thoracic_vertebra.n.01} {vertebra.n.01}) (english {thoracic_vertebra.n.01} "thoracic vertebra" "dorsal vertebra") (new-wordnet-type {sacral_vertebra.n.01} {vertebra.n.01}) (english {sacral_vertebra.n.01} "sacral vertebra") (new-wordnet-type {lumbar_vertebra.n.01} {vertebra.n.01}) (english {lumbar_vertebra.n.01} "lumbar vertebra") (new-wordnet-type {coccygeal_vertebra.n.01} {vertebra.n.01}) (english {coccygeal_vertebra.n.01} "coccygeal vertebra" "caudal vertebra") (new-wordnet-type {cervical_vertebra.n.01} {vertebra.n.01}) (english {cervical_vertebra.n.01} "cervical vertebra" "neck bone") (new-wordnet-type {axis.n.05} {cervical_vertebra.n.01}) (english {axis.n.05} "axis" "axis vertebra") (new-wordnet-type {atlas.n.03} {cervical_vertebra.n.01}) (english {atlas.n.03} "atlas" "atlas vertebra") (new-wordnet-type {tympanic_bone.n.01} {bone.n.01}) (english {tympanic_bone.n.01} "tympanic bone") (new-wordnet-type {turbinate_bone.n.01} {bone.n.01}) (english {turbinate_bone.n.01} "turbinate bone" "turbinate" "turbinal") (new-wordnet-type {nasal_concha.n.01} {turbinate_bone.n.01}) (english {nasal_concha.n.01} "nasal concha") (new-wordnet-type {tooth.n.01} {bone.n.01}) (english {tooth.n.01} "tooth") (new-wordnet-type {tusk.n.02} {tooth.n.01}) (english {tusk.n.02} "tusk") (new-wordnet-type {primary_tooth.n.01} {tooth.n.01}) (english {primary_tooth.n.01} "primary tooth" "deciduous tooth" "baby tooth" "milk tooth") (new-wordnet-type {premolar.n.01} {tooth.n.01}) (english {premolar.n.01} "premolar" "bicuspid") (new-wordnet-type {permanent_tooth.n.01} {tooth.n.01}) (english {permanent_tooth.n.01} "permanent tooth" "adult tooth") (new-wordnet-type {molar.n.01} {tooth.n.01}) (english {molar.n.01} "molar" "grinder") (new-wordnet-type {wisdom_tooth.n.01} {molar.n.01}) (english {wisdom_tooth.n.01} "wisdom tooth") (new-wordnet-type {malposed_tooth.n.01} {tooth.n.01}) (english {malposed_tooth.n.01} "malposed tooth") (new-wordnet-type {incisor.n.01} {tooth.n.01}) (english {incisor.n.01} "incisor") (new-wordnet-type {front_tooth.n.01} {tooth.n.01}) (english {front_tooth.n.01} "front tooth" "anterior") (new-wordnet-type {bucktooth.n.01} {front_tooth.n.01}) (english {bucktooth.n.01} "bucktooth") (new-wordnet-type {fang.n.04} {tooth.n.01}) (english {fang.n.04} "fang") (new-wordnet-type {conodont.n.01} {tooth.n.01}) (english {conodont.n.01} "conodont") (new-wordnet-type {chopper.n.02} {tooth.n.01}) (english {chopper.n.02} "chopper" "pearly") (new-wordnet-type {carnassial_tooth.n.01} {tooth.n.01}) (english {carnassial_tooth.n.01} "carnassial tooth") (new-wordnet-type {canine.n.01} {tooth.n.01}) (english {canine.n.01} "canine" "canine tooth" "eyetooth" "eye tooth" "dogtooth" "cuspid") (new-wordnet-type {fang.n.03} {canine.n.01}) (english {fang.n.03} "fang") (new-wordnet-type {back_tooth.n.01} {tooth.n.01}) (english {back_tooth.n.01} "back tooth" "posterior") (new-wordnet-type {temporal_bone.n.01} {bone.n.01}) (english {temporal_bone.n.01} "temporal bone" "os temporale") (new-wordnet-type {tarsal.n.01} {bone.n.01}) (english {tarsal.n.01} "tarsal" "tarsal bone") (new-wordnet-type {sternum.n.01} {bone.n.01}) (english {sternum.n.01} "sternum" "breastbone") (new-wordnet-type {splint_bone.n.01} {bone.n.01}) (english {splint_bone.n.01} "splint bone") (new-wordnet-type {sphenoid_bone.n.01} {bone.n.01}) (english {sphenoid_bone.n.01} "sphenoid bone" "sphenoid" "os sphenoidale") (new-wordnet-type {skull.n.01} {bone.n.01}) (english {skull.n.01} "skull") (new-wordnet-type {sinciput.n.01} {bone.n.01}) (english {sinciput.n.01} "sinciput") (new-wordnet-type {short_bone.n.01} {bone.n.01}) (english {short_bone.n.01} "short bone" "os breve") (new-wordnet-type {sesamoid_bone.n.01} {bone.n.01}) (english {sesamoid_bone.n.01} "sesamoid bone" "sesamoid" "os sesamoideum") (new-wordnet-type {patella.n.01} {sesamoid_bone.n.01}) (english {patella.n.01} "patella" "kneecap" "kneepan") (new-wordnet-type {scapula.n.01} {bone.n.01}) (english {scapula.n.01} "scapula" "shoulder blade" "shoulder bone") (new-wordnet-type {sacrum.n.01} {bone.n.01}) (english {sacrum.n.01} "sacrum") (new-wordnet-type {round_bone.n.01} {bone.n.01}) (english {round_bone.n.01} "round bone") (new-wordnet-type {rib.n.02} {bone.n.01}) (english {rib.n.02} "rib" "costa") (new-wordnet-type {true_rib.n.01} {rib.n.02}) (english {true_rib.n.01} "true rib") (new-wordnet-type {ramus.n.01} {bone.n.01}) (english {ramus.n.01} "ramus") (new-wordnet-type {pubis.n.01} {bone.n.01}) (english {pubis.n.01} "pubis" "pubic bone" "os pubis") (new-wordnet-type {phalanx.n.01} {bone.n.01}) (english {phalanx.n.01} "phalanx") (new-wordnet-type {pastern.n.01} {bone.n.01}) (english {pastern.n.01} "pastern" "fetter bone") (new-wordnet-type {palatine.n.04} {bone.n.01}) (english {palatine.n.04} "palatine" "palatine bone" "os palatinum") (new-wordnet-type {ossicle.n.01} {bone.n.01}) (english {ossicle.n.01} "ossicle" "bonelet" "ossiculum") (new-wordnet-type {auditory_ossicle.n.01} {ossicle.n.01}) (english {auditory_ossicle.n.01} "auditory ossicle") (new-wordnet-type {stapes.n.01} {auditory_ossicle.n.01}) (english {stapes.n.01} "stapes" "stirrup") (new-wordnet-type {malleus.n.01} {auditory_ossicle.n.01}) (english {malleus.n.01} "malleus" "hammer") (new-wordnet-type {incus.n.01} {auditory_ossicle.n.01}) (english {incus.n.01} "incus" "anvil") (new-wordnet-type {occiput.n.01} {bone.n.01}) (english {occiput.n.01} "occiput") (new-wordnet-type {nasal.n.02} {bone.n.01}) (english {nasal.n.02} "nasal" "nasal bone" "os nasale") (new-wordnet-type {modiolus.n.01} {bone.n.01}) (english {modiolus.n.01} "modiolus") (new-wordnet-type {metatarsal.n.01} {bone.n.01}) (english {metatarsal.n.01} "metatarsal") (new-wordnet-type {metacarpal.n.01} {bone.n.01}) (english {metacarpal.n.01} "metacarpal" "metacarpal bone") (new-wordnet-type {membrane_bone.n.01} {bone.n.01}) (english {membrane_bone.n.01} "membrane bone") (new-wordnet-type {parietal_bone.n.01} {membrane_bone.n.01}) (english {parietal_bone.n.01} "parietal bone") (new-wordnet-type {occipital_bone.n.01} {membrane_bone.n.01}) (english {occipital_bone.n.01} "occipital bone") (new-wordnet-type {frontal_bone.n.01} {membrane_bone.n.01}) (english {frontal_bone.n.01} "frontal bone" "os frontale" "forehead") (new-wordnet-type {marrowbone.n.01} {bone.n.01}) (english {marrowbone.n.01} "marrowbone") (new-wordnet-type {manubrium.n.01} {bone.n.01}) (english {manubrium.n.01} "manubrium") (new-wordnet-type {long_bone.n.01} {bone.n.01}) (english {long_bone.n.01} "long bone" "os longum") (new-wordnet-type {leg_bone.n.01} {long_bone.n.01}) (english {leg_bone.n.01} "leg bone") (new-wordnet-type {tibia.n.01} {leg_bone.n.01}) (english {tibia.n.01} "tibia" "shinbone" "shin bone" "shin") (new-wordnet-type {fibula.n.01} {leg_bone.n.01}) (english {fibula.n.01} "fibula" "calf bone") (new-wordnet-type {femur.n.01} {leg_bone.n.01}) (english {femur.n.01} "femur" "thighbone" "femoris") (new-wordnet-type {epiphysis.n.01} {long_bone.n.01}) (english {epiphysis.n.01} "epiphysis") (new-wordnet-type {diaphysis.n.01} {long_bone.n.01}) (english {diaphysis.n.01} "diaphysis" "shaft") (new-wordnet-type {arm_bone.n.01} {long_bone.n.01}) (english {arm_bone.n.01} "arm bone") (new-wordnet-type {ulna.n.01} {arm_bone.n.01}) (english {ulna.n.01} "ulna" "elbow bone") (new-wordnet-type {radius.n.04} {arm_bone.n.01}) (english {radius.n.04} "radius") (new-wordnet-type {humerus.n.01} {arm_bone.n.01}) (english {humerus.n.01} "humerus") (new-wordnet-type {lacrimal_bone.n.01} {bone.n.01}) (english {lacrimal_bone.n.01} "lacrimal bone") (new-wordnet-type {jaw.n.01} {bone.n.01}) (english {jaw.n.01} "jaw") (new-wordnet-type {upper_jaw.n.01} {jaw.n.01}) (english {upper_jaw.n.01} "upper jaw" "upper jawbone" "maxilla" "maxillary") (new-wordnet-type {lower_jaw.n.01} {jaw.n.01}) (english {lower_jaw.n.01} "lower jaw" "mandible" "mandibula" "mandibular bone" "submaxilla" "lower jawbone" "jawbone" "jowl") (new-wordnet-type {lantern_jaw.n.01} {lower_jaw.n.01}) (english {lantern_jaw.n.01} "lantern jaw") (new-wordnet-type {chop.n.03} {jaw.n.01}) (english {chop.n.03} "chop") (new-wordnet-type {ischium.n.01} {bone.n.01}) (english {ischium.n.01} "ischium" "ischial bone" "os ischii") (new-wordnet-type {ilium.n.02} {bone.n.01}) (english {ilium.n.02} "ilium") (new-wordnet-type {hyoid.n.01} {bone.n.01}) (english {hyoid.n.01} "hyoid" "hyoid bone" "os hyoideum") (new-wordnet-type {hipbone.n.01} {bone.n.01}) (english {hipbone.n.01} "hipbone" "innominate bone") (new-wordnet-type {heelbone.n.01} {bone.n.01}) (english {heelbone.n.01} "heelbone" "calcaneus" "os tarsi fibulare") (new-wordnet-type {gladiolus.n.02} {bone.n.01}) (english {gladiolus.n.02} "gladiolus" "corpus sternum") (new-wordnet-type {furcula.n.01} {bone.n.01}) (english {furcula.n.01} "furcula") (new-wordnet-type {wishbone.n.01} {furcula.n.01}) (english {wishbone.n.01} "wishbone" "wishing bone") (new-wordnet-type {fishbone.n.01} {bone.n.01}) (english {fishbone.n.01} "fishbone") (new-wordnet-type {ethmoid.n.01} {bone.n.01}) (english {ethmoid.n.01} "ethmoid" "ethmoid bone") (new-wordnet-type {dentine.n.02} {bone.n.01}) (english {dentine.n.02} "dentine" "dentin") (new-wordnet-type {cuboid_bone.n.01} {bone.n.01}) (english {cuboid_bone.n.01} "cuboid bone") (new-wordnet-type {cranium.n.01} {bone.n.01}) (english {cranium.n.01} "cranium" "braincase" "brainpan") (new-wordnet-type {coccyx.n.01} {bone.n.01}) (english {coccyx.n.01} "coccyx" "tail bone") (new-wordnet-type {clavicle.n.01} {bone.n.01}) (english {clavicle.n.01} "clavicle" "collarbone") (new-wordnet-type {cheekbone.n.01} {bone.n.01}) (english {cheekbone.n.01} "cheekbone" "zygomatic bone" "zygomatic" "malar" "malar bone" "jugal bone" "os zygomaticum") (new-wordnet-type {centrum.n.01} {bone.n.01}) (english {centrum.n.01} "centrum") (new-wordnet-type {cartilage_bone.n.01} {bone.n.01}) (english {cartilage_bone.n.01} "cartilage bone") (new-wordnet-type {carpal_bone.n.01} {bone.n.01}) (english {carpal_bone.n.01} "carpal bone" "carpal" "wrist bone") (new-wordnet-type {triquetral.n.01} {carpal_bone.n.01}) (english {triquetral.n.01} "triquetral" "triquetral bone" "os triquetrum" "cuneiform bone" "pyramidal bone") (new-wordnet-type {trapezoid.n.02} {carpal_bone.n.01}) (english {trapezoid.n.02} "trapezoid" "trapezoid bone" "os trapezoideum") (new-wordnet-type {trapezium.n.03} {carpal_bone.n.01}) (english {trapezium.n.03} "trapezium" "trapezium bone" "os trapezium") (new-wordnet-type {scaphoid_bone.n.01} {carpal_bone.n.01}) (english {scaphoid_bone.n.01} "scaphoid bone" "os scaphoideum" "navicular") (new-wordnet-type {pisiform.n.01} {carpal_bone.n.01}) (english {pisiform.n.01} "pisiform" "pisiform bone" "os pisiforme") (new-wordnet-type {lunate_bone.n.01} {carpal_bone.n.01}) (english {lunate_bone.n.01} "lunate bone" "semilunar bone" "os lunatum") (new-wordnet-type {hamate.n.01} {carpal_bone.n.01}) (english {hamate.n.01} "hamate" "hamate bone" "unciform bone" "os hamatum") (new-wordnet-type {capitate.n.01} {carpal_bone.n.01}) (english {capitate.n.01} "capitate" "capitate bone" "os capitatum") (new-wordnet-type {cannon_bone.n.01} {bone.n.01}) (english {cannon_bone.n.01} "cannon bone") (new-wordnet-type {calvaria.n.01} {bone.n.01}) (english {calvaria.n.01} "calvaria" "skullcap") (new-wordnet-type {bare_bone.n.01} {bone.n.01}) (english {bare_bone.n.01} "bare bone") (new-wordnet-type {anklebone.n.01} {bone.n.01}) (english {anklebone.n.01} "anklebone" "astragal" "astragalus" "talus") (new-wordnet-type {areolar_tissue.n.01} {connective_tissue.n.01}) (english {areolar_tissue.n.01} "areolar tissue") (new-wordnet-type {chalaza.n.02} {animal_tissue.n.01}) (english {chalaza.n.02} "chalaza") (new-wordnet-type {cartilage.n.01} {animal_tissue.n.01}) (english {cartilage.n.01} "cartilage" "gristle") (new-wordnet-type {thyroid_cartilage.n.01} {cartilage.n.01}) (english {thyroid_cartilage.n.01} "thyroid cartilage" "Adam's apple") (new-wordnet-type {meniscus.n.01} {cartilage.n.01}) (english {meniscus.n.01} "meniscus" "semilunar cartilage") (new-wordnet-type {hyaline_cartilage.n.01} {cartilage.n.01}) (english {hyaline_cartilage.n.01} "hyaline cartilage") (new-wordnet-type {fibrocartilage.n.01} {cartilage.n.01}) (english {fibrocartilage.n.01} "fibrocartilage") (new-wordnet-type {arytenoid.n.01} {cartilage.n.01}) (english {arytenoid.n.01} "arytenoid" "arytaenoid" "arytenoid cartilage") (new-wordnet-type {capillary_bed.n.01} {animal_tissue.n.01}) (english {capillary_bed.n.01} "capillary bed") (new-wordnet-type {adipose_tissue.n.01} {animal_tissue.n.01}) (english {adipose_tissue.n.01} "adipose tissue" "fat" "fatty tissue") (new-wordnet-type {spare_tire.n.01} {adipose_tissue.n.01}) (english {spare_tire.n.01} "spare tire" "love handle") (new-wordnet-type {puppy_fat.n.01} {adipose_tissue.n.01}) (english {puppy_fat.n.01} "puppy fat") (new-wordnet-type {mons.n.01} {adipose_tissue.n.01}) (english {mons.n.01} "mons" "mons veneris" "mons pubis") (new-wordnet-type {flab.n.01} {adipose_tissue.n.01}) (english {flab.n.01} "flab") (new-wordnet-type {cellulite.n.01} {adipose_tissue.n.01}) (english {cellulite.n.01} "cellulite") (new-wordnet-type {belly.n.02} {adipose_tissue.n.01}) (english {belly.n.02} "belly" "paunch") (new-wordnet-type {pot.n.07} {belly.n.02}) (english {pot.n.07} "pot" "potbelly" "bay window" "corporation" "tummy") (new-wordnet-type {atheroma.n.01} {adipose_tissue.n.01}) (english {atheroma.n.01} "atheroma") (new-wordnet-type {thorax.n.03} {body_part.n.01}) (english {thorax.n.03} "thorax") (new-wordnet-type {prothorax.n.01} {thorax.n.03}) (english {prothorax.n.01} "prothorax") (new-wordnet-type {thorax.n.02} {body_part.n.01}) (english {thorax.n.02} "thorax" "chest" "pectus") (new-wordnet-type {male_chest.n.01} {thorax.n.02}) (english {male_chest.n.01} "male chest") (new-wordnet-type {female_chest.n.01} {thorax.n.02}) (english {female_chest.n.01} "female chest" "bust") (new-wordnet-type {thorax.n.01} {body_part.n.01}) (english {thorax.n.01} "thorax") (new-wordnet-type {system.n.06} {body_part.n.01}) (english {system.n.06} "system") (new-wordnet-type {venation.n.02} {system.n.06}) (english {venation.n.02} "venation" "venous blood system") (new-wordnet-type {vascular_system.n.01} {system.n.06}) (english {vascular_system.n.01} "vascular system") (new-wordnet-type {water_vascular_system.n.01} {vascular_system.n.01}) (english {water_vascular_system.n.01} "water vascular system") (new-wordnet-type {portal_system.n.01} {vascular_system.n.01}) (english {portal_system.n.01} "portal system") (new-wordnet-type {lymphatic_system.n.01} {vascular_system.n.01}) (english {lymphatic_system.n.01} "lymphatic system" "systema lymphaticum") (new-wordnet-type {circulatory_system.n.01} {vascular_system.n.01}) (english {circulatory_system.n.01} "circulatory system" "cardiovascular system") (new-wordnet-type {fetal_circulation.n.01} {circulatory_system.n.01}) (english {fetal_circulation.n.01} "fetal circulation" "foetal circulation") (new-wordnet-type {urogenital_system.n.01} {system.n.06}) (english {urogenital_system.n.01} "urogenital system" "urogenital apparatus" "urinary system" "urinary apparatus" "genitourinary system" "genitourinary apparatus" "systema urogenitale" "apparatus urogenitalis") (new-wordnet-type {tract.n.02} {system.n.06}) (english {tract.n.02} "tract") (new-wordnet-type {urinary_tract.n.01} {tract.n.02}) (english {urinary_tract.n.01} "urinary tract") (new-wordnet-type {respiratory_tract.n.01} {tract.n.02}) (english {respiratory_tract.n.01} "respiratory tract" "airway") (new-wordnet-type {upper_respiratory_tract.n.01} {respiratory_tract.n.01}) (english {upper_respiratory_tract.n.01} "upper respiratory tract") (new-wordnet-type {lower_respiratory_tract.n.01} {respiratory_tract.n.01}) (english {lower_respiratory_tract.n.01} "lower respiratory tract") (new-wordnet-type {skeletal_system.n.01} {system.n.06}) (english {skeletal_system.n.01} "skeletal system" "skeleton" "frame" "systema skeletale") (new-wordnet-type {exoskeleton.n.01} {skeletal_system.n.01}) (english {exoskeleton.n.01} "exoskeleton") (new-wordnet-type {plastron.n.05} {exoskeleton.n.01}) (english {plastron.n.05} "plastron") (new-wordnet-type {endoskeleton.n.01} {skeletal_system.n.01}) (english {endoskeleton.n.01} "endoskeleton") (new-wordnet-type {sensory_system.n.02} {system.n.06}) (english {sensory_system.n.02} "sensory system") (new-wordnet-type {visual_system.n.01} {sensory_system.n.02}) (english {visual_system.n.01} "visual system") (new-wordnet-type {vestibular_apparatus.n.01} {sensory_system.n.02}) (english {vestibular_apparatus.n.01} "vestibular apparatus" "vestibular system") (new-wordnet-type {auditory_system.n.01} {sensory_system.n.02}) (english {auditory_system.n.01} "auditory system") (new-wordnet-type {reticuloendothelial_system.n.01} {system.n.06}) (english {reticuloendothelial_system.n.01} "reticuloendothelial system" "RES") (new-wordnet-type {respiratory_system.n.01} {system.n.06}) (english {respiratory_system.n.01} "respiratory system" "systema respiratorium") (new-wordnet-type {reproductive_system.n.01} {system.n.06}) (english {reproductive_system.n.01} "reproductive system" "genital system") (new-wordnet-type {male_reproductive_system.n.01} {reproductive_system.n.01}) (english {male_reproductive_system.n.01} "male reproductive system") (new-wordnet-type {female_reproductive_system.n.01} {reproductive_system.n.01}) (english {female_reproductive_system.n.01} "female reproductive system") (new-wordnet-type {peripheral_nervous_system.n.01} {system.n.06}) (english {peripheral_nervous_system.n.01} "peripheral nervous system" "systema nervosum periphericum") (new-wordnet-type {nervous_system.n.01} {system.n.06}) (english {nervous_system.n.01} "nervous system" "systema nervosum") (new-wordnet-type {sympathetic_nervous_system.n.01} {nervous_system.n.01}) (english {sympathetic_nervous_system.n.01} "sympathetic nervous system") (new-wordnet-type {parasympathetic_nervous_system.n.01} {nervous_system.n.01}) (english {parasympathetic_nervous_system.n.01} "parasympathetic nervous system" "parasympathetic") (new-wordnet-type {musculoskeletal_system.n.01} {system.n.06}) (english {musculoskeletal_system.n.01} "musculoskeletal system") (new-wordnet-type {muscular_structure.n.01} {system.n.06}) (english {muscular_structure.n.01} "muscular structure" "musculature" "muscle system") (new-wordnet-type {esophagus.n.01} {muscular_structure.n.01}) (english {esophagus.n.01} "esophagus" "oesophagus" "gorge" "gullet") (new-wordnet-type {diaphragm.n.02} {muscular_structure.n.01}) (english {diaphragm.n.02} "diaphragm" "midriff") (new-wordnet-type {mononuclear_phagocyte_system.n.01} {system.n.06}) (english {mononuclear_phagocyte_system.n.01} "mononuclear phagocyte system" "MPS" "system of macrophages") (new-wordnet-type {integumentary_system.n.01} {system.n.06}) (english {integumentary_system.n.01} "integumentary system") (new-wordnet-type {immune_system.n.01} {system.n.06}) (english {immune_system.n.01} "immune system") (new-wordnet-type {endocrine_system.n.01} {system.n.06}) (english {endocrine_system.n.01} "endocrine system") (new-wordnet-type {digestive_system.n.01} {system.n.06}) (english {digestive_system.n.01} "digestive system" "gastrointestinal system" "systema alimentarium" "systema digestorium") (new-wordnet-type {central_nervous_system.n.01} {system.n.06}) (english {central_nervous_system.n.01} "central nervous system" "CNS" "systema nervosum centrale") (new-wordnet-type {articulatory_system.n.01} {system.n.06}) (english {articulatory_system.n.01} "articulatory system") (new-wordnet-type {stump.n.02} {body_part.n.01}) (english {stump.n.02} "stump") (new-wordnet-type {structure.n.04} {body_part.n.01}) (english {structure.n.04} "structure" "anatomical structure" "complex body part" "bodily structure" "body structure") (new-wordnet-type {zone.n.04} {structure.n.04}) (english {zone.n.04} "zone" "zona") (new-wordnet-type {zonule.n.01} {zone.n.04}) (english {zonule.n.01} "zonule" "zonula") (new-wordnet-type {zona_pellucida.n.01} {zone.n.04}) (english {zona_pellucida.n.01} "zona pellucida") (new-wordnet-type {vascular_structure.n.01} {structure.n.04}) (english {vascular_structure.n.01} "vascular structure") (new-wordnet-type {pulp.n.05} {vascular_structure.n.01}) (english {pulp.n.05} "pulp") (new-wordnet-type {placenta.n.02} {vascular_structure.n.01}) (english {placenta.n.02} "placenta") (new-wordnet-type {afterbirth.n.01} {placenta.n.02}) (english {afterbirth.n.01} "afterbirth") (new-wordnet-type {valve.n.01} {structure.n.04}) (english {valve.n.01} "valve") (new-wordnet-type {valvule.n.01} {valve.n.01}) (english {valvule.n.01} "valvule" "valvelet" "valvula") (new-wordnet-type {ileocecal_valve.n.01} {valve.n.01}) (english {ileocecal_valve.n.01} "ileocecal valve") (new-wordnet-type {heart_valve.n.01} {valve.n.01}) (english {heart_valve.n.01} "heart valve" "cardiac valve") (new-wordnet-type {semilunar_valve.n.01} {heart_valve.n.01}) (english {semilunar_valve.n.01} "semilunar valve") (new-wordnet-type {pulmonary_valve.n.01} {semilunar_valve.n.01}) (english {pulmonary_valve.n.01} "pulmonary valve") (new-wordnet-type {aortic_valve.n.01} {semilunar_valve.n.01}) (english {aortic_valve.n.01} "aortic valve") (new-wordnet-type {atrioventricular_valve.n.01} {heart_valve.n.01}) (english {atrioventricular_valve.n.01} "atrioventricular valve") (new-wordnet-type {tricuspid_valve.n.01} {atrioventricular_valve.n.01}) (english {tricuspid_valve.n.01} "tricuspid valve" "right atrioventricular valve") (new-wordnet-type {mitral_valve.n.01} {atrioventricular_valve.n.01}) (english {mitral_valve.n.01} "mitral valve" "bicuspid valve" "left atrioventricular valve") (new-wordnet-type {uvea.n.01} {structure.n.04}) (english {uvea.n.01} "uvea") (new-wordnet-type {tube.n.04} {structure.n.04}) (english {tube.n.04} "tube" "tube-shaped structure") (new-wordnet-type {vessel.n.01} {tube.n.04}) (english {vessel.n.01} "vessel" "vas") (new-wordnet-type {blood_vessel.n.01} {vessel.n.01}) (english {blood_vessel.n.01} "blood vessel") (new-wordnet-type {vein.n.01} {blood_vessel.n.01}) (english {vein.n.01} "vein" "vena" "venous blood vessel") (new-wordnet-type {vortex_vein.n.01} {vein.n.01}) (english {vortex_vein.n.01} "vortex vein" "vorticose vein" "vena vorticosum") (new-wordnet-type {vestibular_vein.n.01} {vein.n.01}) (english {vestibular_vein.n.01} "vestibular vein" "vena vestibularis") (new-wordnet-type {vesical_vein.n.01} {vein.n.01}) (english {vesical_vein.n.01} "vesical vein" "vena vesicalis") (new-wordnet-type {vertebral_vein.n.01} {vein.n.01}) (english {vertebral_vein.n.01} "vertebral vein" "vena vertebralis") (new-wordnet-type {venule.n.01} {vein.n.01}) (english {venule.n.01} "venule" "venula" "capillary vein") (new-wordnet-type {stellate_venule.n.01} {venule.n.01}) (english {stellate_venule.n.01} "stellate venule") (new-wordnet-type {episcleral_veins.n.01} {venule.n.01}) (english {episcleral_veins.n.01} "episcleral veins" "venae episclerales") (new-wordnet-type {venae_renis.n.01} {vein.n.01}) (english {venae_renis.n.01} "venae renis") (new-wordnet-type {venae_interlobulares_renis.n.01} {venae_renis.n.01}) (english {venae_interlobulares_renis.n.01} "venae interlobulares renis") (new-wordnet-type {venae_palpebrales.n.01} {vein.n.01}) (english {venae_palpebrales.n.01} "venae palpebrales") (new-wordnet-type {venae_interlobulares_hepatis.n.01} {vein.n.01}) (english {venae_interlobulares_hepatis.n.01} "venae interlobulares hepatis") (new-wordnet-type {vena_cava.n.01} {vein.n.01}) (english {vena_cava.n.01} "vena cava") (new-wordnet-type {superior_vena_cava.n.01} {vena_cava.n.01}) (english {superior_vena_cava.n.01} "superior vena cava" "precava") (new-wordnet-type {inferior_vena_cava.n.01} {vena_cava.n.01}) (english {inferior_vena_cava.n.01} "inferior vena cava" "postcava") (new-wordnet-type {vena_canaliculi_cochleae.n.01} {vein.n.01}) (english {vena_canaliculi_cochleae.n.01} "vena canaliculi cochleae") (new-wordnet-type {vena_bulbi_vestibuli.n.01} {vein.n.01}) (english {vena_bulbi_vestibuli.n.01} "vena bulbi vestibuli") (new-wordnet-type {vena_bulbi_penis.n.01} {vein.n.01}) (english {vena_bulbi_penis.n.01} "vena bulbi penis") (new-wordnet-type {vein_of_penis.n.01} {vein.n.01}) (english {vein_of_penis.n.01} "vein of penis") (new-wordnet-type {venae_dorsales_penis_superficiales.n.01} {vein_of_penis.n.01}) (english {venae_dorsales_penis_superficiales.n.01} "venae dorsales penis superficiales") (new-wordnet-type {venae_dorsales_penis_profunda.n.01} {vein_of_penis.n.01}) (english {venae_dorsales_penis_profunda.n.01} "venae dorsales penis profunda") (new-wordnet-type {vena_profunda_penis.n.01} {vein_of_penis.n.01}) (english {vena_profunda_penis.n.01} "vena profunda penis") (new-wordnet-type {varicose_vein.n.01} {vein.n.01}) (english {varicose_vein.n.01} "varicose vein") (new-wordnet-type {uterine_vein.n.01} {vein.n.01}) (english {uterine_vein.n.01} "uterine vein") (new-wordnet-type {umbilical_vein.n.01} {vein.n.01}) (english {umbilical_vein.n.01} "umbilical vein" "vena umbilicalis") (new-wordnet-type {ulnar_vein.n.01} {vein.n.01}) (english {ulnar_vein.n.01} "ulnar vein" "vena ulnaris") (new-wordnet-type {tympanic_vein.n.01} {vein.n.01}) (english {tympanic_vein.n.01} "tympanic vein") (new-wordnet-type {tracheal_vein.n.01} {vein.n.01}) (english {tracheal_vein.n.01} "tracheal vein" "vena trachealis") (new-wordnet-type {tibial_vein.n.01} {vein.n.01}) (english {tibial_vein.n.01} "tibial vein" "vena tibialis") (new-wordnet-type {thyroid_vein.n.01} {vein.n.01}) (english {thyroid_vein.n.01} "thyroid vein" "vena thyroidea") (new-wordnet-type {superior_thyroid_vein.n.01} {thyroid_vein.n.01}) (english {superior_thyroid_vein.n.01} "superior thyroid vein") (new-wordnet-type {middle_thyroid_vein.n.01} {thyroid_vein.n.01}) (english {middle_thyroid_vein.n.01} "middle thyroid vein") (new-wordnet-type {inferior_thyroid_vein.n.01} {thyroid_vein.n.01}) (english {inferior_thyroid_vein.n.01} "inferior thyroid vein") (new-wordnet-type {thoracoepigastric_vein.n.01} {vein.n.01}) (english {thoracoepigastric_vein.n.01} "thoracoepigastric vein" "vena thoracoepigastrica") (new-wordnet-type {thoracic_vein.n.01} {vein.n.01}) (english {thoracic_vein.n.01} "thoracic vein" "vena thoracica") (new-wordnet-type {thalamostriate_vein.n.01} {vein.n.01}) (english {thalamostriate_vein.n.01} "thalamostriate vein") (new-wordnet-type {superior_thalamostriate_vein.n.01} {thalamostriate_vein.n.01}) (english {superior_thalamostriate_vein.n.01} "superior thalamostriate vein") (new-wordnet-type {inferior_thalamostriate_vein.n.01} {thalamostriate_vein.n.01}) (english {inferior_thalamostriate_vein.n.01} "inferior thalamostriate vein" "striate vein") (new-wordnet-type {testicular_vein.n.01} {vein.n.01}) (english {testicular_vein.n.01} "testicular vein" "vena testicularis") (new-wordnet-type {temporal_vein.n.01} {vein.n.01}) (english {temporal_vein.n.01} "temporal vein" "vena temporalis") (new-wordnet-type {superficial_temporal_vein.n.01} {temporal_vein.n.01}) (english {superficial_temporal_vein.n.01} "superficial temporal vein") (new-wordnet-type {middle_temporal_vein.n.01} {temporal_vein.n.01}) (english {middle_temporal_vein.n.01} "middle temporal vein") (new-wordnet-type {deep_temporal_vein.n.01} {temporal_vein.n.01}) (english {deep_temporal_vein.n.01} "deep temporal vein") (new-wordnet-type {supratrochlear_vein.n.01} {vein.n.01}) (english {supratrochlear_vein.n.01} "supratrochlear vein" "vena supratrochlearis") (new-wordnet-type {supraorbital_vein.n.01} {vein.n.01}) (english {supraorbital_vein.n.01} "supraorbital vein" "vena supraorbitalis") (new-wordnet-type {sublingual_vein.n.01} {vein.n.01}) (english {sublingual_vein.n.01} "sublingual vein" "vena sublingualis") (new-wordnet-type {subclavian_vein.n.01} {vein.n.01}) (english {subclavian_vein.n.01} "subclavian vein" "vena subclavia") (new-wordnet-type {stylomastoid_vein.n.01} {vein.n.01}) (english {stylomastoid_vein.n.01} "stylomastoid vein" "vena stylomastoidea") (new-wordnet-type {sternocleidomastoid_vein.n.01} {vein.n.01}) (english {sternocleidomastoid_vein.n.01} "sternocleidomastoid vein" "vena sternocleidomastoidea") (new-wordnet-type {splenic_vein.n.01} {vein.n.01}) (english {splenic_vein.n.01} "splenic vein" "vena lienalis") (new-wordnet-type {spinal_vein.n.01} {vein.n.01}) (english {spinal_vein.n.01} "spinal vein" "vena spinalis") (new-wordnet-type {sigmoid_vein.n.01} {vein.n.01}) (english {sigmoid_vein.n.01} "sigmoid vein" "vena sigmoideus") (new-wordnet-type {scrotal_vein.n.01} {vein.n.01}) (english {scrotal_vein.n.01} "scrotal vein" "vena scrotalis") (new-wordnet-type {scleral_veins.n.01} {vein.n.01}) (english {scleral_veins.n.01} "scleral veins" "venae sclerales") (new-wordnet-type {saphenous_vein.n.01} {vein.n.01}) (english {saphenous_vein.n.01} "saphenous vein" "vena saphena") (new-wordnet-type {short_saphenous_vein.n.01} {saphenous_vein.n.01}) (english {short_saphenous_vein.n.01} "short saphenous vein") (new-wordnet-type {long_saphenous_vein.n.01} {saphenous_vein.n.01}) (english {long_saphenous_vein.n.01} "long saphenous vein" "great saphenous vein") (new-wordnet-type {sacral_vein.n.01} {vein.n.01}) (english {sacral_vein.n.01} "sacral vein" "vena sacralis") (new-wordnet-type {renal_vein.n.01} {vein.n.01}) (english {renal_vein.n.01} "renal vein" "vena renalis") (new-wordnet-type {radial_vein.n.01} {vein.n.01}) (english {radial_vein.n.01} "radial vein" "vena radialis") (new-wordnet-type {pulmonary_vein.n.01} {vein.n.01}) (english {pulmonary_vein.n.01} "pulmonary vein" "vena pulmonalis") (new-wordnet-type {superior_pulmonary_vein.n.01} {pulmonary_vein.n.01}) (english {superior_pulmonary_vein.n.01} "superior pulmonary vein" "vena pulmonalis superior") (new-wordnet-type {inferior_pulmonary_vein.n.01} {pulmonary_vein.n.01}) (english {inferior_pulmonary_vein.n.01} "inferior pulmonary vein" "vena pulmanalis inferior") (new-wordnet-type {pudendal_vein.n.01} {vein.n.01}) (english {pudendal_vein.n.01} "pudendal vein" "venae pudendum") (new-wordnet-type {prepyloric_vein.n.01} {vein.n.01}) (english {prepyloric_vein.n.01} "prepyloric vein" "vena pylorica") (new-wordnet-type {posterior_vein_of_the_left_ventricle.n.01} {vein.n.01}) (english {posterior_vein_of_the_left_ventricle.n.01} "posterior vein of the left ventricle" "vena posterior ventriculi sinistri") (new-wordnet-type {portal_vein.n.01} {vein.n.01}) (english {portal_vein.n.01} "portal vein" "hepatic portal vein" "portal" "vena portae") (new-wordnet-type {popliteal_vein.n.01} {vein.n.01}) (english {popliteal_vein.n.01} "popliteal vein" "vena poplitea") (new-wordnet-type {phrenic_vein.n.01} {vein.n.01}) (english {phrenic_vein.n.01} "phrenic vein" "vena phrenica") (new-wordnet-type {pharyngeal_vein.n.01} {vein.n.01}) (english {pharyngeal_vein.n.01} "pharyngeal vein" "vena pharyngeus") (new-wordnet-type {peroneal_vein.n.01} {vein.n.01}) (english {peroneal_vein.n.01} "peroneal vein" "fibular vein" "vena peroneus") (new-wordnet-type {pericardial_vein.n.01} {vein.n.01}) (english {pericardial_vein.n.01} "pericardial vein" "vena pericardiaca") (new-wordnet-type {perforating_vein.n.01} {vein.n.01}) (english {perforating_vein.n.01} "perforating vein" "vena perforantis") (new-wordnet-type {pectoral_vein.n.01} {vein.n.01}) (english {pectoral_vein.n.01} "pectoral vein" "vena pectoralis") (new-wordnet-type {parotid_vein.n.01} {vein.n.01}) (english {parotid_vein.n.01} "parotid vein") (new-wordnet-type {paraumbilical_vein.n.01} {vein.n.01}) (english {paraumbilical_vein.n.01} "paraumbilical vein" "vena paraumbilicalis") (new-wordnet-type {pancreatic_vein.n.01} {vein.n.01}) (english {pancreatic_vein.n.01} "pancreatic vein" "venae pancreatica") (new-wordnet-type {palatine_vein.n.01} {vein.n.01}) (english {palatine_vein.n.01} "palatine vein" "vena palatina") (new-wordnet-type {ovarian_vein.n.01} {vein.n.01}) (english {ovarian_vein.n.01} "ovarian vein" "vena ovarica") (new-wordnet-type {ophthalmic_vein.n.01} {vein.n.01}) (english {ophthalmic_vein.n.01} "ophthalmic vein" "vena ophthalmica") (new-wordnet-type {superior_ophthalmic_vein.n.01} {ophthalmic_vein.n.01}) (english {superior_ophthalmic_vein.n.01} "superior ophthalmic vein") (new-wordnet-type {inferior_ophthalmic_vein.n.01} {ophthalmic_vein.n.01}) (english {inferior_ophthalmic_vein.n.01} "inferior ophthalmic vein") (new-wordnet-type {occipital_vein.n.01} {vein.n.01}) (english {occipital_vein.n.01} "occipital vein" "vena occipitalis") (new-wordnet-type {obturator_vein.n.01} {vein.n.01}) (english {obturator_vein.n.01} "obturator vein" "vena obturatoria") (new-wordnet-type {oblique_vein_of_the_left_atrium.n.01} {vein.n.01}) (english {oblique_vein_of_the_left_atrium.n.01} "oblique vein of the left atrium" "vena obliqua atrii sinistri") (new-wordnet-type {nasofrontal_vein.n.01} {vein.n.01}) (english {nasofrontal_vein.n.01} "nasofrontal vein" "vena nasofrontalis") (new-wordnet-type {musculophrenic_vein.n.01} {vein.n.01}) (english {musculophrenic_vein.n.01} "musculophrenic vein" "vena musculophrenica") (new-wordnet-type {metatarsal_vein.n.01} {vein.n.01}) (english {metatarsal_vein.n.01} "metatarsal vein" "vena metatarsus") (new-wordnet-type {metacarpal_vein.n.01} {vein.n.01}) (english {metacarpal_vein.n.01} "metacarpal vein" "vena metacarpus") (new-wordnet-type {mesenteric_vein.n.01} {vein.n.01}) (english {mesenteric_vein.n.01} "mesenteric vein" "vena mesenterica") (new-wordnet-type {meningeal_veins.n.01} {vein.n.01}) (english {meningeal_veins.n.01} "meningeal veins" "venae meningeae") (new-wordnet-type {maxillary_vein.n.01} {vein.n.01}) (english {maxillary_vein.n.01} "maxillary vein" "vena maxillaris") (new-wordnet-type {lumbar_vein.n.01} {vein.n.01}) (english {lumbar_vein.n.01} "lumbar vein" "vena lumbalis") (new-wordnet-type {lingual_vein.n.01} {vein.n.01}) (english {lingual_vein.n.01} "lingual vein" "vena lingualis") (new-wordnet-type {laryngeal_vein.n.01} {vein.n.01}) (english {laryngeal_vein.n.01} "laryngeal vein" "vena laryngea") (new-wordnet-type {lacrimal_vein.n.01} {vein.n.01}) (english {lacrimal_vein.n.01} "lacrimal vein" "vena lacrimalis") (new-wordnet-type {labyrinthine_vein.n.01} {vein.n.01}) (english {labyrinthine_vein.n.01} "labyrinthine vein" "internal auditory vein") (new-wordnet-type {labial_vein.n.02} {vein.n.01}) (english {labial_vein.n.02} "labial vein" "vena labialis") (new-wordnet-type {superior_labial_vein.n.01} {labial_vein.n.02}) (english {superior_labial_vein.n.01} "superior labial vein" "vena labialis superior") (new-wordnet-type {inferior_labial_vein.n.01} {labial_vein.n.02}) (english {inferior_labial_vein.n.01} "inferior labial vein" "vena labialis inferior") (new-wordnet-type {labial_vein.n.01} {vein.n.01}) (english {labial_vein.n.01} "labial vein" "vena labialis") (new-wordnet-type {venae_labiales_posteriores.n.01} {labial_vein.n.01}) (english {venae_labiales_posteriores.n.01} "venae labiales posteriores" "posterior labial veins") (new-wordnet-type {venae_labiales_anteriores.n.01} {labial_vein.n.01}) (english {venae_labiales_anteriores.n.01} "venae labiales anteriores" "anterior labial veins") (new-wordnet-type {jugular_vein.n.01} {vein.n.01}) (english {jugular_vein.n.01} "jugular vein" "vena jugularis" "jugular") (new-wordnet-type {internal_jugular_vein.n.01} {jugular_vein.n.01}) (english {internal_jugular_vein.n.01} "internal jugular vein") (new-wordnet-type {external_jugular_vein.n.01} {jugular_vein.n.01}) (english {external_jugular_vein.n.01} "external jugular vein") (new-wordnet-type {anterior_jugular_vein.n.01} {jugular_vein.n.01}) (english {anterior_jugular_vein.n.01} "anterior jugular vein") (new-wordnet-type {intervertebral_vein.n.01} {vein.n.01}) (english {intervertebral_vein.n.01} "intervertebral vein" "vena intervertebralis") (new-wordnet-type {intercostal_vein.n.01} {vein.n.01}) (english {intercostal_vein.n.01} "intercostal vein" "vena intercostalis") (new-wordnet-type {intercapitular_vein.n.01} {vein.n.01}) (english {intercapitular_vein.n.01} "intercapitular vein" "vena intercapitalis") (new-wordnet-type {iliolumbar_vein.n.01} {vein.n.01}) (english {iliolumbar_vein.n.01} "iliolumbar vein" "vena iliolumbalis") (new-wordnet-type {iliac_vein.n.01} {vein.n.01}) (english {iliac_vein.n.01} "iliac vein" "vena iliaca") (new-wordnet-type {hypogastric_vein.n.01} {iliac_vein.n.01}) (english {hypogastric_vein.n.01} "hypogastric vein" "internal iliac vein") (new-wordnet-type {external_iliac_vein.n.01} {iliac_vein.n.01}) (english {external_iliac_vein.n.01} "external iliac vein") (new-wordnet-type {common_iliac_vein.n.01} {iliac_vein.n.01}) (english {common_iliac_vein.n.01} "common iliac vein") (new-wordnet-type {ileocolic_vein.n.01} {vein.n.01}) (english {ileocolic_vein.n.01} "ileocolic vein" "vena ileocolica") (new-wordnet-type {hepatic_vein.n.01} {vein.n.01}) (english {hepatic_vein.n.01} "hepatic vein" "vena hepatica") (new-wordnet-type {hemorrhoidal_vein.n.01} {vein.n.01}) (english {hemorrhoidal_vein.n.01} "hemorrhoidal vein" "rectal vein" "vena rectalis") (new-wordnet-type {hemizygos_vein.n.01} {vein.n.01}) (english {hemizygos_vein.n.01} "hemizygos vein" "hemizygous vein" "vena hemizygos") (new-wordnet-type {gluteal_vein.n.01} {vein.n.01}) (english {gluteal_vein.n.01} "gluteal vein" "vena gluteus") (new-wordnet-type {genicular_vein.n.01} {vein.n.01}) (english {genicular_vein.n.01} "genicular vein" "vena genus") (new-wordnet-type {gastroomental_vein.n.01} {vein.n.01}) (english {gastroomental_vein.n.01} "gastroomental vein" "gastroepiploic vein" "vena gastroomentalis") (new-wordnet-type {gastric_vein.n.01} {vein.n.01}) (english {gastric_vein.n.01} "gastric vein" "vena gastrica") (new-wordnet-type {pyloric_vein.n.01} {gastric_vein.n.01}) (english {pyloric_vein.n.01} "pyloric vein" "right gastric vein" "vena gastrica-dextra") (new-wordnet-type {left_gastric_vein.n.01} {gastric_vein.n.01}) (english {left_gastric_vein.n.01} "left gastric vein" "vena gastrica sinistra") (new-wordnet-type {femoral_vein.n.01} {vein.n.01}) (english {femoral_vein.n.01} "femoral vein" "vena femoralis") (new-wordnet-type {facial_vein.n.01} {vein.n.01}) (english {facial_vein.n.01} "facial vein" "vena facialis") (new-wordnet-type {retromandibular_vein.n.01} {facial_vein.n.01}) (english {retromandibular_vein.n.01} "retromandibular vein" "vena retromandibularis" "posterior facial vein") (new-wordnet-type {anterior_facial_vein.n.01} {facial_vein.n.01}) (english {anterior_facial_vein.n.01} "anterior facial vein" "vena facialis anterior") (new-wordnet-type {external_nasal_vein.n.01} {vein.n.01}) (english {external_nasal_vein.n.01} "external nasal vein" "vena nasalis externa") (new-wordnet-type {ethmoidal_vein.n.01} {vein.n.01}) (english {ethmoidal_vein.n.01} "ethmoidal vein" "vena ethmoidalis") (new-wordnet-type {esophageal_veins.n.01} {vein.n.01}) (english {esophageal_veins.n.01} "esophageal veins" "oesophageal veins" "venae esophageae") (new-wordnet-type {epigastric_vein.n.01} {vein.n.01}) (english {epigastric_vein.n.01} "epigastric vein") (new-wordnet-type {superior_epigastric_veins.n.01} {epigastric_vein.n.01}) (english {superior_epigastric_veins.n.01} "superior epigastric veins" "venae epigastricae superiores") (new-wordnet-type {superficial_epigastric_vein.n.01} {epigastric_vein.n.01}) (english {superficial_epigastric_vein.n.01} "superficial epigastric vein" "vena epigastrica superficialis") (new-wordnet-type {inferior_epigastric_vein.n.01} {epigastric_vein.n.01}) (english {inferior_epigastric_vein.n.01} "inferior epigastric vein" "vena epigastrica inferior") (new-wordnet-type {emissary_vein.n.01} {vein.n.01}) (english {emissary_vein.n.01} "emissary vein" "vena emissaria") (new-wordnet-type {dorsal_scapular_vein.n.01} {vein.n.01}) (english {dorsal_scapular_vein.n.01} "dorsal scapular vein" "vena scapularis dorsalis") (new-wordnet-type {diploic_vein.n.01} {vein.n.01}) (english {diploic_vein.n.01} "diploic vein" "vena diploica") (new-wordnet-type {digital_vein.n.01} {vein.n.01}) (english {digital_vein.n.01} "digital vein" "vena digitalis") (new-wordnet-type {cystic_vein.n.01} {vein.n.01}) (english {cystic_vein.n.01} "cystic vein" "vena cystica") (new-wordnet-type {cutaneous_vein.n.01} {vein.n.01}) (english {cutaneous_vein.n.01} "cutaneous vein" "vena cutanea") (new-wordnet-type {costoaxillary_vein.n.01} {vein.n.01}) (english {costoaxillary_vein.n.01} "costoaxillary vein") (new-wordnet-type {conjunctival_veins.n.01} {vein.n.01}) (english {conjunctival_veins.n.01} "conjunctival veins" "venae conjunctivales") (new-wordnet-type {common_facial_vein.n.01} {vein.n.01}) (english {common_facial_vein.n.01} "common facial vein") (new-wordnet-type {colic_vein.n.01} {vein.n.01}) (english {colic_vein.n.01} "colic vein" "vena colica") (new-wordnet-type {clitoral_vein.n.01} {vein.n.01}) (english {clitoral_vein.n.01} "clitoral vein" "vena clitoridis") (new-wordnet-type {venae_profundae_clitoridis.n.01} {clitoral_vein.n.01}) (english {venae_profundae_clitoridis.n.01} "venae profundae clitoridis") (new-wordnet-type {venae_dorsales_clitoridis_superficiales.n.01} {clitoral_vein.n.01}) (english {venae_dorsales_clitoridis_superficiales.n.01} "venae dorsales clitoridis superficiales") (new-wordnet-type {vena_dorsalis_clitoridis_profunda.n.01} {clitoral_vein.n.01}) (english {vena_dorsalis_clitoridis_profunda.n.01} "vena dorsalis clitoridis profunda") (new-wordnet-type {circumflex_vein.n.01} {vein.n.01}) (english {circumflex_vein.n.01} "circumflex vein" "vena circumflexa") (new-wordnet-type {circumflex_iliac_vein.n.01} {circumflex_vein.n.01}) (english {circumflex_iliac_vein.n.01} "circumflex iliac vein" "vena circumflexa ilium") (new-wordnet-type {circumflex_femoral_vein.n.01} {circumflex_vein.n.01}) (english {circumflex_femoral_vein.n.01} "circumflex femoral vein" "vena circumflexus femoris") (new-wordnet-type {ciliary_veins.n.01} {vein.n.01}) (english {ciliary_veins.n.01} "ciliary veins" "venae ciliares") (new-wordnet-type {choroid_vein.n.01} {vein.n.01}) (english {choroid_vein.n.01} "choroid vein" "vena choroidea") (new-wordnet-type {cervical_vein.n.01} {vein.n.01}) (english {cervical_vein.n.01} "cervical vein" "deep cervical vein" "vena cervicalis profunda") (new-wordnet-type {cerebral_vein.n.01} {vein.n.01}) (english {cerebral_vein.n.01} "cerebral vein" "vena cerebri") (new-wordnet-type {superior_cerebral_vein.n.01} {cerebral_vein.n.01}) (english {superior_cerebral_vein.n.01} "superior cerebral vein" "vena cerebrum superior") (new-wordnet-type {middle_cerebral_vein.n.01} {cerebral_vein.n.01}) (english {middle_cerebral_vein.n.01} "middle cerebral vein" "vena cerebri media") (new-wordnet-type {superficial_middle_cerebral_vein.n.01} {middle_cerebral_vein.n.01}) (english {superficial_middle_cerebral_vein.n.01} "superficial middle cerebral vein") (new-wordnet-type {deep_middle_cerebral_vein.n.01} {middle_cerebral_vein.n.01}) (english {deep_middle_cerebral_vein.n.01} "deep middle cerebral vein") (new-wordnet-type {internal_cerebral_vein.n.01} {cerebral_vein.n.01}) (english {internal_cerebral_vein.n.01} "internal cerebral vein" "vena cerebrum internus") (new-wordnet-type {inferior_cerebral_vein.n.01} {cerebral_vein.n.01}) (english {inferior_cerebral_vein.n.01} "inferior cerebral vein" "venae cerebrum inferior") (new-wordnet-type {great_cerebral_vein.n.01} {cerebral_vein.n.01}) (english {great_cerebral_vein.n.01} "great cerebral vein" "vena cerebri magna") (new-wordnet-type {anterior_cerebral_vein.n.01} {cerebral_vein.n.01}) (english {anterior_cerebral_vein.n.01} "anterior cerebral vein" "vena cerebri anterior") (new-wordnet-type {cerebellar_vein.n.01} {vein.n.01}) (english {cerebellar_vein.n.01} "cerebellar vein" "vena cerebellum") (new-wordnet-type {cephalic_vein.n.01} {vein.n.01}) (english {cephalic_vein.n.01} "cephalic vein" "vena cephalica") (new-wordnet-type {central_veins_of_liver.n.01} {vein.n.01}) (english {central_veins_of_liver.n.01} "central veins of liver" "venae centrales hepatis") (new-wordnet-type {central_vein_of_suprarenal_gland.n.01} {vein.n.01}) (english {central_vein_of_suprarenal_gland.n.01} "central vein of suprarenal gland" "vena centralis glandulae suprarenalis") (new-wordnet-type {central_vein_of_retina.n.01} {vein.n.01}) (english {central_vein_of_retina.n.01} "central vein of retina" "vena centrales retinae") (new-wordnet-type {cardinal_vein.n.01} {vein.n.01}) (english {cardinal_vein.n.01} "cardinal vein") (new-wordnet-type {posterior_cardinal_vein.n.01} {cardinal_vein.n.01}) (english {posterior_cardinal_vein.n.01} "posterior cardinal vein") (new-wordnet-type {common_cardinal_vein.n.01} {cardinal_vein.n.01}) (english {common_cardinal_vein.n.01} "common cardinal vein") (new-wordnet-type {anterior_cardinal_vein.n.01} {cardinal_vein.n.01}) (english {anterior_cardinal_vein.n.01} "anterior cardinal vein") (new-wordnet-type {bronchial_vein.n.01} {vein.n.01}) (english {bronchial_vein.n.01} "bronchial vein" "vena bronchialis") (new-wordnet-type {brachiocephalic_vein.n.01} {vein.n.01}) (english {brachiocephalic_vein.n.01} "brachiocephalic vein" "innominate vein" "vena brachiocephalica") (new-wordnet-type {brachial_vein.n.01} {vein.n.01}) (english {brachial_vein.n.01} "brachial vein" "vena brachialis") (new-wordnet-type {basivertebral_vein.n.01} {vein.n.01}) (english {basivertebral_vein.n.01} "basivertebral vein" "vena basivertebralis") (new-wordnet-type {basilic_vein.n.01} {vein.n.01}) (english {basilic_vein.n.01} "basilic vein" "vena basilica") (new-wordnet-type {basal_vein.n.01} {vein.n.01}) (english {basal_vein.n.01} "basal vein" "vena basalis") (new-wordnet-type {azygos_vein.n.01} {vein.n.01}) (english {azygos_vein.n.01} "azygos vein" "azygous vein" "vena azygos") (new-wordnet-type {axillary_vein.n.01} {vein.n.01}) (english {axillary_vein.n.01} "axillary vein" "vena axillaris") (new-wordnet-type {auricular_vein.n.01} {vein.n.01}) (english {auricular_vein.n.01} "auricular vein" "vena auricularis") (new-wordnet-type {arcuate_vein_of_the_kidney.n.01} {vein.n.01}) (english {arcuate_vein_of_the_kidney.n.01} "arcuate vein of the kidney" "vena arcuata renis") (new-wordnet-type {appendicular_vein.n.01} {vein.n.01}) (english {appendicular_vein.n.01} "appendicular vein" "vena appendicularis") (new-wordnet-type {anterior_vertebral_vein.n.01} {vein.n.01}) (english {anterior_vertebral_vein.n.01} "anterior vertebral vein" "vena vertebralis anterior") (new-wordnet-type {angular_vein.n.01} {vein.n.01}) (english {angular_vein.n.01} "angular vein" "vena angularis") (new-wordnet-type {anastomotic_vein.n.01} {vein.n.01}) (english {anastomotic_vein.n.01} "anastomotic vein" "vena anastomotica") (new-wordnet-type {accompanying_vein.n.01} {vein.n.01}) (english {accompanying_vein.n.01} "accompanying vein" "vena comitans") (new-wordnet-type {accessory_vertebral_vein.n.01} {vein.n.01}) (english {accessory_vertebral_vein.n.01} "accessory vertebral vein" "vena vertebralis accessoria") (new-wordnet-type {accessory_hemiazygos_vein.n.01} {vein.n.01}) (english {accessory_hemiazygos_vein.n.01} "accessory hemiazygos vein" "accessory hemiazygous vein" "vena hemiazygos accessoria") (new-wordnet-type {accessory_cephalic_vein.n.01} {vein.n.01}) (english {accessory_cephalic_vein.n.01} "accessory cephalic vein" "vena cephalica accessoria") (new-wordnet-type {vasa_vasorum.n.01} {blood_vessel.n.01}) (english {vasa_vasorum.n.01} "vasa vasorum") (new-wordnet-type {ductus_arteriosus.n.01} {blood_vessel.n.01}) (english {ductus_arteriosus.n.01} "ductus arteriosus") (new-wordnet-type {patent_ductus_arteriosus.n.01} {ductus_arteriosus.n.01}) (english {patent_ductus_arteriosus.n.01} "patent ductus arteriosus") (new-wordnet-type {capillary.n.02} {blood_vessel.n.01}) (english {capillary.n.02} "capillary" "capillary vessel") (new-wordnet-type {tomentum.n.02} {capillary.n.02}) (english {tomentum.n.02} "tomentum" "tomentum cerebri") (new-wordnet-type {glomerulus.n.01} {capillary.n.02}) (english {glomerulus.n.01} "glomerulus") (new-wordnet-type {artery.n.01} {blood_vessel.n.01}) (english {artery.n.01} "artery" "arteria" "arterial blood vessel") (new-wordnet-type {vertebral_artery.n.01} {artery.n.01}) (english {vertebral_artery.n.01} "vertebral artery" "arteria vertebralis") (new-wordnet-type {vaginal_artery.n.01} {artery.n.01}) (english {vaginal_artery.n.01} "vaginal artery" "arteria vaginalis") (new-wordnet-type {uterine_artery.n.01} {artery.n.01}) (english {uterine_artery.n.01} "uterine artery" "arteria uterina") (new-wordnet-type {ulnar_artery.n.01} {artery.n.01}) (english {ulnar_artery.n.01} "ulnar artery" "arteria ulnaris") (new-wordnet-type {testicular_artery.n.01} {artery.n.01}) (english {testicular_artery.n.01} "testicular artery" "internal spermatic artery" "arteria testicularis") (new-wordnet-type {subclavian_artery.n.01} {artery.n.01}) (english {subclavian_artery.n.01} "subclavian artery" "arteria subclavia") (new-wordnet-type {renal_artery.n.01} {artery.n.01}) (english {renal_artery.n.01} "renal artery" "arteria renalis") (new-wordnet-type {rectal_artery.n.01} {artery.n.01}) (english {rectal_artery.n.01} "rectal artery" "arteria rectalis") (new-wordnet-type {radial_artery.n.01} {artery.n.01}) (english {radial_artery.n.01} "radial artery" "arteria radialis") (new-wordnet-type {pulmonary_artery.n.01} {artery.n.01}) (english {pulmonary_artery.n.01} "pulmonary artery" "arteria pulmonalis") (new-wordnet-type {pulmonary_trunk.n.01} {pulmonary_artery.n.01}) (english {pulmonary_trunk.n.01} "pulmonary trunk" "truncus pulmonalis") (new-wordnet-type {pudendal_artery.n.01} {artery.n.01}) (english {pudendal_artery.n.01} "pudendal artery" "arteria pudenda") (new-wordnet-type {popliteal_artery.n.01} {artery.n.01}) (english {popliteal_artery.n.01} "popliteal artery" "arteria poplitea") (new-wordnet-type {perineal_artery.n.01} {artery.n.01}) (english {perineal_artery.n.01} "perineal artery" "arteria perinealis") (new-wordnet-type {pancreatic_artery.n.01} {artery.n.01}) (english {pancreatic_artery.n.01} "pancreatic artery" "arteria pancreatica") (new-wordnet-type {palatine_artery.n.01} {artery.n.01}) (english {palatine_artery.n.01} "palatine artery" "arteria palatina") (new-wordnet-type {ovarian_artery.n.01} {artery.n.01}) (english {ovarian_artery.n.01} "ovarian artery" "arteria ovarica") (new-wordnet-type {ophthalmic_artery.n.01} {artery.n.01}) (english {ophthalmic_artery.n.01} "ophthalmic artery" "arteria ophthalmica") (new-wordnet-type {nutrient_artery.n.01} {artery.n.01}) (english {nutrient_artery.n.01} "nutrient artery" "arteria nutricia") (new-wordnet-type {musculophrenic_artery.n.01} {artery.n.01}) (english {musculophrenic_artery.n.01} "musculophrenic artery" "arteria musculophrenica") (new-wordnet-type {metatarsal_artery.n.01} {artery.n.01}) (english {metatarsal_artery.n.01} "metatarsal artery" "arteria metatarsea") (new-wordnet-type {metacarpal_artery.n.01} {artery.n.01}) (english {metacarpal_artery.n.01} "metacarpal artery" "arteria metacarpea") (new-wordnet-type {mesenteric_artery.n.01} {artery.n.01}) (english {mesenteric_artery.n.01} "mesenteric artery" "arteria mesenterica") (new-wordnet-type {superior_mesenteric_artery.n.01} {mesenteric_artery.n.01}) (english {superior_mesenteric_artery.n.01} "superior mesenteric artery") (new-wordnet-type {inferior_mesenteric_artery.n.01} {mesenteric_artery.n.01}) (english {inferior_mesenteric_artery.n.01} "inferior mesenteric artery") (new-wordnet-type {meningeal_artery.n.01} {artery.n.01}) (english {meningeal_artery.n.01} "meningeal artery" "arteria meningea") (new-wordnet-type {posterior_meningeal_artery.n.01} {meningeal_artery.n.01}) (english {posterior_meningeal_artery.n.01} "posterior meningeal artery") (new-wordnet-type {middle_meningeal_artery.n.01} {meningeal_artery.n.01}) (english {middle_meningeal_artery.n.01} "middle meningeal artery") (new-wordnet-type {anterior_meningeal_artery.n.01} {meningeal_artery.n.01}) (english {anterior_meningeal_artery.n.01} "anterior meningeal artery") (new-wordnet-type {maxillary_artery.n.01} {artery.n.01}) (english {maxillary_artery.n.01} "maxillary artery" "arteria maxillaris") (new-wordnet-type {internal_maxillary_artery.n.01} {maxillary_artery.n.01}) (english {internal_maxillary_artery.n.01} "internal maxillary artery") (new-wordnet-type {facial_artery.n.01} {maxillary_artery.n.01}) (english {facial_artery.n.01} "facial artery" "arteria facialis" "external maxillary artery") (new-wordnet-type {lumbar_artery.n.01} {artery.n.01}) (english {lumbar_artery.n.01} "lumbar artery" "arteria lumbalis") (new-wordnet-type {lingual_artery.n.01} {artery.n.01}) (english {lingual_artery.n.01} "lingual artery" "arteria lingualis") (new-wordnet-type {lienal_artery.n.01} {artery.n.01}) (english {lienal_artery.n.01} "lienal artery" "splenic artery" "arteria lienalis") (new-wordnet-type {laryngeal_artery.n.01} {artery.n.01}) (english {laryngeal_artery.n.01} "laryngeal artery" "arteria laryngea") (new-wordnet-type {lacrimal_artery.n.01} {artery.n.01}) (english {lacrimal_artery.n.01} "lacrimal artery" "arteria lacrimalis") (new-wordnet-type {labyrinthine_artery.n.01} {artery.n.01}) (english {labyrinthine_artery.n.01} "labyrinthine artery" "artery of the labyrinth" "internal auditory artery") (new-wordnet-type {labial_artery.n.01} {artery.n.01}) (english {labial_artery.n.01} "labial artery" "arteria labialis") (new-wordnet-type {superior_labial_artery.n.01} {labial_artery.n.01}) (english {superior_labial_artery.n.01} "superior labial artery" "arteria labialis superior") (new-wordnet-type {inferior_labial_artery.n.01} {labial_artery.n.01}) (english {inferior_labial_artery.n.01} "inferior labial artery" "arteria labialis inferior") (new-wordnet-type {jejunal_artery.n.01} {artery.n.01}) (english {jejunal_artery.n.01} "jejunal artery" "intestinal artery") (new-wordnet-type {intercostal_artery.n.01} {artery.n.01}) (english {intercostal_artery.n.01} "intercostal artery" "arteria intercostalis") (new-wordnet-type {innominate_artery.n.01} {artery.n.01}) (english {innominate_artery.n.01} "innominate artery") (new-wordnet-type {infraorbital_artery.n.01} {artery.n.01}) (english {infraorbital_artery.n.01} "infraorbital artery" "arteria infraorbitalis") (new-wordnet-type {iliolumbar_artery.n.01} {artery.n.01}) (english {iliolumbar_artery.n.01} "iliolumbar artery" "arteria iliolumbalis") (new-wordnet-type {iliac_artery.n.01} {artery.n.01}) (english {iliac_artery.n.01} "iliac artery" "arteria iliaca") (new-wordnet-type {internal_iliac_artery.n.01} {iliac_artery.n.01}) (english {internal_iliac_artery.n.01} "internal iliac artery" "hypogastric artery") (new-wordnet-type {external_iliac_artery.n.01} {iliac_artery.n.01}) (english {external_iliac_artery.n.01} "external iliac artery") (new-wordnet-type {common_iliac_artery.n.01} {iliac_artery.n.01}) (english {common_iliac_artery.n.01} "common iliac artery") (new-wordnet-type {ileocolic_artery.n.01} {artery.n.01}) (english {ileocolic_artery.n.01} "ileocolic artery" "arteria ileocolica") (new-wordnet-type {ileal_artery.n.01} {artery.n.01}) (english {ileal_artery.n.01} "ileal artery" "intestinal artery" "arteria ileum") (new-wordnet-type {hepatic_artery.n.01} {artery.n.01}) (english {hepatic_artery.n.01} "hepatic artery" "arteria hepatica") (new-wordnet-type {gluteal_artery.n.01} {artery.n.01}) (english {gluteal_artery.n.01} "gluteal artery" "arteria glutes") (new-wordnet-type {gastric_artery.n.01} {artery.n.01}) (english {gastric_artery.n.01} "gastric artery" "arteria gastrica") (new-wordnet-type {short_gastric_artery.n.01} {gastric_artery.n.01}) (english {short_gastric_artery.n.01} "short gastric artery" "arteria gastrica breves" "vasa brevis") (new-wordnet-type {right_gastric_artery.n.01} {gastric_artery.n.01}) (english {right_gastric_artery.n.01} "right gastric artery" "ateria gastrica dextra") (new-wordnet-type {left_gastric_artery.n.01} {gastric_artery.n.01}) (english {left_gastric_artery.n.01} "left gastric artery" "arteria gastrica sinistra") (new-wordnet-type {femoral_artery.n.01} {artery.n.01}) (english {femoral_artery.n.01} "femoral artery" "arteria femoralis") (new-wordnet-type {ethmoidal_artery.n.01} {artery.n.01}) (english {ethmoidal_artery.n.01} "ethmoidal artery" "arteria ethmoidalis") (new-wordnet-type {epigastric_artery.n.01} {artery.n.01}) (english {epigastric_artery.n.01} "epigastric artery" "arteria epigastrica") (new-wordnet-type {digital_arteries.n.01} {artery.n.01}) (english {digital_arteries.n.01} "digital arteries" "arteria digitalis") (new-wordnet-type {cystic_artery.n.01} {artery.n.01}) (english {cystic_artery.n.01} "cystic artery" "arteria cystica") (new-wordnet-type {coronary_artery.n.01} {artery.n.01}) (english {coronary_artery.n.01} "coronary artery" "arteria coronaria") (new-wordnet-type {right_coronary_artery.n.01} {coronary_artery.n.01}) (english {right_coronary_artery.n.01} "right coronary artery") (new-wordnet-type {left_coronary_artery.n.01} {coronary_artery.n.01}) (english {left_coronary_artery.n.01} "left coronary artery") (new-wordnet-type {atrial_artery.n.01} {coronary_artery.n.01}) (english {atrial_artery.n.01} "atrial artery") (new-wordnet-type {communicating_artery.n.01} {artery.n.01}) (english {communicating_artery.n.01} "communicating artery" "arteria communicans") (new-wordnet-type {colic_artery.n.01} {artery.n.01}) (english {colic_artery.n.01} "colic artery" "arteria colica") (new-wordnet-type {circumflex_artery.n.01} {artery.n.01}) (english {circumflex_artery.n.01} "circumflex artery") (new-wordnet-type {circumflex_scapular_artery.n.01} {circumflex_artery.n.01}) (english {circumflex_scapular_artery.n.01} "circumflex scapular artery" "arteria circumflexa scapulae") (new-wordnet-type {circumflex_iliac_artery.n.01} {circumflex_artery.n.01}) (english {circumflex_iliac_artery.n.01} "circumflex iliac artery" "arteria circumflexa ilium") (new-wordnet-type {circumflex_humeral_artery.n.01} {circumflex_artery.n.01}) (english {circumflex_humeral_artery.n.01} "circumflex humeral artery" "arteria circumflexa humeri") (new-wordnet-type {circumflex_artery_of_the_thigh.n.01} {circumflex_artery.n.01}) (english {circumflex_artery_of_the_thigh.n.01} "circumflex artery of the thigh" "arteria circumflexa femoris") (new-wordnet-type {circle_of_willis.n.01} {artery.n.01}) (english {circle_of_willis.n.01} "circle of Willis") (new-wordnet-type {ciliary_artery.n.01} {artery.n.01}) (english {ciliary_artery.n.01} "ciliary artery" "arteria ciliaris") (new-wordnet-type {choroidal_artery.n.01} {artery.n.01}) (english {choroidal_artery.n.01} "choroidal artery" "arteria choroidea") (new-wordnet-type {cervical_artery.n.01} {artery.n.01}) (english {cervical_artery.n.01} "cervical artery" "areteria cervicalis") (new-wordnet-type {cerebral_artery.n.01} {artery.n.01}) (english {cerebral_artery.n.01} "cerebral artery" "arteria cerebri") (new-wordnet-type {temporal_artery.n.01} {cerebral_artery.n.01}) (english {temporal_artery.n.01} "temporal artery") (new-wordnet-type {posterior_temporal_artery.n.01} {temporal_artery.n.01}) (english {posterior_temporal_artery.n.01} "posterior temporal artery" "arteria temporalis posterior") (new-wordnet-type {intermediate_temporal_artery.n.01} {temporal_artery.n.01}) (english {intermediate_temporal_artery.n.01} "intermediate temporal artery" "arteria temporalis intermedia") (new-wordnet-type {anterior_temporal_artery.n.01} {temporal_artery.n.01}) (english {anterior_temporal_artery.n.01} "anterior temporal artery" "arteria temporalis anterior") (new-wordnet-type {posterior_cerebral_artery.n.01} {cerebral_artery.n.01}) (english {posterior_cerebral_artery.n.01} "posterior cerebral artery") (new-wordnet-type {middle_cerebral_artery.n.01} {cerebral_artery.n.01}) (english {middle_cerebral_artery.n.01} "middle cerebral artery") (new-wordnet-type {anterior_cerebral_artery.n.01} {cerebral_artery.n.01}) (english {anterior_cerebral_artery.n.01} "anterior cerebral artery") (new-wordnet-type {cerebellar_artery.n.01} {artery.n.01}) (english {cerebellar_artery.n.01} "cerebellar artery" "arteria cerebelli") (new-wordnet-type {superior_cerebellar_artery.n.01} {cerebellar_artery.n.01}) (english {superior_cerebellar_artery.n.01} "superior cerebellar artery") (new-wordnet-type {inferior_cerebellar_artery.n.01} {cerebellar_artery.n.01}) (english {inferior_cerebellar_artery.n.01} "inferior cerebellar artery") (new-wordnet-type {central_artery_of_the_retina.n.01} {artery.n.01}) (english {central_artery_of_the_retina.n.01} "central artery of the retina" "arteria centralis retinae") (new-wordnet-type {celiac_trunk.n.01} {artery.n.01}) (english {celiac_trunk.n.01} "celiac trunk" "celiac artery" "truncus celiacus" "arteria celiaca") (new-wordnet-type {carotid_artery.n.01} {artery.n.01}) (english {carotid_artery.n.01} "carotid artery" "arteria carotis") (new-wordnet-type {internal_carotid_artery.n.01} {carotid_artery.n.01}) (english {internal_carotid_artery.n.01} "internal carotid artery") (new-wordnet-type {external_carotid_artery.n.01} {carotid_artery.n.01}) (english {external_carotid_artery.n.01} "external carotid artery" "external carotid") (new-wordnet-type {common_carotid_artery.n.01} {carotid_artery.n.01}) (english {common_carotid_artery.n.01} "common carotid artery" "common carotid") (new-wordnet-type {buccal_artery.n.01} {artery.n.01}) (english {buccal_artery.n.01} "buccal artery" "arteria buccalis") (new-wordnet-type {bronchial_artery.n.01} {artery.n.01}) (english {bronchial_artery.n.01} "bronchial artery") (new-wordnet-type {brachial_artery.n.01} {artery.n.01}) (english {brachial_artery.n.01} "brachial artery" "arteria brachialis") (new-wordnet-type {basilar_artery.n.01} {artery.n.01}) (english {basilar_artery.n.01} "basilar artery" "arteria basilaris") (new-wordnet-type {axillary_artery.n.01} {artery.n.01}) (english {axillary_artery.n.01} "axillary artery" "arteria axillaris") (new-wordnet-type {auricular_artery.n.01} {artery.n.01}) (english {auricular_artery.n.01} "auricular artery" "arteria auricularis") (new-wordnet-type {ascending_artery.n.01} {artery.n.01}) (english {ascending_artery.n.01} "ascending artery" "arteria ascendens") (new-wordnet-type {artery_of_the_vestibule_bulb.n.01} {artery.n.01}) (english {artery_of_the_vestibule_bulb.n.01} "artery of the vestibule bulb" "arteria bulbi vestibuli") (new-wordnet-type {artery_of_the_penis_bulb.n.01} {artery.n.01}) (english {artery_of_the_penis_bulb.n.01} "artery of the penis bulb" "arteria bulbi penis") (new-wordnet-type {arteriole.n.01} {artery.n.01}) (english {arteriole.n.01} "arteriole" "arteriola" "capillary artery") (new-wordnet-type {arcuate_artery_of_the_kidney.n.01} {artery.n.01}) (english {arcuate_artery_of_the_kidney.n.01} "arcuate artery of the kidney") (new-wordnet-type {arcuate_artery.n.01} {artery.n.01}) (english {arcuate_artery.n.01} "arcuate artery" "arteria arcuata") (new-wordnet-type {appendicular_artery.n.01} {artery.n.01}) (english {appendicular_artery.n.01} "appendicular artery" "arteria appendicularis") (new-wordnet-type {aorta.n.01} {artery.n.01}) (english {aorta.n.01} "aorta") (new-wordnet-type {thoracic_aorta.n.01} {aorta.n.01}) (english {thoracic_aorta.n.01} "thoracic aorta") (new-wordnet-type {descending_aorta.n.01} {aorta.n.01}) (english {descending_aorta.n.01} "descending aorta") (new-wordnet-type {ascending_aorta.n.01} {aorta.n.01}) (english {ascending_aorta.n.01} "ascending aorta") (new-wordnet-type {aortic_arch.n.01} {aorta.n.01}) (english {aortic_arch.n.01} "aortic arch") (new-wordnet-type {abdominal_aorta.n.01} {aorta.n.01}) (english {abdominal_aorta.n.01} "abdominal aorta") (new-wordnet-type {angular_artery.n.01} {artery.n.01}) (english {angular_artery.n.01} "angular artery" "arteria angularis") (new-wordnet-type {alveolar_artery.n.01} {artery.n.01}) (english {alveolar_artery.n.01} "alveolar artery" "arteria alveolaris") (new-wordnet-type {superior_alveolar_artery.n.01} {alveolar_artery.n.01}) (english {superior_alveolar_artery.n.01} "superior alveolar artery" "arteria alveolaris superior") (new-wordnet-type {inferior_alveolar_artery.n.01} {alveolar_artery.n.01}) (english {inferior_alveolar_artery.n.01} "inferior alveolar artery" "arteria alveolaris inferior") (new-wordnet-type {tubule.n.01} {tube.n.04}) (english {tubule.n.01} "tubule") (new-wordnet-type {vasa_efferentia.n.01} {tubule.n.01}) (english {vasa_efferentia.n.01} "vasa efferentia") (new-wordnet-type {uveoscleral_pathway.n.01} {tubule.n.01}) (english {uveoscleral_pathway.n.01} "uveoscleral pathway") (new-wordnet-type {trachea.n.02} {tubule.n.01}) (english {trachea.n.02} "trachea") (new-wordnet-type {seminiferous_tubule.n.01} {tubule.n.01}) (english {seminiferous_tubule.n.01} "seminiferous tubule") (new-wordnet-type {nephron.n.01} {tubule.n.01}) (english {nephron.n.01} "nephron" "uriniferous tubule") (new-wordnet-type {microtubule.n.01} {tubule.n.01}) (english {microtubule.n.01} "microtubule") (new-wordnet-type {salpinx.n.01} {tube.n.04}) (english {salpinx.n.01} "salpinx") (new-wordnet-type {fallopian_tube.n.01} {salpinx.n.01}) (english {fallopian_tube.n.01} "Fallopian tube" "uterine tube" "oviduct") (new-wordnet-type {eustachian_tube.n.01} {salpinx.n.01}) (english {eustachian_tube.n.01} "Eustachian tube" "auditory tube") (new-wordnet-type {cochlea.n.01} {tube.n.04}) (english {cochlea.n.01} "cochlea") (new-wordnet-type {tooth.n.03} {structure.n.04}) (english {tooth.n.03} "tooth") (new-wordnet-type {denticle.n.01} {tooth.n.03}) (english {denticle.n.01} "denticle") (new-wordnet-type {syrinx.n.02} {structure.n.04}) (english {syrinx.n.02} "syrinx") (new-wordnet-type {skeletal_structure.n.01} {structure.n.04}) (english {skeletal_structure.n.01} "skeletal structure") (new-wordnet-type {tarsus.n.01} {skeletal_structure.n.01}) (english {tarsus.n.01} "tarsus") (new-wordnet-type {spinal_column.n.01} {skeletal_structure.n.01}) (english {spinal_column.n.01} "spinal column" "vertebral column" "spine" "backbone" "back" "rachis") (new-wordnet-type {notochord.n.01} {spinal_column.n.01}) (english {notochord.n.01} "notochord") (new-wordnet-type {urochord.n.02} {notochord.n.01}) (english {urochord.n.02} "urochord") (new-wordnet-type {chine.n.02} {spinal_column.n.01}) (english {chine.n.02} "chine") (new-wordnet-type {rib_cage.n.01} {skeletal_structure.n.01}) (english {rib_cage.n.01} "rib cage") (new-wordnet-type {metatarsus.n.01} {skeletal_structure.n.01}) (english {metatarsus.n.01} "metatarsus") (new-wordnet-type {metacarpus.n.01} {skeletal_structure.n.01}) (english {metacarpus.n.01} "metacarpus") (new-wordnet-type {heel.n.02} {skeletal_structure.n.01}) (english {heel.n.02} "heel") (new-wordnet-type {girdle.n.01} {skeletal_structure.n.01}) (english {girdle.n.01} "girdle") (new-wordnet-type {pelvis.n.01} {girdle.n.01}) (english {pelvis.n.01} "pelvis" "pelvic girdle" "pelvic arch" "hip") (new-wordnet-type {pectoral_girdle.n.01} {girdle.n.01}) (english {pectoral_girdle.n.01} "pectoral girdle") (new-wordnet-type {column.n.09} {skeletal_structure.n.01}) (english {column.n.09} "column") (new-wordnet-type {axial_skeleton.n.01} {skeletal_structure.n.01}) (english {axial_skeleton.n.01} "axial skeleton") (new-wordnet-type {arch.n.02} {skeletal_structure.n.01}) (english {arch.n.02} "arch") (new-wordnet-type {shoulder_girdle.n.01} {arch.n.02}) (english {shoulder_girdle.n.01} "shoulder girdle" "pectoral arch") (new-wordnet-type {neural_arch.n.01} {arch.n.02}) (english {neural_arch.n.01} "neural arch" "vertebral arch") (new-wordnet-type {metatarsal_arch.n.01} {arch.n.02}) (english {metatarsal_arch.n.01} "metatarsal arch") (new-wordnet-type {instep.n.01} {arch.n.02}) (english {instep.n.01} "instep") (new-wordnet-type {sunken_arch.n.01} {instep.n.01}) (english {sunken_arch.n.01} "sunken arch" "fallen arch") (new-wordnet-type {hemal_arch.n.01} {arch.n.02}) (english {hemal_arch.n.01} "hemal arch" "haemal arch") (new-wordnet-type {appendicular_skeleton.n.01} {skeletal_structure.n.01}) (english {appendicular_skeleton.n.01} "appendicular skeleton") (new-wordnet-type {rotator_cuff.n.01} {structure.n.04}) (english {rotator_cuff.n.01} "rotator cuff") (new-wordnet-type {root.n.08} {structure.n.04}) (english {root.n.08} "root" "tooth root") (new-wordnet-type {rib.n.05} {structure.n.04}) (english {rib.n.05} "rib") (new-wordnet-type {vein.n.05} {rib.n.05}) (english {vein.n.05} "vein" "nervure") (new-wordnet-type {quill.n.04} {rib.n.05}) (english {quill.n.04} "quill" "calamus" "shaft") (new-wordnet-type {receptor.n.01} {structure.n.04}) (english {receptor.n.01} "receptor") (new-wordnet-type {beta_receptor.n.01} {receptor.n.01}) (english {beta_receptor.n.01} "beta receptor" "beta-adrenergic receptor" "beta-adrenoceptor") (new-wordnet-type {alpha_receptor.n.01} {receptor.n.01}) (english {alpha_receptor.n.01} "alpha receptor" "alpha-adrenergic receptor" "alpha-adrenoceptor") (new-wordnet-type {radicle.n.01} {structure.n.04}) (english {radicle.n.01} "radicle") (new-wordnet-type {plexus.n.01} {structure.n.04}) (english {plexus.n.01} "plexus" "rete") (new-wordnet-type {rete_testis.n.01} {plexus.n.01}) (english {rete_testis.n.01} "rete testis") (new-wordnet-type {pterygoid_plexus.n.01} {plexus.n.01}) (english {pterygoid_plexus.n.01} "pterygoid plexus") (new-wordnet-type {nerve_plexus.n.01} {plexus.n.01}) (english {nerve_plexus.n.01} "nerve plexus") (new-wordnet-type {solar_plexus.n.01} {nerve_plexus.n.01}) (english {solar_plexus.n.01} "solar plexus" "coeliac plexus" "plexus celiacus" "abdominal nerve plexus") (new-wordnet-type {sacral_plexus.n.01} {nerve_plexus.n.01}) (english {sacral_plexus.n.01} "sacral plexus" "plexus sacralis") (new-wordnet-type {pulmonary_plexis.n.01} {nerve_plexus.n.01}) (english {pulmonary_plexis.n.01} "pulmonary plexis" "plexus pulmonalis") (new-wordnet-type {plexus_dentalis.n.01} {nerve_plexus.n.01}) (english {plexus_dentalis.n.01} "plexus dentalis") (new-wordnet-type {periarterial_plexus.n.01} {nerve_plexus.n.01}) (english {periarterial_plexus.n.01} "periarterial plexus" "plexus periarterialis") (new-wordnet-type {myenteric_plexus.n.01} {nerve_plexus.n.01}) (english {myenteric_plexus.n.01} "myenteric plexus" "plexus myentericus") (new-wordnet-type {mesenteric_plexus.n.01} {nerve_plexus.n.01}) (english {mesenteric_plexus.n.01} "mesenteric plexus" "plexus mesentericus") (new-wordnet-type {lumbosacral_plexus.n.01} {nerve_plexus.n.01}) (english {lumbosacral_plexus.n.01} "lumbosacral plexus") (new-wordnet-type {lumbar_plexus.n.02} {nerve_plexus.n.01}) (english {lumbar_plexus.n.02} "lumbar plexus" "plexus lumbalis") (new-wordnet-type {hypogastric_plexus.n.01} {nerve_plexus.n.01}) (english {hypogastric_plexus.n.01} "hypogastric plexus" "plexus hypogastricus") (new-wordnet-type {coccygeal_plexus.n.01} {nerve_plexus.n.01}) (english {coccygeal_plexus.n.01} "coccygeal plexus" "plexus coccygeus") (new-wordnet-type {cervical_plexus.n.01} {nerve_plexus.n.01}) (english {cervical_plexus.n.01} "cervical plexus" "plexus cervicalis") (new-wordnet-type {carotid_plexus.n.01} {nerve_plexus.n.01}) (english {carotid_plexus.n.01} "carotid plexus" "plexus caroticus") (new-wordnet-type {cardiac_plexus.n.01} {nerve_plexus.n.01}) (english {cardiac_plexus.n.01} "cardiac plexus" "plexus cardiacus") (new-wordnet-type {brachial_plexus.n.01} {nerve_plexus.n.01}) (english {brachial_plexus.n.01} "brachial plexus" "plexus brachialis") (new-wordnet-type {autonomic_plexus.n.01} {nerve_plexus.n.01}) (english {autonomic_plexus.n.01} "autonomic plexus" "plexus autonomici") (new-wordnet-type {lumbar_plexus.n.01} {plexus.n.01}) (english {lumbar_plexus.n.01} "lumbar plexus" "plexus lumbalis") (new-wordnet-type {choroid_plexus.n.01} {plexus.n.01}) (english {choroid_plexus.n.01} "choroid plexus" "plexus choroideus") (new-wordnet-type {aortic_plexus.n.01} {plexus.n.01}) (english {aortic_plexus.n.01} "aortic plexus") (new-wordnet-type {plate.n.09} {structure.n.04}) (english {plate.n.09} "plate") (new-wordnet-type {operculum.n.01} {plate.n.09}) (english {operculum.n.01} "operculum") (new-wordnet-type {lamina.n.01} {plate.n.09}) (english {lamina.n.01} "lamina") (new-wordnet-type {lamina_arcus_vertebrae.n.01} {lamina.n.01}) (english {lamina_arcus_vertebrae.n.01} "lamina arcus vertebrae") (new-wordnet-type {frill.n.01} {plate.n.09}) (english {frill.n.01} "frill") (new-wordnet-type {comb.n.04} {plate.n.09}) (english {comb.n.04} "comb") (new-wordnet-type {peristome.n.02} {structure.n.04}) (english {peristome.n.02} "peristome") (new-wordnet-type {passage.n.07} {structure.n.04}) (english {passage.n.07} "passage" "passageway") (new-wordnet-type {sinusoid.n.01} {passage.n.07}) (english {sinusoid.n.01} "sinusoid") (new-wordnet-type {shunt.n.01} {passage.n.07}) (english {shunt.n.01} "shunt") (new-wordnet-type {portacaval_shunt.n.01} {shunt.n.01}) (english {portacaval_shunt.n.01} "portacaval shunt") (new-wordnet-type {bypass.n.02} {shunt.n.01}) (english {bypass.n.02} "bypass") (new-wordnet-type {root_canal.n.01} {passage.n.07}) (english {root_canal.n.01} "root canal") (new-wordnet-type {orifice.n.01} {passage.n.07}) (english {orifice.n.01} "orifice" "opening" "porta") (new-wordnet-type {vent.n.02} {orifice.n.01}) (english {vent.n.02} "vent") (new-wordnet-type {urethral_orifice.n.01} {orifice.n.01}) (english {urethral_orifice.n.01} "urethral orifice" "external orifice") (new-wordnet-type {stoma.n.02} {orifice.n.01}) (english {stoma.n.02} "stoma") (new-wordnet-type {spiracle.n.01} {orifice.n.01}) (english {spiracle.n.01} "spiracle") (new-wordnet-type {stigma.n.03} {spiracle.n.01}) (english {stigma.n.03} "stigma") (new-wordnet-type {blowhole.n.01} {spiracle.n.01}) (english {blowhole.n.01} "blowhole") (new-wordnet-type {rima.n.01} {orifice.n.01}) (english {rima.n.01} "rima") (new-wordnet-type {rima_vestibuli.n.01} {rima.n.01}) (english {rima_vestibuli.n.01} "rima vestibuli" "rima respiratoria" "false glottis" "glottis spuria") (new-wordnet-type {rima_glottidis.n.01} {rima.n.01}) (english {rima_glottidis.n.01} "rima glottidis" "rima vocalis" "true glottis" "glottis vera") (new-wordnet-type {pudendal_cleft.n.01} {rima.n.01}) (english {pudendal_cleft.n.01} "pudendal cleft" "urogenital cleft" "rima pudendi" "rima vulvae" "pudendal cleavage" "pudendal slit" "vulvar slit") (new-wordnet-type {mouth.n.01} {rima.n.01}) (english {mouth.n.01} "mouth" "oral cavity" "oral fissure" "rima oris") (new-wordnet-type {trap.n.06} {mouth.n.01}) (english {trap.n.06} "trap" "cakehole" "hole" "maw" "yap" "gob") (new-wordnet-type {pylorus.n.01} {orifice.n.01}) (english {pylorus.n.01} "pylorus") (new-wordnet-type {porta_hepatis.n.01} {orifice.n.01}) (english {porta_hepatis.n.01} "porta hepatis") (new-wordnet-type {os.n.01} {orifice.n.01}) (english {os.n.01} "os") (new-wordnet-type {naris.n.01} {orifice.n.01}) (english {naris.n.01} "naris") (new-wordnet-type {posterior_naris.n.01} {naris.n.01}) (english {posterior_naris.n.01} "posterior naris") (new-wordnet-type {nostril.n.01} {naris.n.01}) (english {nostril.n.01} "nostril" "anterior naris") (new-wordnet-type {mouth.n.02} {orifice.n.01}) (english {mouth.n.02} "mouth") (new-wordnet-type {cytostome.n.01} {mouth.n.02}) (english {cytostome.n.01} "cytostome") (new-wordnet-type {beak.n.02} {mouth.n.02}) (english {beak.n.02} "beak" "bill" "neb" "nib" "pecker") (new-wordnet-type {cere.n.01} {beak.n.02}) (english {cere.n.01} "cere") (new-wordnet-type {beak.n.01} {mouth.n.02}) (english {beak.n.01} "beak") (new-wordnet-type {introitus.n.01} {orifice.n.01}) (english {introitus.n.01} "introitus") (new-wordnet-type {fontanelle.n.01} {orifice.n.01}) (english {fontanelle.n.01} "fontanelle" "fontanel" "soft spot") (new-wordnet-type {sphenoid_fontanelle.n.01} {fontanelle.n.01}) (english {sphenoid_fontanelle.n.01} "sphenoid fontanelle" "sphenoid fontanel" "sphenoidal fontanelle" "sphenoidal fontanel") (new-wordnet-type {anterior_fontanelle.n.01} {fontanelle.n.01}) (english {anterior_fontanelle.n.01} "anterior fontanelle") (new-wordnet-type {fenestra.n.01} {orifice.n.01}) (english {fenestra.n.01} "fenestra") (new-wordnet-type {fenestra_rotunda.n.01} {fenestra.n.01}) (english {fenestra_rotunda.n.01} "fenestra rotunda" "fenestra cochleae" "round window" "fenestra of the cochlea") (new-wordnet-type {fenestra_ovalis.n.01} {fenestra.n.01}) (english {fenestra_ovalis.n.01} "fenestra ovalis" "fenestra vestibuli" "oval window" "fenestra of the vestibule") (new-wordnet-type {cervix.n.02} {orifice.n.01}) (english {cervix.n.02} "cervix" "uterine cervix" "cervix uteri") (new-wordnet-type {incompetent_cervix.n.01} {cervix.n.02}) (english {incompetent_cervix.n.01} "incompetent cervix") (new-wordnet-type {cardia.n.01} {orifice.n.01}) (english {cardia.n.01} "cardia") (new-wordnet-type {blastopore.n.01} {orifice.n.01}) (english {blastopore.n.01} "blastopore") (new-wordnet-type {aortic_orifice.n.01} {orifice.n.01}) (english {aortic_orifice.n.01} "aortic orifice") (new-wordnet-type {anus.n.01} {orifice.n.01}) (english {anus.n.01} "anus") (new-wordnet-type {imperforate_anus.n.01} {anus.n.01}) (english {imperforate_anus.n.01} "imperforate anus") (new-wordnet-type {arse.n.02} {anus.n.01}) (english {arse.n.02} "arse" "arsehole" "asshole" "bunghole") (new-wordnet-type {meatus.n.01} {passage.n.07}) (english {meatus.n.01} "meatus") (new-wordnet-type {nasal_meatus.n.01} {meatus.n.01}) (english {nasal_meatus.n.01} "nasal meatus") (new-wordnet-type {auditory_meatus.n.01} {meatus.n.01}) (english {auditory_meatus.n.01} "auditory meatus" "acoustic meatus" "ear canal" "auditory canal" "external auditory canal") (new-wordnet-type {fistula.n.02} {passage.n.07}) (english {fistula.n.02} "fistula" "sinus") (new-wordnet-type {fauces.n.01} {passage.n.07}) (english {fauces.n.01} "fauces") (new-wordnet-type {esophagus.n.01} {passage.n.07}) (english {esophagus.n.01} "esophagus" "oesophagus" "gorge" "gullet") (new-wordnet-type {epicardia.n.01} {passage.n.07}) (english {epicardia.n.01} "epicardia") (new-wordnet-type {duct.n.01} {passage.n.07}) (english {duct.n.01} "duct" "epithelial duct" "canal" "channel") (new-wordnet-type {venous_sinus.n.01} {duct.n.01}) (english {venous_sinus.n.01} "venous sinus" "sinus") (new-wordnet-type {transverse_sinus.n.01} {venous_sinus.n.01}) (english {transverse_sinus.n.01} "transverse sinus" "sinus transversus") (new-wordnet-type {straight_sinus.n.01} {venous_sinus.n.01}) (english {straight_sinus.n.01} "straight sinus" "tentorial sinus" "sinus rectus") (new-wordnet-type {sigmoid_sinus.n.01} {venous_sinus.n.01}) (english {sigmoid_sinus.n.01} "sigmoid sinus" "sinus sigmoideus") (new-wordnet-type {coronary_sinus.n.01} {venous_sinus.n.01}) (english {coronary_sinus.n.01} "coronary sinus" "sinus coronarius") (new-wordnet-type {cavernous_sinus.n.01} {venous_sinus.n.01}) (english {cavernous_sinus.n.01} "cavernous sinus" "sinus cavernosus") (new-wordnet-type {vas_deferens.n.01} {duct.n.01}) (english {vas_deferens.n.01} "vas deferens" "ductus deferens") (new-wordnet-type {vagina.n.01} {duct.n.01}) (english {vagina.n.01} "vagina") (new-wordnet-type {urethra.n.01} {duct.n.01}) (english {urethra.n.01} "urethra") (new-wordnet-type {ureter.n.01} {duct.n.01}) (english {ureter.n.01} "ureter") (new-wordnet-type {umbilical_cord.n.01} {duct.n.01}) (english {umbilical_cord.n.01} "umbilical cord" "umbilical") (new-wordnet-type {spinal_canal.n.01} {duct.n.01}) (english {spinal_canal.n.01} "spinal canal" "vertebral canal" "canalis vertebralis") (new-wordnet-type {seminal_duct.n.01} {duct.n.01}) (english {seminal_duct.n.01} "seminal duct") (new-wordnet-type {salivary_duct.n.01} {duct.n.01}) (english {salivary_duct.n.01} "salivary duct") (new-wordnet-type {pore.n.02} {duct.n.01}) (english {pore.n.02} "pore") (new-wordnet-type {ostiole.n.01} {pore.n.02}) (english {ostiole.n.01} "ostiole") (new-wordnet-type {pancreatic_duct.n.01} {duct.n.01}) (english {pancreatic_duct.n.01} "pancreatic duct") (new-wordnet-type {nasolacrimal_duct.n.01} {duct.n.01}) (english {nasolacrimal_duct.n.01} "nasolacrimal duct") (new-wordnet-type {lymph_vessel.n.01} {duct.n.01}) (english {lymph_vessel.n.01} "lymph vessel" "lymphatic vessel") (new-wordnet-type {thoracic_duct.n.01} {lymph_vessel.n.01}) (english {thoracic_duct.n.01} "thoracic duct") (new-wordnet-type {lacteal.n.01} {lymph_vessel.n.01}) (english {lacteal.n.01} "lacteal") (new-wordnet-type {lactiferous_duct.n.01} {duct.n.01}) (english {lactiferous_duct.n.01} "lactiferous duct") (new-wordnet-type {lacrimal_duct.n.01} {duct.n.01}) (english {lacrimal_duct.n.01} "lacrimal duct" "lachrymal duct" "tear duct") (new-wordnet-type {inguinal_canal.n.01} {duct.n.01}) (english {inguinal_canal.n.01} "inguinal canal" "canalis inguinalis") (new-wordnet-type {hepatic_duct.n.01} {duct.n.01}) (english {hepatic_duct.n.01} "hepatic duct") (new-wordnet-type {haversian_canal.n.01} {duct.n.01}) (english {haversian_canal.n.01} "Haversian canal") (new-wordnet-type {epididymis.n.01} {duct.n.01}) (english {epididymis.n.01} "epididymis") (new-wordnet-type {ejaculatory_duct.n.01} {duct.n.01}) (english {ejaculatory_duct.n.01} "ejaculatory duct") (new-wordnet-type {ductule.n.01} {duct.n.01}) (english {ductule.n.01} "ductule" "ductulus") (new-wordnet-type {sweat_duct.n.01} {ductule.n.01}) (english {sweat_duct.n.01} "sweat duct") (new-wordnet-type {biliary_ductule.n.01} {ductule.n.01}) (english {biliary_ductule.n.01} "biliary ductule") (new-wordnet-type {common_bile_duct.n.01} {duct.n.01}) (english {common_bile_duct.n.01} "common bile duct" "bile duct") (new-wordnet-type {cervical_canal.n.01} {duct.n.01}) (english {cervical_canal.n.01} "cervical canal" "canalis cervicis uteri") (new-wordnet-type {cerebral_aqueduct.n.01} {duct.n.01}) (english {cerebral_aqueduct.n.01} "cerebral aqueduct" "Sylvian aqueduct" "aqueductus cerebri") (new-wordnet-type {cartilaginous_tube.n.01} {duct.n.01}) (english {cartilaginous_tube.n.01} "cartilaginous tube") (new-wordnet-type {trachea.n.01} {cartilaginous_tube.n.01}) (english {trachea.n.01} "trachea" "windpipe") (new-wordnet-type {bronchus.n.01} {cartilaginous_tube.n.01}) (english {bronchus.n.01} "bronchus" "bronchial tube") (new-wordnet-type {canaliculus.n.01} {duct.n.01}) (english {canaliculus.n.01} "canaliculus") (new-wordnet-type {canal_of_schlemm.n.01} {duct.n.01}) (english {canal_of_schlemm.n.01} "canal of Schlemm" "Schlemm's canal" "sinus venosus sclerae") (new-wordnet-type {bronchiole.n.01} {duct.n.01}) (english {bronchiole.n.01} "bronchiole") (new-wordnet-type {alimentary_canal.n.01} {duct.n.01}) (english {alimentary_canal.n.01} "alimentary canal" "alimentary tract" "digestive tube" "digestive tract" "gastrointestinal tract" "GI tract") (new-wordnet-type {enteron.n.01} {alimentary_canal.n.01}) (english {enteron.n.01} "enteron") (new-wordnet-type {carpal_tunnel.n.01} {passage.n.07}) (english {carpal_tunnel.n.01} "carpal tunnel") (new-wordnet-type {birth_canal.n.01} {passage.n.07}) (english {birth_canal.n.01} "birth canal") (new-wordnet-type {pad.n.07} {structure.n.04}) (english {pad.n.07} "pad") (new-wordnet-type {nucleolus_organizer.n.01} {structure.n.04}) (english {nucleolus_organizer.n.01} "nucleolus organizer" "nucleolus organiser" "nucleolar organizer" "nucleolar organiser") (new-wordnet-type {neural_structure.n.01} {structure.n.04}) (english {neural_structure.n.01} "neural structure") (new-wordnet-type {vermis.n.01} {neural_structure.n.01}) (english {vermis.n.01} "vermis" "vermis cerebelli") (new-wordnet-type {thalamus.n.01} {neural_structure.n.01}) (english {thalamus.n.01} "thalamus") (new-wordnet-type {telencephalon.n.01} {neural_structure.n.01}) (english {telencephalon.n.01} "telencephalon") (new-wordnet-type {subthalamus.n.01} {neural_structure.n.01}) (english {subthalamus.n.01} "subthalamus") (new-wordnet-type {substantia_nigra.n.01} {neural_structure.n.01}) (english {substantia_nigra.n.01} "substantia nigra" "nucleus niger" "locus niger") (new-wordnet-type {spinal_cord.n.01} {neural_structure.n.01}) (english {spinal_cord.n.01} "spinal cord" "medulla spinalis") (new-wordnet-type {reflex_arc.n.01} {neural_structure.n.01}) (english {reflex_arc.n.01} "reflex arc") (new-wordnet-type {radiation.n.06} {neural_structure.n.01}) (english {radiation.n.06} "radiation") (new-wordnet-type {pyriform_area.n.01} {neural_structure.n.01}) (english {pyriform_area.n.01} "pyriform area" "piriform area" "pyriform lobe" "piriform lobe") (new-wordnet-type {pons.n.02} {neural_structure.n.01}) (english {pons.n.02} "pons" "pons Varolii") (new-wordnet-type {paleocerebellum.n.01} {neural_structure.n.01}) (english {paleocerebellum.n.01} "paleocerebellum") (new-wordnet-type {paleencephalon.n.01} {neural_structure.n.01}) (english {paleencephalon.n.01} "paleencephalon" "paleoencephalon" "palaeencephalon") (new-wordnet-type {olfactory_bulb.n.01} {neural_structure.n.01}) (english {olfactory_bulb.n.01} "olfactory bulb") (new-wordnet-type {nucleus.n.05} {neural_structure.n.01}) (english {nucleus.n.05} "nucleus") (new-wordnet-type {dentate_nucleus.n.01} {nucleus.n.05}) (english {dentate_nucleus.n.01} "dentate nucleus") (new-wordnet-type {neencephalon.n.01} {neural_structure.n.01}) (english {neencephalon.n.01} "neencephalon" "neoencephalon") (new-wordnet-type {myelencephalon.n.01} {neural_structure.n.01}) (english {myelencephalon.n.01} "myelencephalon") (new-wordnet-type {midbrain.n.01} {neural_structure.n.01}) (english {midbrain.n.01} "midbrain" "mesencephalon") (new-wordnet-type {medulla_oblongata.n.01} {neural_structure.n.01}) (english {medulla_oblongata.n.01} "medulla oblongata" "medulla" "bulb") (new-wordnet-type {mamillary_body.n.01} {neural_structure.n.01}) (english {mamillary_body.n.01} "mamillary body" "mammillary body" "corpus mamillare") (new-wordnet-type {limbic_system.n.01} {neural_structure.n.01}) (english {limbic_system.n.01} "limbic system" "visceral brain" "limbic brain") (new-wordnet-type {hypothalamus.n.01} {neural_structure.n.01}) (english {hypothalamus.n.01} "hypothalamus") (new-wordnet-type {hippocampus.n.01} {neural_structure.n.01}) (english {hippocampus.n.01} "hippocampus") (new-wordnet-type {hindbrain.n.01} {neural_structure.n.01}) (english {hindbrain.n.01} "hindbrain" "rhombencephalon") (new-wordnet-type {metencephalon.n.01} {hindbrain.n.01}) (english {metencephalon.n.01} "metencephalon") (new-wordnet-type {hemisphere.n.03} {neural_structure.n.01}) (english {hemisphere.n.03} "hemisphere" "cerebral hemisphere") (new-wordnet-type {right_hemisphere.n.01} {hemisphere.n.03}) (english {right_hemisphere.n.01} "right hemisphere" "right brain") (new-wordnet-type {left_hemisphere.n.01} {hemisphere.n.03}) (english {left_hemisphere.n.01} "left hemisphere" "left brain") (new-wordnet-type {geniculate_body.n.01} {neural_structure.n.01}) (english {geniculate_body.n.01} "geniculate body") (new-wordnet-type {medial_geniculate_body.n.01} {geniculate_body.n.01}) (english {medial_geniculate_body.n.01} "medial geniculate body" "corpus geniculatum mediale" "medial geniculate") (new-wordnet-type {lateral_geniculate_body.n.01} {geniculate_body.n.01}) (english {lateral_geniculate_body.n.01} "lateral geniculate body" "corpus geniculatum laterale" "lateral geniculate") (new-wordnet-type {ganglion.n.01} {neural_structure.n.01}) (english {ganglion.n.01} "ganglion") (new-wordnet-type {basal_ganglion.n.01} {ganglion.n.01}) (english {basal_ganglion.n.01} "basal ganglion") (new-wordnet-type {putamen.n.01} {basal_ganglion.n.01}) (english {putamen.n.01} "putamen") (new-wordnet-type {pallidum.n.01} {basal_ganglion.n.01}) (english {pallidum.n.01} "pallidum" "globus pallidus" "paleostriatum") (new-wordnet-type {lenticular_nucleus.n.01} {basal_ganglion.n.01}) (english {lenticular_nucleus.n.01} "lenticular nucleus" "lentiform nucleus") (new-wordnet-type {corpus_striatum.n.01} {basal_ganglion.n.01}) (english {corpus_striatum.n.01} "corpus striatum" "striatum" "striate body") (new-wordnet-type {claustrum.n.01} {basal_ganglion.n.01}) (english {claustrum.n.01} "claustrum") (new-wordnet-type {caudate_nucleus.n.01} {basal_ganglion.n.01}) (english {caudate_nucleus.n.01} "caudate nucleus" "caudate") (new-wordnet-type {amygdala.n.01} {basal_ganglion.n.01}) (english {amygdala.n.01} "amygdala" "amygdaloid nucleus" "corpus amygdaloideum") (new-wordnet-type {autonomic_ganglion.n.01} {ganglion.n.01}) (english {autonomic_ganglion.n.01} "autonomic ganglion") (new-wordnet-type {otic_ganglion.n.01} {autonomic_ganglion.n.01}) (english {otic_ganglion.n.01} "otic ganglion" "otoganglion") (new-wordnet-type {forebrain.n.01} {neural_structure.n.01}) (english {forebrain.n.01} "forebrain" "prosencephalon") (new-wordnet-type {diencephalon.n.01} {neural_structure.n.01}) (english {diencephalon.n.01} "diencephalon" "interbrain" "betweenbrain" "thalmencephalon") (new-wordnet-type {cingulate_gyrus.n.01} {neural_structure.n.01}) (english {cingulate_gyrus.n.01} "cingulate gyrus" "gyrus cinguli") (new-wordnet-type {cerebrum.n.01} {neural_structure.n.01}) (english {cerebrum.n.01} "cerebrum") (new-wordnet-type {cerebral_cortex.n.01} {neural_structure.n.01}) (english {cerebral_cortex.n.01} "cerebral cortex" "cerebral mantle" "pallium" "cortex") (new-wordnet-type {neopallium.n.01} {cerebral_cortex.n.01}) (english {neopallium.n.01} "neopallium" "neocortex") (new-wordnet-type {archipallium.n.01} {cerebral_cortex.n.01}) (english {archipallium.n.01} "archipallium" "paleocortex") (new-wordnet-type {cerebellum.n.01} {neural_structure.n.01}) (english {cerebellum.n.01} "cerebellum") (new-wordnet-type {cerebellar_hemisphere.n.01} {neural_structure.n.01}) (english {cerebellar_hemisphere.n.01} "cerebellar hemisphere") (new-wordnet-type {center.n.07} {neural_structure.n.01}) (english {center.n.07} "center" "centre" "nerve center" "nerve centre") (new-wordnet-type {wernicke's_area.n.01} {center.n.07}) (english {wernicke's_area.n.01} "Wernicke's area" "Wernicke's center") (new-wordnet-type {superior_colliculus.n.01} {center.n.07}) (english {superior_colliculus.n.01} "superior colliculus") (new-wordnet-type {rhinencephalon.n.01} {center.n.07}) (english {rhinencephalon.n.01} "rhinencephalon" "olfactory brain") (new-wordnet-type {respiratory_center.n.01} {center.n.07}) (english {respiratory_center.n.01} "respiratory center") (new-wordnet-type {inferior_colliculus.n.01} {center.n.07}) (english {inferior_colliculus.n.01} "inferior colliculus") (new-wordnet-type {broca's_area.n.01} {center.n.07}) (english {broca's_area.n.01} "Broca's area" "Broca's center" "Broca's gyrus" "Broca's convolution" "convolution of Broca") (new-wordnet-type {auditory_center.n.01} {center.n.07}) (english {auditory_center.n.01} "auditory center") (new-wordnet-type {brainstem.n.01} {neural_structure.n.01}) (english {brainstem.n.01} "brainstem" "brain-stem" "brain stem") (new-wordnet-type {brain.n.01} {neural_structure.n.01}) (english {brain.n.01} "brain" "encephalon") (new-wordnet-type {autonomic_nervous_system.n.01} {neural_structure.n.01}) (english {autonomic_nervous_system.n.01} "autonomic nervous system" "ANS") (new-wordnet-type {membranous_labyrinth.n.01} {structure.n.04}) (english {membranous_labyrinth.n.01} "membranous labyrinth") (new-wordnet-type {limbus.n.01} {structure.n.04}) (english {limbus.n.01} "limbus") (new-wordnet-type {lens_nucleus.n.01} {structure.n.04}) (english {lens_nucleus.n.01} "lens nucleus" "nucleus") (new-wordnet-type {layer.n.05} {structure.n.04}) (english {layer.n.05} "layer") (new-wordnet-type {hypodermis.n.01} {layer.n.05}) (english {hypodermis.n.01} "hypodermis") (new-wordnet-type {blastoderm.n.01} {layer.n.05}) (english {blastoderm.n.01} "blastoderm" "germinal disc" "blastodisc" "germinal area") (new-wordnet-type {landmark.n.04} {structure.n.04}) (english {landmark.n.04} "landmark") (new-wordnet-type {craniometric_point.n.01} {landmark.n.04}) (english {craniometric_point.n.01} "craniometric point") (new-wordnet-type {symphysion.n.01} {craniometric_point.n.01}) (english {symphysion.n.01} "symphysion") (new-wordnet-type {stephanion.n.01} {craniometric_point.n.01}) (english {stephanion.n.01} "stephanion") (new-wordnet-type {sphenion.n.01} {craniometric_point.n.01}) (english {sphenion.n.01} "sphenion") (new-wordnet-type {rhinion.n.01} {craniometric_point.n.01}) (english {rhinion.n.01} "rhinion") (new-wordnet-type {pterion.n.01} {craniometric_point.n.01}) (english {pterion.n.01} "pterion") (new-wordnet-type {prosthion.n.01} {craniometric_point.n.01}) (english {prosthion.n.01} "prosthion" "prostheon" "alveolar point") (new-wordnet-type {pogonion.n.01} {craniometric_point.n.01}) (english {pogonion.n.01} "pogonion") (new-wordnet-type {orbitale.n.01} {craniometric_point.n.01}) (english {orbitale.n.01} "orbitale" "orbital point") (new-wordnet-type {ophryon.n.01} {craniometric_point.n.01}) (english {ophryon.n.01} "ophryon") (new-wordnet-type {obelion.n.01} {craniometric_point.n.01}) (english {obelion.n.01} "obelion") (new-wordnet-type {nasion.n.01} {craniometric_point.n.01}) (english {nasion.n.01} "nasion") (new-wordnet-type {metopion.n.01} {craniometric_point.n.01}) (english {metopion.n.01} "metopion") (new-wordnet-type {mastoidale.n.01} {craniometric_point.n.01}) (english {mastoidale.n.01} "mastoidale") (new-wordnet-type {lambda.n.02} {craniometric_point.n.01}) (english {lambda.n.02} "lambda") (new-wordnet-type {jugale.n.01} {craniometric_point.n.01}) (english {jugale.n.01} "jugale" "jugal point") (new-wordnet-type {inion.n.01} {craniometric_point.n.01}) (english {inion.n.01} "inion") (new-wordnet-type {gonion.n.01} {craniometric_point.n.01}) (english {gonion.n.01} "gonion") (new-wordnet-type {gnathion.n.01} {craniometric_point.n.01}) (english {gnathion.n.01} "gnathion") (new-wordnet-type {glabella.n.01} {craniometric_point.n.01}) (english {glabella.n.01} "glabella" "mesophyron") (new-wordnet-type {entomion.n.01} {craniometric_point.n.01}) (english {entomion.n.01} "entomion") (new-wordnet-type {dacryon.n.01} {craniometric_point.n.01}) (english {dacryon.n.01} "dacryon") (new-wordnet-type {crotaphion.n.01} {craniometric_point.n.01}) (english {crotaphion.n.01} "crotaphion") (new-wordnet-type {coronion.n.01} {craniometric_point.n.01}) (english {coronion.n.01} "coronion") (new-wordnet-type {condylion.n.01} {craniometric_point.n.01}) (english {condylion.n.01} "condylion") (new-wordnet-type {bregma.n.01} {craniometric_point.n.01}) (english {bregma.n.01} "bregma") (new-wordnet-type {auriculare.n.01} {craniometric_point.n.01}) (english {auriculare.n.01} "auriculare" "auricular point") (new-wordnet-type {asterion.n.01} {craniometric_point.n.01}) (english {asterion.n.01} "asterion") (new-wordnet-type {acanthion.n.01} {craniometric_point.n.01}) (english {acanthion.n.01} "acanthion") (new-wordnet-type {lacrimal_apparatus.n.01} {structure.n.04}) (english {lacrimal_apparatus.n.01} "lacrimal apparatus") (new-wordnet-type {interstice.n.01} {structure.n.04}) (english {interstice.n.01} "interstice") (new-wordnet-type {areola.n.01} {interstice.n.01}) (english {areola.n.01} "areola") (new-wordnet-type {infundibulum.n.01} {structure.n.04}) (english {infundibulum.n.01} "infundibulum") (new-wordnet-type {hypophyseal_stalk.n.01} {infundibulum.n.01}) (english {hypophyseal_stalk.n.01} "hypophyseal stalk") (new-wordnet-type {horny_structure.n.01} {structure.n.04}) (english {horny_structure.n.01} "horny structure" "unguis") (new-wordnet-type {nail.n.01} {horny_structure.n.01}) (english {nail.n.01} "nail") (new-wordnet-type {toenail.n.01} {nail.n.01}) (english {toenail.n.01} "toenail") (new-wordnet-type {ingrown_toenail.n.01} {toenail.n.01}) (english {ingrown_toenail.n.01} "ingrown toenail" "onyxis") (new-wordnet-type {fingernail.n.01} {nail.n.01}) (english {fingernail.n.01} "fingernail") (new-wordnet-type {thumbnail.n.01} {fingernail.n.01}) (english {thumbnail.n.01} "thumbnail") (new-wordnet-type {hoof.n.02} {horny_structure.n.01}) (english {hoof.n.02} "hoof") (new-wordnet-type {claw.n.01} {horny_structure.n.01}) (english {claw.n.01} "claw") (new-wordnet-type {talon.n.01} {claw.n.01}) (english {talon.n.01} "talon") (new-wordnet-type {bear_claw.n.03} {claw.n.01}) (english {bear_claw.n.03} "bear claw") (new-wordnet-type {head.n.26} {structure.n.04}) (english {head.n.26} "head") (new-wordnet-type {head.n.25} {structure.n.04}) (english {head.n.25} "head") (new-wordnet-type {gyrus.n.01} {structure.n.04}) (english {gyrus.n.01} "gyrus" "convolution") (new-wordnet-type {temporal_gyrus.n.01} {gyrus.n.01}) (english {temporal_gyrus.n.01} "temporal gyrus") (new-wordnet-type {parietal_gyrus.n.01} {gyrus.n.01}) (english {parietal_gyrus.n.01} "parietal gyrus") (new-wordnet-type {occipital_gyrus.n.01} {gyrus.n.01}) (english {occipital_gyrus.n.01} "occipital gyrus") (new-wordnet-type {frontal_gyrus.n.01} {gyrus.n.01}) (english {frontal_gyrus.n.01} "frontal gyrus") (new-wordnet-type {central_gyrus.n.01} {gyrus.n.01}) (english {central_gyrus.n.01} "central gyrus") (new-wordnet-type {precentral_gyrus.n.01} {central_gyrus.n.01}) (english {precentral_gyrus.n.01} "precentral gyrus") (new-wordnet-type {postcentral_gyrus.n.01} {central_gyrus.n.01}) (english {postcentral_gyrus.n.01} "postcentral gyrus") (new-wordnet-type {glans.n.01} {structure.n.04}) (english {glans.n.01} "glans") (new-wordnet-type {glans_penis.n.01} {glans.n.01}) (english {glans_penis.n.01} "glans penis") (new-wordnet-type {glans_clitoridis.n.01} {glans.n.01}) (english {glans_clitoridis.n.01} "glans clitoridis") (new-wordnet-type {gill_slit.n.01} {structure.n.04}) (english {gill_slit.n.01} "gill slit" "branchial cleft" "gill cleft") (new-wordnet-type {gill_arch.n.01} {structure.n.04}) (english {gill_arch.n.01} "gill arch" "branchial arch" "gill bar") (new-wordnet-type {germ.n.02} {structure.n.04}) (english {germ.n.02} "germ") (new-wordnet-type {funiculus.n.02} {structure.n.04}) (english {funiculus.n.02} "funiculus") (new-wordnet-type {umbilical_cord.n.01} {funiculus.n.02}) (english {umbilical_cord.n.01} "umbilical cord" "umbilical") (new-wordnet-type {spinal_cord.n.01} {funiculus.n.02}) (english {spinal_cord.n.01} "spinal cord" "medulla spinalis") (new-wordnet-type {spermatic_cord.n.01} {funiculus.n.02}) (english {spermatic_cord.n.01} "spermatic cord") (new-wordnet-type {fundus.n.01} {structure.n.04}) (english {fundus.n.01} "fundus") (new-wordnet-type {fold.n.05} {structure.n.04}) (english {fold.n.05} "fold" "plica") (new-wordnet-type {vocal_cord.n.01} {fold.n.05}) (english {vocal_cord.n.01} "vocal cord" "vocal fold" "vocal band" "plica vocalis") (new-wordnet-type {true_vocal_cord.n.01} {vocal_cord.n.01}) (english {true_vocal_cord.n.01} "true vocal cord" "true vocal fold" "inferior vocal cord" "inferior vocal fold") (new-wordnet-type {false_vocal_cord.n.01} {vocal_cord.n.01}) (english {false_vocal_cord.n.01} "false vocal cord" "false vocal fold" "superior vocal cord" "ventricular fold" "vestibular fold") (new-wordnet-type {tentorium.n.01} {fold.n.05}) (english {tentorium.n.01} "tentorium") (new-wordnet-type {ruga.n.01} {fold.n.05}) (english {ruga.n.01} "ruga") (new-wordnet-type {epicanthus.n.01} {fold.n.05}) (english {epicanthus.n.01} "epicanthus" "epicanthic fold") (new-wordnet-type {filament.n.03} {structure.n.04}) (english {filament.n.03} "filament" "filum") (new-wordnet-type {hair.n.04} {filament.n.03}) (english {hair.n.04} "hair" "pilus") (new-wordnet-type {ingrown_hair.n.01} {hair.n.04}) (english {ingrown_hair.n.01} "ingrown hair") (new-wordnet-type {cytoskeleton.n.01} {structure.n.04}) (english {cytoskeleton.n.01} "cytoskeleton") (new-wordnet-type {costa.n.01} {structure.n.04}) (english {costa.n.01} "costa") (new-wordnet-type {corona.n.05} {structure.n.04}) (english {corona.n.05} "corona") (new-wordnet-type {cornu.n.01} {structure.n.04}) (english {cornu.n.01} "cornu") (new-wordnet-type {concha.n.01} {structure.n.04}) (english {concha.n.01} "concha") (new-wordnet-type {nasal_concha.n.01} {concha.n.01}) (english {nasal_concha.n.01} "nasal concha") (new-wordnet-type {cingulum.n.01} {structure.n.04}) (english {cingulum.n.01} "cingulum") (new-wordnet-type {chiasma.n.01} {structure.n.04}) (english {chiasma.n.01} "chiasma" "chiasm" "decussation") (new-wordnet-type {optic_chiasma.n.01} {chiasma.n.01}) (english {optic_chiasma.n.01} "optic chiasma" "optic chiasm" "chiasma opticum") (new-wordnet-type {centromere.n.01} {structure.n.04}) (english {centromere.n.01} "centromere" "kinetochore") (new-wordnet-type {cavity.n.04} {structure.n.04}) (english {cavity.n.04} "cavity" "bodily cavity" "cavum") (new-wordnet-type {vestibule.n.02} {cavity.n.04}) (english {vestibule.n.02} "vestibule") (new-wordnet-type {vestibule_of_the_vagina.n.01} {vestibule.n.02}) (english {vestibule_of_the_vagina.n.01} "vestibule of the vagina") (new-wordnet-type {vestibule_of_the_ear.n.01} {vestibule.n.02}) (english {vestibule_of_the_ear.n.01} "vestibule of the ear") (new-wordnet-type {ventricle.n.01} {cavity.n.04}) (english {ventricle.n.01} "ventricle") (new-wordnet-type {third_ventricle.n.01} {ventricle.n.01}) (english {third_ventricle.n.01} "third ventricle") (new-wordnet-type {lateral_ventricle.n.01} {ventricle.n.01}) (english {lateral_ventricle.n.01} "lateral ventricle") (new-wordnet-type {fourth_ventricle.n.01} {ventricle.n.01}) (english {fourth_ventricle.n.01} "fourth ventricle") (new-wordnet-type {vacuole.n.01} {cavity.n.04}) (english {vacuole.n.01} "vacuole") (new-wordnet-type {uterine_cavity.n.01} {cavity.n.04}) (english {uterine_cavity.n.01} "uterine cavity") (new-wordnet-type {tubular_cavity.n.01} {cavity.n.04}) (english {tubular_cavity.n.01} "tubular cavity") (new-wordnet-type {throat.n.01} {tubular_cavity.n.01}) (english {throat.n.01} "throat" "pharynx") (new-wordnet-type {socket.n.01} {cavity.n.04}) (english {socket.n.01} "socket") (new-wordnet-type {tooth_socket.n.01} {socket.n.01}) (english {tooth_socket.n.01} "tooth socket" "alveolus") (new-wordnet-type {hip_socket.n.01} {socket.n.01}) (english {hip_socket.n.01} "hip socket") (new-wordnet-type {acetabulum.n.01} {socket.n.01}) (english {acetabulum.n.01} "acetabulum" "cotyloid cavity") (new-wordnet-type {sinus.n.02} {cavity.n.04}) (english {sinus.n.02} "sinus") (new-wordnet-type {paranasal_sinus.n.01} {sinus.n.02}) (english {paranasal_sinus.n.01} "paranasal sinus" "sinus paranasales" "nasal sinus") (new-wordnet-type {maxillary_sinus.n.01} {sinus.n.02}) (english {maxillary_sinus.n.01} "maxillary sinus") (new-wordnet-type {frontal_sinus.n.01} {sinus.n.02}) (english {frontal_sinus.n.01} "frontal sinus") (new-wordnet-type {ethmoid_sinus.n.01} {sinus.n.02}) (english {ethmoid_sinus.n.01} "ethmoid sinus" "ethmoidal sinus" "sinus ethmoidales") (new-wordnet-type {sac.n.04} {cavity.n.04}) (english {sac.n.04} "sac") (new-wordnet-type {yolk_sac.n.02} {sac.n.04}) (english {yolk_sac.n.02} "yolk sac") (new-wordnet-type {yolk_sac.n.01} {sac.n.04}) (english {yolk_sac.n.01} "yolk sac" "vitelline sac" "umbilical vesicle" "vesicula umbilicus") (new-wordnet-type {vesicle.n.01} {sac.n.04}) (english {vesicle.n.01} "vesicle" "cyst") (new-wordnet-type {liposome.n.01} {vesicle.n.01}) (english {liposome.n.01} "liposome") (new-wordnet-type {lacrimal_sac.n.01} {vesicle.n.01}) (english {lacrimal_sac.n.01} "lacrimal sac" "tear sac" "dacryocyst") (new-wordnet-type {golgi_body.n.01} {vesicle.n.01}) (english {golgi_body.n.01} "Golgi body" "Golgi apparatus" "Golgi complex" "dictyosome") (new-wordnet-type {follicle.n.01} {vesicle.n.01}) (english {follicle.n.01} "follicle") (new-wordnet-type {hair_follicle.n.01} {follicle.n.01}) (english {hair_follicle.n.01} "hair follicle") (new-wordnet-type {graafian_follicle.n.01} {follicle.n.01}) (english {graafian_follicle.n.01} "Graafian follicle") (new-wordnet-type {blister.n.03} {vesicle.n.01}) (english {blister.n.03} "blister" "bulla" "bleb") (new-wordnet-type {water_blister.n.01} {blister.n.03}) (english {water_blister.n.01} "water blister") (new-wordnet-type {pustule.n.01} {blister.n.03}) (english {pustule.n.01} "pustule") (new-wordnet-type {pock.n.01} {pustule.n.01}) (english {pock.n.01} "pock") (new-wordnet-type {blood_blister.n.01} {blister.n.03}) (english {blood_blister.n.01} "blood blister") (new-wordnet-type {saccule.n.01} {sac.n.04}) (english {saccule.n.01} "saccule" "sacculus") (new-wordnet-type {pouch.n.03} {sac.n.04}) (english {pouch.n.03} "pouch" "pocket") (new-wordnet-type {utricle.n.01} {pouch.n.03}) (english {utricle.n.01} "utricle" "utriculus") (new-wordnet-type {scrotum.n.01} {pouch.n.03}) (english {scrotum.n.01} "scrotum") (new-wordnet-type {marsupium.n.01} {pouch.n.03}) (english {marsupium.n.01} "marsupium") (new-wordnet-type {gizzard.n.01} {pouch.n.03}) (english {gizzard.n.01} "gizzard" "ventriculus" "gastric mill") (new-wordnet-type {cheek_pouch.n.01} {pouch.n.03}) (english {cheek_pouch.n.01} "cheek pouch") (new-wordnet-type {auricula.n.02} {pouch.n.03}) (english {auricula.n.02} "auricula" "auricular appendage" "auricular appendix") (new-wordnet-type {auricle.n.01} {pouch.n.03}) (english {auricle.n.01} "auricle" "atrial auricle" "auricula atrii") (new-wordnet-type {pericardial_sac.n.01} {sac.n.04}) (english {pericardial_sac.n.01} "pericardial sac") (new-wordnet-type {coelenteron.n.01} {sac.n.04}) (english {coelenteron.n.01} "coelenteron") (new-wordnet-type {cisterna.n.01} {sac.n.04}) (english {cisterna.n.01} "cisterna" "cistern") (new-wordnet-type {chorion.n.01} {sac.n.04}) (english {chorion.n.01} "chorion") (new-wordnet-type {bursa.n.02} {sac.n.04}) (english {bursa.n.02} "bursa") (new-wordnet-type {bladder.n.01} {sac.n.04}) (english {bladder.n.01} "bladder" "vesica") (new-wordnet-type {urinary_bladder.n.01} {bladder.n.01}) (english {urinary_bladder.n.01} "urinary bladder") (new-wordnet-type {gallbladder.n.01} {bladder.n.01}) (english {gallbladder.n.01} "gallbladder" "gall bladder") (new-wordnet-type {amnion.n.01} {sac.n.04}) (english {amnion.n.01} "amnion" "amniotic sac" "amnios") (new-wordnet-type {alveolus.n.01} {sac.n.04}) (english {alveolus.n.01} "alveolus" "air sac" "air cell") (new-wordnet-type {air_sac.n.03} {sac.n.04}) (english {air_sac.n.03} "air sac") (new-wordnet-type {air_sac.n.02} {sac.n.04}) (english {air_sac.n.02} "air sac") (new-wordnet-type {air_bladder.n.01} {sac.n.04}) (english {air_bladder.n.01} "air bladder" "swim bladder" "float") (new-wordnet-type {acinus.n.02} {sac.n.04}) (english {acinus.n.02} "acinus") (new-wordnet-type {pulp_cavity.n.01} {cavity.n.04}) (english {pulp_cavity.n.01} "pulp cavity") (new-wordnet-type {pleural_cavity.n.01} {cavity.n.04}) (english {pleural_cavity.n.01} "pleural cavity") (new-wordnet-type {pit.n.02} {cavity.n.04}) (english {pit.n.02} "pit" "fossa") (new-wordnet-type {pit_of_the_stomach.n.01} {pit.n.02}) (english {pit_of_the_stomach.n.01} "pit of the stomach" "epigastric fossa") (new-wordnet-type {glenoid_fossa.n.02} {pit.n.02}) (english {glenoid_fossa.n.02} "glenoid fossa" "glenoid cavity") (new-wordnet-type {glenoid_fossa.n.01} {pit.n.02}) (english {glenoid_fossa.n.01} "glenoid fossa" "mandibular fossa") (new-wordnet-type {peritoneal_cavity.n.01} {cavity.n.04}) (english {peritoneal_cavity.n.01} "peritoneal cavity" "greater peritoneal sac") (new-wordnet-type {pericardial_cavity.n.01} {cavity.n.04}) (english {pericardial_cavity.n.01} "pericardial cavity" "pericardial space") (new-wordnet-type {pelvis.n.02} {cavity.n.04}) (english {pelvis.n.02} "pelvis" "renal pelvis") (new-wordnet-type {pelvic_cavity.n.01} {cavity.n.04}) (english {pelvic_cavity.n.01} "pelvic cavity") (new-wordnet-type {oropharynx.n.01} {cavity.n.04}) (english {oropharynx.n.01} "oropharynx") (new-wordnet-type {nasopharynx.n.01} {cavity.n.04}) (english {nasopharynx.n.01} "nasopharynx") (new-wordnet-type {nasal_cavity.n.01} {cavity.n.04}) (english {nasal_cavity.n.01} "nasal cavity") (new-wordnet-type {middle_ear.n.01} {cavity.n.04}) (english {middle_ear.n.01} "middle ear" "tympanic cavity" "tympanum") (new-wordnet-type {mediastinum.n.01} {cavity.n.04}) (english {mediastinum.n.01} "mediastinum") (new-wordnet-type {lumen.n.02} {cavity.n.04}) (english {lumen.n.02} "lumen") (new-wordnet-type {locule.n.01} {cavity.n.04}) (english {locule.n.01} "locule" "loculus") (new-wordnet-type {laryngopharynx.n.01} {cavity.n.04}) (english {laryngopharynx.n.01} "laryngopharynx") (new-wordnet-type {eye_socket.n.01} {cavity.n.04}) (english {eye_socket.n.01} "eye socket" "orbit" "cranial orbit" "orbital cavity") (new-wordnet-type {cranial_cavity.n.01} {cavity.n.04}) (english {cranial_cavity.n.01} "cranial cavity" "intracranial cavity") (new-wordnet-type {cloaca.n.01} {cavity.n.04}) (english {cloaca.n.01} "cloaca") (new-wordnet-type {chest_cavity.n.01} {cavity.n.04}) (english {chest_cavity.n.01} "chest cavity" "thoracic cavity") (new-wordnet-type {chamber.n.02} {cavity.n.04}) (english {chamber.n.02} "chamber") (new-wordnet-type {ventricle.n.02} {chamber.n.02}) (english {ventricle.n.02} "ventricle" "heart ventricle") (new-wordnet-type {right_ventricle.n.01} {ventricle.n.02}) (english {right_ventricle.n.01} "right ventricle") (new-wordnet-type {left_ventricle.n.01} {ventricle.n.02}) (english {left_ventricle.n.01} "left ventricle") (new-wordnet-type {atrium.n.01} {chamber.n.02}) (english {atrium.n.01} "atrium") (new-wordnet-type {atrium_cordis.n.01} {atrium.n.01}) (english {atrium_cordis.n.01} "atrium cordis" "atrium of the heart") (new-wordnet-type {right_atrium.n.01} {atrium_cordis.n.01}) (english {right_atrium.n.01} "right atrium" "right atrium of the heart" "atrium dextrum") (new-wordnet-type {left_atrium.n.01} {atrium_cordis.n.01}) (english {left_atrium.n.01} "left atrium" "left atrium of the heart" "atrium sinistrum") (new-wordnet-type {celom.n.01} {cavity.n.04}) (english {celom.n.01} "celom" "coelom" "celoma") (new-wordnet-type {cecum.n.01} {cavity.n.04}) (english {cecum.n.01} "cecum" "caecum" "blind gut") (new-wordnet-type {bursa_omentalis.n.01} {cavity.n.04}) (english {bursa_omentalis.n.01} "bursa omentalis" "omental bursa" "lesser peritoneal cavity") (new-wordnet-type {buccal_cavity.n.01} {cavity.n.04}) (english {buccal_cavity.n.01} "buccal cavity") (new-wordnet-type {blastocoel.n.01} {cavity.n.04}) (english {blastocoel.n.01} "blastocoel" "blastocoele" "blastocele" "segmentation cavity" "cleavage cavity") (new-wordnet-type {armpit.n.01} {cavity.n.04}) (english {armpit.n.01} "armpit" "axilla" "axillary cavity" "axillary fossa") (new-wordnet-type {archenteron.n.01} {cavity.n.04}) (english {archenteron.n.01} "archenteron") (new-wordnet-type {antrum.n.01} {cavity.n.04}) (english {antrum.n.01} "antrum") (new-wordnet-type {amniotic_cavity.n.01} {cavity.n.04}) (english {amniotic_cavity.n.01} "amniotic cavity") (new-wordnet-type {abdominal_cavity.n.01} {cavity.n.04}) (english {abdominal_cavity.n.01} "abdominal cavity" "abdomen") (new-wordnet-type {cauda.n.01} {structure.n.04}) (english {cauda.n.01} "cauda") (new-wordnet-type {cartilaginous_structure.n.01} {structure.n.04}) (english {cartilaginous_structure.n.01} "cartilaginous structure") (new-wordnet-type {tragus.n.01} {cartilaginous_structure.n.01}) (english {tragus.n.01} "tragus") (new-wordnet-type {larynx.n.01} {cartilaginous_structure.n.01}) (english {larynx.n.01} "larynx" "voice box") (new-wordnet-type {epiglottis.n.01} {cartilaginous_structure.n.01}) (english {epiglottis.n.01} "epiglottis") (new-wordnet-type {costal_cartilage.n.01} {cartilaginous_structure.n.01}) (english {costal_cartilage.n.01} "costal cartilage") (new-wordnet-type {auricle.n.02} {cartilaginous_structure.n.01}) (english {auricle.n.02} "auricle" "pinna" "ear") (new-wordnet-type {cauliflower_ear.n.01} {auricle.n.02}) (english {cauliflower_ear.n.01} "cauliflower ear") (new-wordnet-type {carina.n.02} {structure.n.04}) (english {carina.n.02} "carina") (new-wordnet-type {keel.n.02} {carina.n.02}) (english {keel.n.02} "keel") (new-wordnet-type {carina_fornicis.n.01} {carina.n.02}) (english {carina_fornicis.n.01} "carina fornicis") (new-wordnet-type {capsule.n.05} {structure.n.04}) (english {capsule.n.05} "capsule") (new-wordnet-type {malpighian_body.n.01} {capsule.n.05}) (english {malpighian_body.n.01} "malpighian body" "malpighian corpuscle" "renal corpuscle") (new-wordnet-type {lens_capsule.n.01} {capsule.n.05}) (english {lens_capsule.n.01} "lens capsule") (new-wordnet-type {eyeball.n.01} {capsule.n.05}) (english {eyeball.n.01} "eyeball" "orb") (new-wordnet-type {calyculus.n.02} {structure.n.04}) (english {calyculus.n.02} "calyculus" "caliculus" "calycle") (new-wordnet-type {optic_cup.n.01} {calyculus.n.02}) (english {optic_cup.n.01} "optic cup" "eyecup") (new-wordnet-type {bulb.n.06} {structure.n.04}) (english {bulb.n.06} "bulb") (new-wordnet-type {bridge.n.04} {structure.n.04}) (english {bridge.n.04} "bridge") (new-wordnet-type {bony_labyrinth.n.01} {structure.n.04}) (english {bony_labyrinth.n.01} "bony labyrinth" "osseous labyrinth") (new-wordnet-type {blade.n.06} {structure.n.04}) (english {blade.n.06} "blade") (new-wordnet-type {vane.n.04} {blade.n.06}) (english {vane.n.04} "vane" "web") (new-wordnet-type {ball.n.10} {structure.n.04}) (english {ball.n.10} "ball") (new-wordnet-type {aster.n.02} {structure.n.04}) (english {aster.n.02} "aster") (new-wordnet-type {apodeme.n.01} {structure.n.04}) (english {apodeme.n.01} "apodeme") (new-wordnet-type {alveolar_bed.n.01} {structure.n.04}) (english {alveolar_bed.n.01} "alveolar bed") (new-wordnet-type {small.n.01} {body_part.n.01}) (english {small.n.01} "small") (new-wordnet-type {shoulder.n.01} {body_part.n.01}) (english {shoulder.n.01} "shoulder") (new-wordnet-type {shin.n.01} {body_part.n.01}) (english {shin.n.01} "shin") (new-wordnet-type {shank.n.02} {body_part.n.01}) (english {shank.n.02} "shank") (new-wordnet-type {saddle.n.06} {body_part.n.01}) (english {saddle.n.06} "saddle") (new-wordnet-type {rudiment.n.02} {body_part.n.01}) (english {rudiment.n.02} "rudiment") (new-wordnet-type {rectum.n.01} {body_part.n.01}) (english {rectum.n.01} "rectum") (new-wordnet-type {process.n.05} {body_part.n.01}) (english {process.n.05} "process" "outgrowth" "appendage") (new-wordnet-type {zygomatic_process.n.01} {process.n.05}) (english {zygomatic_process.n.01} "zygomatic process") (new-wordnet-type {villus.n.01} {process.n.05}) (english {villus.n.01} "villus") (new-wordnet-type {chorionic_villus.n.01} {villus.n.01}) (english {chorionic_villus.n.01} "chorionic villus") (new-wordnet-type {tuberosity.n.01} {process.n.05}) (english {tuberosity.n.01} "tuberosity" "tubercle" "eminence") (new-wordnet-type {deltoid_tuberosity.n.01} {tuberosity.n.01}) (english {deltoid_tuberosity.n.01} "deltoid tuberosity" "deltoid eminence") (new-wordnet-type {trochanter.n.01} {process.n.05}) (english {trochanter.n.01} "trochanter") (new-wordnet-type {transverse_process.n.01} {process.n.05}) (english {transverse_process.n.01} "transverse process") (new-wordnet-type {tentacle.n.02} {process.n.05}) (english {tentacle.n.02} "tentacle") (new-wordnet-type {barbel.n.01} {tentacle.n.02}) (english {barbel.n.01} "barbel" "feeler") (new-wordnet-type {antenna.n.03} {tentacle.n.02}) (english {antenna.n.03} "antenna" "feeler") (new-wordnet-type {tail.n.01} {process.n.05}) (english {tail.n.01} "tail") (new-wordnet-type {uropygium.n.01} {tail.n.01}) (english {uropygium.n.01} "uropygium") (new-wordnet-type {scut.n.01} {tail.n.01}) (english {scut.n.01} "scut") (new-wordnet-type {rattle.n.03} {tail.n.01}) (english {rattle.n.03} "rattle") (new-wordnet-type {oxtail.n.01} {tail.n.01}) (english {oxtail.n.01} "oxtail") (new-wordnet-type {fluke.n.04} {tail.n.01}) (english {fluke.n.04} "fluke") (new-wordnet-type {flag.n.07} {tail.n.01}) (english {flag.n.07} "flag") (new-wordnet-type {caudal_appendage.n.01} {tail.n.01}) (english {caudal_appendage.n.01} "caudal appendage") (new-wordnet-type {brush.n.05} {tail.n.01}) (english {brush.n.05} "brush") (new-wordnet-type {bobtail.n.01} {tail.n.01}) (english {bobtail.n.01} "bobtail" "bob" "dock") (new-wordnet-type {styloid_process.n.01} {process.n.05}) (english {styloid_process.n.01} "styloid process") (new-wordnet-type {style.n.09} {process.n.05}) (english {style.n.09} "style") (new-wordnet-type {stylet.n.01} {style.n.09}) (english {stylet.n.01} "stylet") (new-wordnet-type {spine.n.05} {process.n.05}) (english {spine.n.05} "spine") (new-wordnet-type {ray.n.06} {spine.n.05}) (english {ray.n.06} "ray") (new-wordnet-type {quill.n.02} {spine.n.05}) (english {quill.n.02} "quill") (new-wordnet-type {spicule.n.01} {process.n.05}) (english {spicule.n.01} "spicule" "spiculum") (new-wordnet-type {ridge.n.05} {process.n.05}) (english {ridge.n.05} "ridge") (new-wordnet-type {supraorbital_ridge.n.01} {ridge.n.05}) (english {supraorbital_ridge.n.01} "supraorbital ridge" "supraorbital torus" "superciliary ridge" "superciliary arch") (new-wordnet-type {pterygoid_process.n.01} {process.n.05}) (english {pterygoid_process.n.01} "pterygoid process") (new-wordnet-type {pseudopod.n.01} {process.n.05}) (english {pseudopod.n.01} "pseudopod" "pseudopodium") (new-wordnet-type {plant_process.n.01} {process.n.05}) (english {plant_process.n.01} "plant process" "enation") (new-wordnet-type {spur.n.03} {plant_process.n.01}) (english {spur.n.03} "spur") (new-wordnet-type {podetium.n.01} {plant_process.n.01}) (english {podetium.n.01} "podetium") (new-wordnet-type {seta.n.01} {podetium.n.01}) (english {seta.n.01} "seta") (new-wordnet-type {peristome.n.01} {plant_process.n.01}) (english {peristome.n.01} "peristome") (new-wordnet-type {nodule.n.02} {plant_process.n.01}) (english {nodule.n.02} "nodule" "tubercle") (new-wordnet-type {node.n.03} {plant_process.n.01}) (english {node.n.03} "node" "leaf node") (new-wordnet-type {haustorium.n.01} {plant_process.n.01}) (english {haustorium.n.01} "haustorium") (new-wordnet-type {hair.n.03} {plant_process.n.01}) (english {hair.n.03} "hair" "fuzz" "tomentum") (new-wordnet-type {stinging_hair.n.01} {hair.n.03}) (english {stinging_hair.n.01} "stinging hair") (new-wordnet-type {beard.n.02} {hair.n.03}) (english {beard.n.02} "beard") (new-wordnet-type {awn.n.01} {beard.n.02}) (english {awn.n.01} "awn") (new-wordnet-type {callus.n.03} {plant_process.n.01}) (english {callus.n.03} "callus") (new-wordnet-type {burl.n.02} {plant_process.n.01}) (english {burl.n.02} "burl") (new-wordnet-type {blister.n.02} {plant_process.n.01}) (english {blister.n.02} "blister") (new-wordnet-type {apophysis.n.01} {plant_process.n.01}) (english {apophysis.n.01} "apophysis") (new-wordnet-type {acumen.n.01} {plant_process.n.01}) (english {acumen.n.01} "acumen") (new-wordnet-type {aculeus.n.01} {plant_process.n.01}) (english {aculeus.n.01} "aculeus") (new-wordnet-type {spine.n.03} {aculeus.n.01}) (english {spine.n.03} "spine" "thorn" "prickle" "pricker" "sticker" "spikelet") (new-wordnet-type {glochidium.n.01} {spine.n.03}) (english {glochidium.n.01} "glochidium" "glochid") (new-wordnet-type {papilla.n.03} {process.n.05}) (english {papilla.n.03} "papilla") (new-wordnet-type {papilla.n.02} {process.n.05}) (english {papilla.n.02} "papilla") (new-wordnet-type {papilla.n.01} {process.n.05}) (english {papilla.n.01} "papilla") (new-wordnet-type {osteophyte.n.01} {process.n.05}) (english {osteophyte.n.01} "osteophyte") (new-wordnet-type {olecranon.n.01} {process.n.05}) (english {olecranon.n.01} "olecranon" "olecranon process") (new-wordnet-type {odontoid_process.n.01} {process.n.05}) (english {odontoid_process.n.01} "odontoid process") (new-wordnet-type {metaphysis.n.01} {process.n.05}) (english {metaphysis.n.01} "metaphysis") (new-wordnet-type {mastoid.n.01} {process.n.05}) (english {mastoid.n.01} "mastoid" "mastoid process" "mastoid bone" "mastoidal") (new-wordnet-type {horn.n.06} {process.n.05}) (english {horn.n.06} "horn") (new-wordnet-type {horn.n.02} {process.n.05}) (english {horn.n.02} "horn") (new-wordnet-type {antler.n.01} {horn.n.02}) (english {antler.n.01} "antler") (new-wordnet-type {hair.n.06} {process.n.05}) (english {hair.n.06} "hair") (new-wordnet-type {whisker.n.02} {hair.n.06}) (english {whisker.n.02} "whisker" "vibrissa" "sensory hair") (new-wordnet-type {seta.n.02} {hair.n.06}) (english {seta.n.02} "seta") (new-wordnet-type {chaeta.n.01} {seta.n.02}) (english {chaeta.n.01} "chaeta") (new-wordnet-type {pilus.n.02} {hair.n.06}) (english {pilus.n.02} "pilus") (new-wordnet-type {bristle.n.02} {hair.n.06}) (english {bristle.n.02} "bristle") (new-wordnet-type {flagellum.n.02} {process.n.05}) (english {flagellum.n.02} "flagellum") (new-wordnet-type {fimbria.n.01} {process.n.05}) (english {fimbria.n.01} "fimbria") (new-wordnet-type {fetlock.n.02} {process.n.05}) (english {fetlock.n.02} "fetlock") (new-wordnet-type {excrescence.n.02} {process.n.05}) (english {excrescence.n.02} "excrescence") (new-wordnet-type {vegetation.n.03} {excrescence.n.02}) (english {vegetation.n.03} "vegetation") (new-wordnet-type {epicondyle.n.01} {process.n.05}) (english {epicondyle.n.01} "epicondyle") (new-wordnet-type {lateral_epicondyle.n.01} {epicondyle.n.01}) (english {lateral_epicondyle.n.01} "lateral epicondyle") (new-wordnet-type {crest.n.05} {process.n.05}) (english {crest.n.05} "crest") (new-wordnet-type {tuft.n.02} {crest.n.05}) (english {tuft.n.02} "tuft") (new-wordnet-type {topknot.n.02} {crest.n.05}) (english {topknot.n.02} "topknot") (new-wordnet-type {comb.n.02} {crest.n.05}) (english {comb.n.02} "comb" "cockscomb" "coxcomb") (new-wordnet-type {coronoid_process.n.01} {process.n.05}) (english {coronoid_process.n.01} "coronoid process" "processus coronoideus") (new-wordnet-type {coronoid_process_of_the_mandible.n.01} {coronoid_process.n.01}) (english {coronoid_process_of_the_mandible.n.01} "coronoid process of the mandible") (new-wordnet-type {condyle.n.01} {process.n.05}) (english {condyle.n.01} "condyle") (new-wordnet-type {medial_condyle.n.01} {condyle.n.01}) (english {medial_condyle.n.01} "medial condyle") (new-wordnet-type {lateral_condyle.n.01} {condyle.n.01}) (english {lateral_condyle.n.01} "lateral condyle") (new-wordnet-type {condylar_process.n.01} {condyle.n.01}) (english {condylar_process.n.01} "condylar process" "condyloid process" "mandibular condyle") (new-wordnet-type {cirrus.n.03} {process.n.05}) (english {cirrus.n.03} "cirrus") (new-wordnet-type {caruncle.n.01} {process.n.05}) (english {caruncle.n.01} "caruncle" "caruncula") (new-wordnet-type {wattle.n.01} {caruncle.n.01}) (english {wattle.n.01} "wattle" "lappet") (new-wordnet-type {arista.n.01} {process.n.05}) (english {arista.n.01} "arista") (new-wordnet-type {appendix.n.02} {process.n.05}) (english {appendix.n.02} "appendix" "vermiform appendix" "vermiform process" "cecal appendage") (new-wordnet-type {apophysis.n.02} {process.n.05}) (english {apophysis.n.02} "apophysis") (new-wordnet-type {alveolar_ridge.n.01} {process.n.05}) (english {alveolar_ridge.n.01} "alveolar ridge" "gum ridge" "alveolar process") (new-wordnet-type {alveolar_arch.n.01} {process.n.05}) (english {alveolar_arch.n.01} "alveolar arch") (new-wordnet-type {ala.n.01} {process.n.05}) (english {ala.n.01} "ala") (new-wordnet-type {aculea.n.01} {process.n.05}) (english {aculea.n.01} "aculea") (new-wordnet-type {acrosome.n.01} {process.n.05}) (english {acrosome.n.01} "acrosome") (new-wordnet-type {acromion.n.01} {process.n.05}) (english {acromion.n.01} "acromion" "acromial process") (new-wordnet-type {partition.n.03} {body_part.n.01}) (english {partition.n.03} "partition") (new-wordnet-type {septum.n.01} {partition.n.03}) (english {septum.n.01} "septum") (new-wordnet-type {nasal_septum.n.01} {septum.n.01}) (english {nasal_septum.n.01} "nasal septum") (new-wordnet-type {organ.n.01} {body_part.n.01}) (english {organ.n.01} "organ") (new-wordnet-type {wing.n.01} {organ.n.01}) (english {wing.n.01} "wing") (new-wordnet-type {wing_case.n.01} {wing.n.01}) (english {wing_case.n.01} "wing case" "elytron") (new-wordnet-type {pennon.n.02} {wing.n.01}) (english {pennon.n.02} "pennon" "pinion") (new-wordnet-type {halter.n.04} {wing.n.01}) (english {halter.n.04} "halter" "haltere" "balancer") (new-wordnet-type {forewing.n.01} {wing.n.01}) (english {forewing.n.01} "forewing" "fore-wing" "fore wing") (new-wordnet-type {ala.n.02} {wing.n.01}) (english {ala.n.02} "ala") (new-wordnet-type {vital_organ.n.01} {organ.n.01}) (english {vital_organ.n.01} "vital organ" "vitals") (new-wordnet-type {tongue.n.01} {organ.n.01}) (english {tongue.n.01} "tongue" "lingua" "glossa" "clapper") (new-wordnet-type {target_organ.n.01} {organ.n.01}) (english {target_organ.n.01} "target organ") (new-wordnet-type {taret_organ.n.01} {organ.n.01}) (english {taret_organ.n.01} "taret organ") (new-wordnet-type {sucker.n.06} {organ.n.01}) (english {sucker.n.06} "sucker") (new-wordnet-type {cupule.n.02} {sucker.n.06}) (english {cupule.n.02} "cupule") (new-wordnet-type {stinger.n.04} {organ.n.01}) (english {stinger.n.04} "stinger") (new-wordnet-type {aculeus.n.02} {stinger.n.04}) (english {aculeus.n.02} "aculeus") (new-wordnet-type {speech_organ.n.01} {organ.n.01}) (english {speech_organ.n.01} "speech organ" "vocal organ" "organ of speech") (new-wordnet-type {larynx.n.01} {speech_organ.n.01}) (english {larynx.n.01} "larynx" "voice box") (new-wordnet-type {glottis.n.01} {speech_organ.n.01}) (english {glottis.n.01} "glottis") (new-wordnet-type {articulator.n.02} {speech_organ.n.01}) (english {articulator.n.02} "articulator") (new-wordnet-type {tongue.n.01} {articulator.n.02}) (english {tongue.n.01} "tongue" "lingua" "glossa" "clapper") (new-wordnet-type {lower_jaw.n.01} {articulator.n.02}) (english {lower_jaw.n.01} "lower jaw" "mandible" "mandibula" "mandibular bone" "submaxilla" "lower jawbone" "jawbone" "jowl") (new-wordnet-type {lip.n.01} {articulator.n.02}) (english {lip.n.01} "lip") (new-wordnet-type {underlip.n.01} {lip.n.01}) (english {underlip.n.01} "underlip") (new-wordnet-type {overlip.n.01} {lip.n.01}) (english {overlip.n.01} "overlip") (new-wordnet-type {siphon.n.02} {organ.n.01}) (english {siphon.n.02} "siphon" "syphon") (new-wordnet-type {sense_organ.n.01} {organ.n.01}) (english {sense_organ.n.01} "sense organ" "sensory receptor" "receptor") (new-wordnet-type {third_eye.n.01} {sense_organ.n.01}) (english {third_eye.n.01} "third eye" "pineal eye") (new-wordnet-type {thermoreceptor.n.01} {sense_organ.n.01}) (english {thermoreceptor.n.01} "thermoreceptor") (new-wordnet-type {stretch_receptor.n.01} {sense_organ.n.01}) (english {stretch_receptor.n.01} "stretch receptor") (new-wordnet-type {semicircular_canal.n.01} {sense_organ.n.01}) (english {semicircular_canal.n.01} "semicircular canal") (new-wordnet-type {organ_of_hearing.n.01} {sense_organ.n.01}) (english {organ_of_hearing.n.01} "organ of hearing") (new-wordnet-type {organ_of_corti.n.01} {organ_of_hearing.n.01}) (english {organ_of_corti.n.01} "organ of Corti") (new-wordnet-type {lateral_line.n.01} {sense_organ.n.01}) (english {lateral_line.n.01} "lateral line" "lateral line organ") (new-wordnet-type {interoceptor.n.01} {sense_organ.n.01}) (english {interoceptor.n.01} "interoceptor" "enteroceptor") (new-wordnet-type {inner_ear.n.01} {sense_organ.n.01}) (english {inner_ear.n.01} "inner ear" "internal ear" "labyrinth") (new-wordnet-type {eye.n.01} {sense_organ.n.01}) (english {eye.n.01} "eye" "oculus" "optic") (new-wordnet-type {simple_eye.n.01} {eye.n.01}) (english {simple_eye.n.01} "simple eye" "stemma" "ocellus") (new-wordnet-type {ommatidium.n.01} {simple_eye.n.01}) (english {ommatidium.n.01} "ommatidium") (new-wordnet-type {peeper.n.02} {eye.n.01}) (english {peeper.n.02} "peeper") (new-wordnet-type {oculus_sinister.n.01} {eye.n.01}) (english {oculus_sinister.n.01} "oculus sinister" "OS") (new-wordnet-type {oculus_dexter.n.01} {eye.n.01}) (english {oculus_dexter.n.01} "oculus dexter" "OD") (new-wordnet-type {naked_eye.n.01} {eye.n.01}) (english {naked_eye.n.01} "naked eye") (new-wordnet-type {compound_eye.n.01} {eye.n.01}) (english {compound_eye.n.01} "compound eye") (new-wordnet-type {exteroceptor.n.01} {sense_organ.n.01}) (english {exteroceptor.n.01} "exteroceptor") (new-wordnet-type {ear.n.01} {sense_organ.n.01}) (english {ear.n.01} "ear") (new-wordnet-type {chemoreceptor.n.01} {sense_organ.n.01}) (english {chemoreceptor.n.01} "chemoreceptor") (new-wordnet-type {tastebud.n.01} {chemoreceptor.n.01}) (english {tastebud.n.01} "tastebud" "taste bud" "gustatory organ") (new-wordnet-type {nose.n.01} {chemoreceptor.n.01}) (english {nose.n.01} "nose" "olfactory organ") (new-wordnet-type {snout.n.03} {nose.n.01}) (english {snout.n.03} "snout" "rostrum") (new-wordnet-type {snout.n.01} {nose.n.01}) (english {snout.n.01} "snout" "neb") (new-wordnet-type {proboscis.n.02} {snout.n.01}) (english {proboscis.n.02} "proboscis" "trunk") (new-wordnet-type {roman_nose.n.01} {nose.n.01}) (english {roman_nose.n.01} "Roman nose" "hooknose") (new-wordnet-type {pug_nose.n.01} {nose.n.01}) (english {pug_nose.n.01} "pug nose") (new-wordnet-type {proboscis.n.01} {nose.n.01}) (english {proboscis.n.01} "proboscis") (new-wordnet-type {hawk_nose.n.01} {nose.n.01}) (english {hawk_nose.n.01} "hawk nose") (new-wordnet-type {conk.n.01} {nose.n.01}) (english {conk.n.01} "conk") (new-wordnet-type {beak.n.04} {nose.n.01}) (english {beak.n.04} "beak" "honker" "hooter" "nozzle" "snoot" "snout" "schnozzle" "schnoz") (new-wordnet-type {carotid_body.n.01} {chemoreceptor.n.01}) (english {carotid_body.n.01} "carotid body") (new-wordnet-type {baroreceptor.n.01} {sense_organ.n.01}) (english {baroreceptor.n.01} "baroreceptor") (new-wordnet-type {reproductive_organ.n.01} {organ.n.01}) (english {reproductive_organ.n.01} "reproductive organ" "sex organ") (new-wordnet-type {nipple.n.01} {reproductive_organ.n.01}) (english {nipple.n.01} "nipple" "mammilla" "mamilla" "pap" "teat" "tit") (new-wordnet-type {male_reproductive_gland.n.01} {reproductive_organ.n.01}) (english {male_reproductive_gland.n.01} "male reproductive gland") (new-wordnet-type {testis.n.01} {male_reproductive_gland.n.01}) (english {testis.n.01} "testis" "testicle" "orchis" "ball" "ballock" "bollock" "nut" "egg") (new-wordnet-type {undescended_testis.n.01} {testis.n.01}) (english {undescended_testis.n.01} "undescended testis" "undescended testicle") (new-wordnet-type {cobblers.n.02} {testis.n.01}) (english {cobblers.n.02} "cobblers") (new-wordnet-type {male_internal_reproductive_organ.n.01} {reproductive_organ.n.01}) (english {male_internal_reproductive_organ.n.01} "male internal reproductive organ") (new-wordnet-type {genitalia.n.01} {reproductive_organ.n.01}) (english {genitalia.n.01} "genitalia" "genital organ" "genitals" "private parts" "privates" "crotch") (new-wordnet-type {pudendum.n.01} {genitalia.n.01}) (english {pudendum.n.01} "pudendum") (new-wordnet-type {male_genitalia.n.01} {genitalia.n.01}) (english {male_genitalia.n.01} "male genitalia" "male genitals" "male genital organ" "family jewels") (new-wordnet-type {female_genitalia.n.01} {genitalia.n.01}) (english {female_genitalia.n.01} "female genitalia" "female genitals" "female genital organ" "fanny") (new-wordnet-type {vulva.n.01} {female_genitalia.n.01}) (english {vulva.n.01} "vulva") (new-wordnet-type {minge.n.01} {female_genitalia.n.01}) (english {minge.n.01} "minge") (new-wordnet-type {cunt.n.02} {female_genitalia.n.01}) (english {cunt.n.02} "cunt" "puss" "pussy" "slit" "snatch" "twat") (new-wordnet-type {female_internal_reproductive_organ.n.01} {reproductive_organ.n.01}) (english {female_internal_reproductive_organ.n.01} "female internal reproductive organ") (new-wordnet-type {uterus.n.01} {female_internal_reproductive_organ.n.01}) (english {uterus.n.01} "uterus" "womb") (new-wordnet-type {venter.n.03} {uterus.n.01}) (english {venter.n.03} "venter") (new-wordnet-type {ovary.n.02} {female_internal_reproductive_organ.n.01}) (english {ovary.n.02} "ovary") (new-wordnet-type {fallopian_tube.n.01} {female_internal_reproductive_organ.n.01}) (english {fallopian_tube.n.01} "Fallopian tube" "uterine tube" "oviduct") (new-wordnet-type {primordium.n.01} {organ.n.01}) (english {primordium.n.01} "primordium" "anlage") (new-wordnet-type {ovipositor.n.01} {organ.n.01}) (english {ovipositor.n.01} "ovipositor") (new-wordnet-type {organelle.n.01} {organ.n.01}) (english {organelle.n.01} "organelle" "cell organelle" "cell organ") (new-wordnet-type {ribosome.n.01} {organelle.n.01}) (english {ribosome.n.01} "ribosome") (new-wordnet-type {nucleus.n.01} {organelle.n.01}) (english {nucleus.n.01} "nucleus" "cell nucleus" "karyon") (new-wordnet-type {subthalamic_nucleus.n.01} {nucleus.n.01}) (english {subthalamic_nucleus.n.01} "subthalamic nucleus") (new-wordnet-type {pronucleus.n.01} {nucleus.n.01}) (english {pronucleus.n.01} "pronucleus") (new-wordnet-type {nucleolus.n.01} {organelle.n.01}) (english {nucleolus.n.01} "nucleolus" "nucleole") (new-wordnet-type {mitochondrion.n.01} {organelle.n.01}) (english {mitochondrion.n.01} "mitochondrion" "chondriosome") (new-wordnet-type {sarcosome.n.01} {mitochondrion.n.01}) (english {sarcosome.n.01} "sarcosome") (new-wordnet-type {lysosome.n.01} {organelle.n.01}) (english {lysosome.n.01} "lysosome") (new-wordnet-type {cilium.n.01} {organelle.n.01}) (english {cilium.n.01} "cilium") (new-wordnet-type {centriole.n.01} {organelle.n.01}) (english {centriole.n.01} "centriole") (new-wordnet-type {lens.n.04} {organ.n.01}) (english {lens.n.04} "lens" "crystalline lens" "lens of the eye") (new-wordnet-type {internal_organ.n.01} {organ.n.01}) (english {internal_organ.n.01} "internal organ" "viscus") (new-wordnet-type {viscera.n.01} {internal_organ.n.01}) (english {viscera.n.01} "viscera" "entrails" "innards") (new-wordnet-type {stomach.n.01} {internal_organ.n.01}) (english {stomach.n.01} "stomach" "tummy" "tum" "breadbasket") (new-wordnet-type {rumen.n.01} {stomach.n.01}) (english {rumen.n.01} "rumen" "first stomach") (new-wordnet-type {reticulum.n.03} {stomach.n.01}) (english {reticulum.n.03} "reticulum" "second stomach") (new-wordnet-type {psalterium.n.01} {stomach.n.01}) (english {psalterium.n.01} "psalterium" "omasum" "third stomach") (new-wordnet-type {craw.n.01} {stomach.n.01}) (english {craw.n.01} "craw" "crop") (new-wordnet-type {abomasum.n.01} {stomach.n.01}) (english {abomasum.n.01} "abomasum" "fourth stomach") (new-wordnet-type {respiratory_organ.n.01} {internal_organ.n.01}) (english {respiratory_organ.n.01} "respiratory organ") (new-wordnet-type {lung.n.01} {respiratory_organ.n.01}) (english {lung.n.01} "lung") (new-wordnet-type {gill.n.04} {respiratory_organ.n.01}) (english {gill.n.04} "gill" "branchia") (new-wordnet-type {external_gill.n.01} {gill.n.04}) (english {external_gill.n.01} "external gill") (new-wordnet-type {ctenidium.n.01} {gill.n.04}) (english {ctenidium.n.01} "ctenidium") (new-wordnet-type {ceras.n.01} {gill.n.04}) (english {ceras.n.01} "ceras") (new-wordnet-type {book_lung.n.01} {respiratory_organ.n.01}) (english {book_lung.n.01} "book lung") (new-wordnet-type {liver.n.01} {internal_organ.n.01}) (english {liver.n.01} "liver") (new-wordnet-type {intestine.n.01} {internal_organ.n.01}) (english {intestine.n.01} "intestine" "bowel" "gut") (new-wordnet-type {small_intestine.n.01} {intestine.n.01}) (english {small_intestine.n.01} "small intestine") (new-wordnet-type {jejunum.n.01} {small_intestine.n.01}) (english {jejunum.n.01} "jejunum") (new-wordnet-type {ileum.n.01} {small_intestine.n.01}) (english {ileum.n.01} "ileum") (new-wordnet-type {duodenum.n.01} {small_intestine.n.01}) (english {duodenum.n.01} "duodenum") (new-wordnet-type {large_intestine.n.01} {intestine.n.01}) (english {large_intestine.n.01} "large intestine") (new-wordnet-type {colon.n.01} {large_intestine.n.01}) (english {colon.n.01} "colon") (new-wordnet-type {transverse_colon.n.01} {colon.n.01}) (english {transverse_colon.n.01} "transverse colon") (new-wordnet-type {sigmoid_colon.n.01} {colon.n.01}) (english {sigmoid_colon.n.01} "sigmoid colon" "sigmoid flexure") (new-wordnet-type {megacolon.n.01} {colon.n.01}) (english {megacolon.n.01} "megacolon") (new-wordnet-type {descending_colon.n.01} {colon.n.01}) (english {descending_colon.n.01} "descending colon") (new-wordnet-type {ascending_colon.n.01} {colon.n.01}) (english {ascending_colon.n.01} "ascending colon") (new-wordnet-type {hindgut.n.01} {internal_organ.n.01}) (english {hindgut.n.01} "hindgut") (new-wordnet-type {heart.n.02} {internal_organ.n.01}) (english {heart.n.02} "heart" "pump" "ticker") (new-wordnet-type {biauriculate_heart.n.01} {heart.n.02}) (english {biauriculate_heart.n.01} "biauriculate heart") (new-wordnet-type {athlete's_heart.n.01} {heart.n.02}) (english {athlete's_heart.n.01} "athlete's heart") (new-wordnet-type {excretory_organ.n.01} {internal_organ.n.01}) (english {excretory_organ.n.01} "excretory organ" "urinary organ") (new-wordnet-type {kidney.n.01} {excretory_organ.n.01}) (english {kidney.n.01} "kidney") (new-wordnet-type {flame_cell.n.01} {excretory_organ.n.01}) (english {flame_cell.n.01} "flame cell") (new-wordnet-type {gland.n.01} {organ.n.01}) (english {gland.n.01} "gland" "secretory organ" "secretor" "secreter") (new-wordnet-type {silk_gland.n.01} {gland.n.01}) (english {silk_gland.n.01} "silk gland" "serictery" "sericterium") (new-wordnet-type {green_gland.n.01} {gland.n.01}) (english {green_gland.n.01} "green gland") (new-wordnet-type {exocrine_gland.n.01} {gland.n.01}) (english {exocrine_gland.n.01} "exocrine gland" "exocrine" "duct gland") (new-wordnet-type {vestibular_gland.n.01} {exocrine_gland.n.01}) (english {vestibular_gland.n.01} "vestibular gland") (new-wordnet-type {bartholin's_gland.n.01} {vestibular_gland.n.01}) (english {bartholin's_gland.n.01} "Bartholin's gland") (new-wordnet-type {sweat_gland.n.01} {exocrine_gland.n.01}) (english {sweat_gland.n.01} "sweat gland" "sudoriferous gland") (new-wordnet-type {eccrine_gland.n.01} {sweat_gland.n.01}) (english {eccrine_gland.n.01} "eccrine gland") (new-wordnet-type {apocrine_gland.n.01} {sweat_gland.n.01}) (english {apocrine_gland.n.01} "apocrine gland") (new-wordnet-type {seminal_vesicle.n.01} {exocrine_gland.n.01}) (english {seminal_vesicle.n.01} "seminal vesicle") (new-wordnet-type {salivary_gland.n.01} {exocrine_gland.n.01}) (english {salivary_gland.n.01} "salivary gland") (new-wordnet-type {submaxillary_gland.n.01} {salivary_gland.n.01}) (english {submaxillary_gland.n.01} "submaxillary gland" "submaxillary salivary gland" "submandibular gland" "submandibular salivary gland" "mandibular gland") (new-wordnet-type {sublingual_gland.n.01} {salivary_gland.n.01}) (english {sublingual_gland.n.01} "sublingual gland" "sublingual salivary gland") (new-wordnet-type {parotid_gland.n.01} {salivary_gland.n.01}) (english {parotid_gland.n.01} "parotid gland") (new-wordnet-type {pancreas.n.01} {exocrine_gland.n.01}) (english {pancreas.n.01} "pancreas") (new-wordnet-type {oil_gland.n.01} {exocrine_gland.n.01}) (english {oil_gland.n.01} "oil gland") (new-wordnet-type {uropygial_gland.n.01} {oil_gland.n.01}) (english {uropygial_gland.n.01} "uropygial gland" "preen gland") (new-wordnet-type {sebaceous_gland.n.01} {oil_gland.n.01}) (english {sebaceous_gland.n.01} "sebaceous gland" "sebaceous follicle" "glandulae sebaceae") (new-wordnet-type {montgomery's_tubercle.n.01} {sebaceous_gland.n.01}) (english {montgomery's_tubercle.n.01} "Montgomery's tubercle") (new-wordnet-type {meibomian_gland.n.01} {sebaceous_gland.n.01}) (english {meibomian_gland.n.01} "Meibomian gland" "tarsal gland") (new-wordnet-type {nabothian_gland.n.01} {exocrine_gland.n.01}) (english {nabothian_gland.n.01} "nabothian gland") (new-wordnet-type {mammary_gland.n.01} {exocrine_gland.n.01}) (english {mammary_gland.n.01} "mammary gland" "mamma") (new-wordnet-type {udder.n.01} {mammary_gland.n.01}) (english {udder.n.01} "udder" "bag") (new-wordnet-type {dug.n.01} {mammary_gland.n.01}) (english {dug.n.01} "dug") (new-wordnet-type {breast.n.02} {mammary_gland.n.01}) (english {breast.n.02} "breast" "bosom" "knocker" "boob" "tit" "titty") (new-wordnet-type {lacrimal_gland.n.01} {exocrine_gland.n.01}) (english {lacrimal_gland.n.01} "lacrimal gland" "lachrymal gland" "tear gland") (new-wordnet-type {digestive_gland.n.01} {exocrine_gland.n.01}) (english {digestive_gland.n.01} "digestive gland") (new-wordnet-type {cowper's_gland.n.01} {exocrine_gland.n.01}) (english {cowper's_gland.n.01} "Cowper's gland" "bulbourethral gland") (new-wordnet-type {cervical_glands.n.01} {exocrine_gland.n.01}) (english {cervical_glands.n.01} "cervical glands" "cervical glands of the uterus" "glandulae cervicales uteri") (new-wordnet-type {endocrine_gland.n.01} {gland.n.01}) (english {endocrine_gland.n.01} "endocrine gland" "endocrine" "ductless gland") (new-wordnet-type {thyroid_gland.n.01} {endocrine_gland.n.01}) (english {thyroid_gland.n.01} "thyroid gland" "thyroid") (new-wordnet-type {thymus_gland.n.01} {endocrine_gland.n.01}) (english {thymus_gland.n.01} "thymus gland" "thymus") (new-wordnet-type {prostate_gland.n.01} {endocrine_gland.n.01}) (english {prostate_gland.n.01} "prostate gland" "prostate") (new-wordnet-type {posterior_pituitary.n.01} {endocrine_gland.n.01}) (english {posterior_pituitary.n.01} "posterior pituitary" "posterior pituitary gland" "neurohypophysis" "pars nervosa") (new-wordnet-type {pituitary.n.01} {endocrine_gland.n.01}) (english {pituitary.n.01} "pituitary" "pituitary gland" "pituitary body" "hypophysis") (new-wordnet-type {pineal_gland.n.01} {endocrine_gland.n.01}) (english {pineal_gland.n.01} "pineal gland" "pineal body" "epiphysis cerebri" "epiphysis") (new-wordnet-type {pars_intermedia.n.01} {endocrine_gland.n.01}) (english {pars_intermedia.n.01} "pars intermedia") (new-wordnet-type {pars_distilis.n.01} {endocrine_gland.n.01}) (english {pars_distilis.n.01} "pars distilis" "pars anterior") (new-wordnet-type {parathyroid_gland.n.01} {endocrine_gland.n.01}) (english {parathyroid_gland.n.01} "parathyroid gland" "parathyroid") (new-wordnet-type {islands_of_langerhans.n.01} {endocrine_gland.n.01}) (english {islands_of_langerhans.n.01} "islands of Langerhans" "isles of Langerhans" "islets of Langerhans") (new-wordnet-type {gonad.n.01} {endocrine_gland.n.01}) (english {gonad.n.01} "gonad" "sex gland") (new-wordnet-type {testis.n.01} {gonad.n.01}) (english {testis.n.01} "testis" "testicle" "orchis" "ball" "ballock" "bollock" "nut" "egg") (new-wordnet-type {ovotestis.n.01} {gonad.n.01}) (english {ovotestis.n.01} "ovotestis") (new-wordnet-type {ovary.n.02} {gonad.n.01}) (english {ovary.n.02} "ovary") (new-wordnet-type {corpus_luteum.n.01} {endocrine_gland.n.01}) (english {corpus_luteum.n.01} "corpus luteum") (new-wordnet-type {anterior_pituitary.n.01} {endocrine_gland.n.01}) (english {anterior_pituitary.n.01} "anterior pituitary" "anterior pituitary gland" "adenohypophysis") (new-wordnet-type {adrenal_medulla.n.01} {endocrine_gland.n.01}) (english {adrenal_medulla.n.01} "adrenal medulla") (new-wordnet-type {adrenal_gland.n.01} {endocrine_gland.n.01}) (english {adrenal_gland.n.01} "adrenal gland" "adrenal" "suprarenal gland") (new-wordnet-type {adrenal_cortex.n.01} {endocrine_gland.n.01}) (english {adrenal_cortex.n.01} "adrenal cortex") (new-wordnet-type {foot.n.06} {organ.n.01}) (english {foot.n.06} "foot" "invertebrate foot") (new-wordnet-type {tube_foot.n.01} {foot.n.06}) (english {tube_foot.n.01} "tube foot") (new-wordnet-type {external_organ.n.01} {organ.n.01}) (english {external_organ.n.01} "external organ") (new-wordnet-type {precordium.n.01} {external_organ.n.01}) (english {precordium.n.01} "precordium") (new-wordnet-type {external_ear.n.01} {external_organ.n.01}) (english {external_ear.n.01} "external ear" "outer ear") (new-wordnet-type {erectile_organ.n.01} {organ.n.01}) (english {erectile_organ.n.01} "erectile organ") (new-wordnet-type {penis.n.01} {erectile_organ.n.01}) (english {penis.n.01} "penis" "phallus" "member") (new-wordnet-type {micropenis.n.01} {penis.n.01}) (english {micropenis.n.01} "micropenis" "microphallus") (new-wordnet-type {cock.n.01} {penis.n.01}) (english {cock.n.01} "cock" "prick" "dick" "shaft" "pecker" "peter" "tool" "putz") (new-wordnet-type {clitoris.n.01} {erectile_organ.n.01}) (english {clitoris.n.01} "clitoris" "clit" "button") (new-wordnet-type {end_organ.n.01} {organ.n.01}) (english {end_organ.n.01} "end organ") (new-wordnet-type {osmoreceptor.n.01} {end_organ.n.01}) (english {osmoreceptor.n.01} "osmoreceptor") (new-wordnet-type {end-plate.n.01} {end_organ.n.01}) (english {end-plate.n.01} "end-plate" "endplate" "motor end plate") (new-wordnet-type {effector.n.03} {organ.n.01}) (english {effector.n.03} "effector") (new-wordnet-type {ctene.n.01} {organ.n.01}) (english {ctene.n.01} "ctene" "comb-plate") (new-wordnet-type {contractile_organ.n.01} {organ.n.01}) (english {contractile_organ.n.01} "contractile organ" "contractor") (new-wordnet-type {muscle.n.01} {contractile_organ.n.01}) (english {muscle.n.01} "muscle" "musculus") (new-wordnet-type {tensor.n.02} {muscle.n.01}) (english {tensor.n.02} "tensor") (new-wordnet-type {tensor_tympani.n.01} {tensor.n.02}) (english {tensor_tympani.n.01} "tensor tympani") (new-wordnet-type {supinator.n.01} {muscle.n.01}) (english {supinator.n.01} "supinator") (new-wordnet-type {sphincter.n.01} {muscle.n.01}) (english {sphincter.n.01} "sphincter" "anatomical sphincter" "sphincter muscle") (new-wordnet-type {urethral_sphincter.n.01} {sphincter.n.01}) (english {urethral_sphincter.n.01} "urethral sphincter" "musculus sphincter urethrae") (new-wordnet-type {pyloric_sphincter.n.01} {sphincter.n.01}) (english {pyloric_sphincter.n.01} "pyloric sphincter" "pyloric valve" "musculus sphincter pylori") (new-wordnet-type {pupillary_sphincter.n.01} {sphincter.n.01}) (english {pupillary_sphincter.n.01} "pupillary sphincter" "musculus sphincter pupillae") (new-wordnet-type {physiological_sphincter.n.01} {sphincter.n.01}) (english {physiological_sphincter.n.01} "physiological sphincter") (new-wordnet-type {cardiac_sphincter.n.01} {physiological_sphincter.n.01}) (english {cardiac_sphincter.n.01} "cardiac sphincter") (new-wordnet-type {musculus_sphincter_ductus_pancreatici.n.01} {sphincter.n.01}) (english {musculus_sphincter_ductus_pancreatici.n.01} "musculus sphincter ductus pancreatici") (new-wordnet-type {musculus_sphincter_ductus_choledochi.n.01} {sphincter.n.01}) (english {musculus_sphincter_ductus_choledochi.n.01} "musculus sphincter ductus choledochi") (new-wordnet-type {bladder_sphincter.n.01} {sphincter.n.01}) (english {bladder_sphincter.n.01} "bladder sphincter" "musculus sphincter vesicae") (new-wordnet-type {anal_sphincter.n.01} {sphincter.n.01}) (english {anal_sphincter.n.01} "anal sphincter" "sphincter ani" "musculus sphincter ani") (new-wordnet-type {smooth_muscle.n.01} {muscle.n.01}) (english {smooth_muscle.n.01} "smooth muscle" "involuntary muscle") (new-wordnet-type {myometrium.n.01} {smooth_muscle.n.01}) (english {myometrium.n.01} "myometrium") (new-wordnet-type {musculus_sphincter_ani_internus.n.01} {smooth_muscle.n.01}) (english {musculus_sphincter_ani_internus.n.01} "musculus sphincter ani internus") (new-wordnet-type {skeletal_muscle.n.01} {muscle.n.01}) (english {skeletal_muscle.n.01} "skeletal muscle" "striated muscle") (new-wordnet-type {voluntary_muscle.n.01} {skeletal_muscle.n.01}) (english {voluntary_muscle.n.01} "voluntary muscle") (new-wordnet-type {triceps.n.01} {skeletal_muscle.n.01}) (english {triceps.n.01} "triceps") (new-wordnet-type {triceps_brachii.n.01} {triceps.n.01}) (english {triceps_brachii.n.01} "triceps brachii" "musculus triceps brachii") (new-wordnet-type {trapezius.n.01} {skeletal_muscle.n.01}) (english {trapezius.n.01} "trapezius" "trapezius muscle" "cowl muscle" "musculus trapezius") (new-wordnet-type {tibialis.n.01} {skeletal_muscle.n.01}) (english {tibialis.n.01} "tibialis" "tibialis muscle" "musculus tibialis") (new-wordnet-type {tibialis_posticus.n.01} {tibialis.n.01}) (english {tibialis_posticus.n.01} "tibialis posticus" "tibialis posterior") (new-wordnet-type {tibialis_anticus.n.01} {tibialis.n.01}) (english {tibialis_anticus.n.01} "tibialis anticus" "tibialis anterior") (new-wordnet-type {teres.n.01} {skeletal_muscle.n.01}) (english {teres.n.01} "teres" "teres muscle") (new-wordnet-type {teres_minor.n.01} {teres.n.01}) (english {teres_minor.n.01} "teres minor" "teres minor muscle" "musculus teres minor") (new-wordnet-type {teres_major.n.01} {teres.n.01}) (english {teres_major.n.01} "teres major" "teres major muscle" "musculus teres major") (new-wordnet-type {temporalis_muscle.n.01} {skeletal_muscle.n.01}) (english {temporalis_muscle.n.01} "temporalis muscle" "temporal muscle" "temporalis" "musculus temporalis") (new-wordnet-type {sternocleidomastoid.n.01} {skeletal_muscle.n.01}) (english {sternocleidomastoid.n.01} "sternocleidomastoid" "sternocleidomastoid muscle" "sternocleido mastoideus" "musculus sternocleidomastoideus") (new-wordnet-type {splenius.n.01} {skeletal_muscle.n.01}) (english {splenius.n.01} "splenius" "splenius muscle") (new-wordnet-type {soleus.n.01} {skeletal_muscle.n.01}) (english {soleus.n.01} "soleus" "soleus muscle") (new-wordnet-type {serratus.n.01} {skeletal_muscle.n.01}) (english {serratus.n.01} "serratus" "serratus muscles") (new-wordnet-type {posterior_serratus_muscle.n.01} {serratus.n.01}) (english {posterior_serratus_muscle.n.01} "posterior serratus muscle" "serratus posterior" "musculus serratus posterior") (new-wordnet-type {serratus_posterior_superior.n.01} {posterior_serratus_muscle.n.01}) (english {serratus_posterior_superior.n.01} "serratus posterior superior") (new-wordnet-type {serratus_posterior_inferior.n.01} {posterior_serratus_muscle.n.01}) (english {serratus_posterior_inferior.n.01} "serratus posterior inferior") (new-wordnet-type {anterior_serratus_muscle.n.01} {serratus.n.01}) (english {anterior_serratus_muscle.n.01} "anterior serratus muscle" "serratus anterior" "musculus serratus anterior" "serratus magnus") (new-wordnet-type {scalenus.n.01} {skeletal_muscle.n.01}) (english {scalenus.n.01} "scalenus" "scalene muscle" "musculus scalenus") (new-wordnet-type {sartorius.n.01} {skeletal_muscle.n.01}) (english {sartorius.n.01} "sartorius" "sartorius muscle" "musculus sartorius") (new-wordnet-type {rhomboid.n.02} {skeletal_muscle.n.01}) (english {rhomboid.n.02} "rhomboid" "rhomboid muscle") (new-wordnet-type {rhomboideus_major_muscle.n.01} {rhomboid.n.02}) (english {rhomboideus_major_muscle.n.01} "rhomboideus major muscle" "greater rhomboid muscle" "musculus rhomboideus major") (new-wordnet-type {rhomboid_minor_muscle.n.01} {rhomboid.n.02}) (english {rhomboid_minor_muscle.n.01} "rhomboid minor muscle" "lesser rhomboid muscle" "musculus rhomboideus minor") (new-wordnet-type {pterygoid_muscle.n.01} {skeletal_muscle.n.01}) (english {pterygoid_muscle.n.01} "pterygoid muscle") (new-wordnet-type {psoas.n.01} {skeletal_muscle.n.01}) (english {psoas.n.01} "psoas") (new-wordnet-type {peroneus.n.01} {skeletal_muscle.n.01}) (english {peroneus.n.01} "peroneus") (new-wordnet-type {pectoral.n.01} {skeletal_muscle.n.01}) (english {pectoral.n.01} "pectoral" "pectoral muscle" "pectoralis" "musculus pectoralis" "pecs") (new-wordnet-type {pectoralis_minor.n.01} {pectoral.n.01}) (english {pectoralis_minor.n.01} "pectoralis minor" "musculus pectoralis minor" "smaller pectoral muscle") (new-wordnet-type {pectoralis_major.n.01} {pectoral.n.01}) (english {pectoralis_major.n.01} "pectoralis major" "musculus pectoralis major" "greater pectoral muscle") (new-wordnet-type {musculus_sphincter_ani_externus.n.01} {skeletal_muscle.n.01}) (english {musculus_sphincter_ani_externus.n.01} "musculus sphincter ani externus") (new-wordnet-type {latissimus_dorsi.n.01} {skeletal_muscle.n.01}) (english {latissimus_dorsi.n.01} "latissimus dorsi" "lat") (new-wordnet-type {intercostal.n.01} {skeletal_muscle.n.01}) (english {intercostal.n.01} "intercostal" "intercostal muscle" "musculus intercostalis") (new-wordnet-type {gluteus.n.01} {skeletal_muscle.n.01}) (english {gluteus.n.01} "gluteus" "gluteus muscle" "gluteal muscle" "glute") (new-wordnet-type {gluteus_minimus.n.01} {gluteus.n.01}) (english {gluteus_minimus.n.01} "gluteus minimus") (new-wordnet-type {gluteus_medius.n.01} {gluteus.n.01}) (english {gluteus_medius.n.01} "gluteus medius") (new-wordnet-type {gluteus_maximus.n.01} {gluteus.n.01}) (english {gluteus_maximus.n.01} "gluteus maximus") (new-wordnet-type {gastrocnemius.n.01} {skeletal_muscle.n.01}) (english {gastrocnemius.n.01} "gastrocnemius" "gastrocnemius muscle") (new-wordnet-type {flexor_muscle.n.01} {skeletal_muscle.n.01}) (english {flexor_muscle.n.01} "flexor muscle" "flexor") (new-wordnet-type {facial_muscle.n.01} {skeletal_muscle.n.01}) (english {facial_muscle.n.01} "facial muscle") (new-wordnet-type {platysma.n.01} {facial_muscle.n.01}) (english {platysma.n.01} "platysma") (new-wordnet-type {masseter.n.01} {facial_muscle.n.01}) (english {masseter.n.01} "masseter") (new-wordnet-type {cheek_muscle.n.01} {facial_muscle.n.01}) (english {cheek_muscle.n.01} "cheek muscle" "buccinator muscle" "musculus buccinator") (new-wordnet-type {extensor_muscle.n.01} {skeletal_muscle.n.01}) (english {extensor_muscle.n.01} "extensor muscle" "extensor") (new-wordnet-type {quadriceps.n.01} {extensor_muscle.n.01}) (english {quadriceps.n.01} "quadriceps" "quadriceps femoris" "musculus quadriceps femoris" "quad") (new-wordnet-type {depressor.n.01} {skeletal_muscle.n.01}) (english {depressor.n.01} "depressor" "depressor muscle") (new-wordnet-type {deltoid.n.01} {skeletal_muscle.n.01}) (english {deltoid.n.01} "deltoid" "deltoid muscle" "musculus deltoideus") (new-wordnet-type {calf.n.02} {skeletal_muscle.n.01}) (english {calf.n.02} "calf" "sura") (new-wordnet-type {mid-calf.n.01} {calf.n.02}) (english {mid-calf.n.01} "mid-calf") (new-wordnet-type {biceps.n.01} {skeletal_muscle.n.01}) (english {biceps.n.01} "biceps") (new-wordnet-type {musculus_biceps_femoris.n.01} {biceps.n.01}) (english {musculus_biceps_femoris.n.01} "musculus biceps femoris" "femoral biceps") (new-wordnet-type {biceps_brachii.n.01} {biceps.n.01}) (english {biceps_brachii.n.01} "biceps brachii" "musculus biceps brachii" "biceps humeri") (new-wordnet-type {axial_muscle.n.01} {skeletal_muscle.n.01}) (english {axial_muscle.n.01} "axial muscle") (new-wordnet-type {articular_muscle.n.01} {skeletal_muscle.n.01}) (english {articular_muscle.n.01} "articular muscle") (new-wordnet-type {musculus_articularis_genus.n.01} {articular_muscle.n.01}) (english {musculus_articularis_genus.n.01} "musculus articularis genus") (new-wordnet-type {musculus_articularis_cubiti.n.01} {articular_muscle.n.01}) (english {musculus_articularis_cubiti.n.01} "musculus articularis cubiti") (new-wordnet-type {anconeous_muscle.n.01} {skeletal_muscle.n.01}) (english {anconeous_muscle.n.01} "anconeous muscle" "musculus anconeus") (new-wordnet-type {adductor.n.01} {skeletal_muscle.n.01}) (english {adductor.n.01} "adductor" "adductor muscle") (new-wordnet-type {musculus_adductor_magnus.n.01} {adductor.n.01}) (english {musculus_adductor_magnus.n.01} "musculus adductor magnus" "great adductor muscle") (new-wordnet-type {musculus_adductor_longus.n.01} {adductor.n.01}) (english {musculus_adductor_longus.n.01} "musculus adductor longus") (new-wordnet-type {musculus_adductor_hallucis.n.01} {adductor.n.01}) (english {musculus_adductor_hallucis.n.01} "musculus adductor hallucis") (new-wordnet-type {musculus_adductor_brevis.n.01} {adductor.n.01}) (english {musculus_adductor_brevis.n.01} "musculus adductor brevis") (new-wordnet-type {abductor.n.02} {skeletal_muscle.n.01}) (english {abductor.n.02} "abductor" "abductor muscle") (new-wordnet-type {musculus_abductor_pollicis.n.01} {abductor.n.02}) (english {musculus_abductor_pollicis.n.01} "musculus abductor pollicis") (new-wordnet-type {musculus_abductor_hallucis.n.01} {abductor.n.02}) (english {musculus_abductor_hallucis.n.01} "musculus abductor hallucis") (new-wordnet-type {musculus_abductor_digiti_minimi_pedis.n.01} {abductor.n.02}) (english {musculus_abductor_digiti_minimi_pedis.n.01} "musculus abductor digiti minimi pedis") (new-wordnet-type {musculus_abductor_digiti_minimi_manus.n.01} {abductor.n.02}) (english {musculus_abductor_digiti_minimi_manus.n.01} "musculus abductor digiti minimi manus") (new-wordnet-type {abdominal.n.01} {skeletal_muscle.n.01}) (english {abdominal.n.01} "abdominal" "abdominal muscle" "ab") (new-wordnet-type {transversus_abdominis_muscle.n.01} {abdominal.n.01}) (english {transversus_abdominis_muscle.n.01} "transversus abdominis muscle" "transverse muscle of abdomen" "musculus transversalis abdominis" "transversus abdominis") (new-wordnet-type {external_oblique_muscle.n.01} {abdominal.n.01}) (english {external_oblique_muscle.n.01} "external oblique muscle" "musculus obliquus externus abdominis" "abdominal external oblique muscle" "oblique") (new-wordnet-type {rectus.n.01} {muscle.n.01}) (english {rectus.n.01} "rectus") (new-wordnet-type {pronator.n.01} {muscle.n.01}) (english {pronator.n.01} "pronator") (new-wordnet-type {ocular_muscle.n.01} {muscle.n.01}) (english {ocular_muscle.n.01} "ocular muscle" "eye muscle") (new-wordnet-type {superior_rectus_muscle.n.01} {ocular_muscle.n.01}) (english {superior_rectus_muscle.n.01} "superior rectus muscle" "superior rectus" "rectus superior") (new-wordnet-type {medial_rectus_muscle.n.01} {ocular_muscle.n.01}) (english {medial_rectus_muscle.n.01} "medial rectus muscle" "medial rectus" "rectus medialis") (new-wordnet-type {inferior_rectus_muscle.n.01} {ocular_muscle.n.01}) (english {inferior_rectus_muscle.n.01} "inferior rectus muscle" "inferior rectus" "rectus inferior") (new-wordnet-type {abducens_muscle.n.01} {ocular_muscle.n.01}) (english {abducens_muscle.n.01} "abducens muscle" "lateral rectus muscle" "lateral rectus" "rectus lateralis") (new-wordnet-type {levator.n.01} {muscle.n.01}) (english {levator.n.01} "levator") (new-wordnet-type {antagonistic_muscle.n.01} {muscle.n.01}) (english {antagonistic_muscle.n.01} "antagonistic muscle") (new-wordnet-type {antagonist.n.02} {antagonistic_muscle.n.01}) (english {antagonist.n.02} "antagonist") (new-wordnet-type {agonist.n.03} {antagonistic_muscle.n.01}) (english {agonist.n.03} "agonist") (new-wordnet-type {mentum.n.03} {body_part.n.01}) (english {mentum.n.03} "mentum") (new-wordnet-type {loins.n.02} {body_part.n.01}) (english {loins.n.02} "loins") (new-wordnet-type {loin.n.02} {body_part.n.01}) (english {loin.n.02} "loin" "lumbus") (new-wordnet-type {lobe.n.01} {body_part.n.01}) (english {lobe.n.01} "lobe") (new-wordnet-type {temporal_lobe.n.01} {lobe.n.01}) (english {temporal_lobe.n.01} "temporal lobe" "temporal ccortex") (new-wordnet-type {prefrontal_lobe.n.01} {lobe.n.01}) (english {prefrontal_lobe.n.01} "prefrontal lobe" "prefrontal cortex") (new-wordnet-type {parietal_lobe.n.01} {lobe.n.01}) (english {parietal_lobe.n.01} "parietal lobe" "parietal cortex") (new-wordnet-type {occipital_lobe.n.01} {lobe.n.01}) (english {occipital_lobe.n.01} "occipital lobe" "occipital cortex") (new-wordnet-type {lobule.n.01} {lobe.n.01}) (english {lobule.n.01} "lobule") (new-wordnet-type {lobe_of_the_lung.n.01} {lobe.n.01}) (english {lobe_of_the_lung.n.01} "lobe of the lung") (new-wordnet-type {hepatic_lobe.n.01} {lobe.n.01}) (english {hepatic_lobe.n.01} "hepatic lobe") (new-wordnet-type {frontal_lobe.n.01} {lobe.n.01}) (english {frontal_lobe.n.01} "frontal lobe" "frontal cortex") (new-wordnet-type {earlobe.n.01} {lobe.n.01}) (english {earlobe.n.01} "earlobe" "ear lobe") (new-wordnet-type {joint.n.01} {body_part.n.01}) (english {joint.n.01} "joint" "articulation" "articulatio") (new-wordnet-type {synovial_joint.n.01} {joint.n.01}) (english {synovial_joint.n.01} "synovial joint" "articulatio synovialis" "diarthrosis") (new-wordnet-type {pivot_joint.n.01} {synovial_joint.n.01}) (english {pivot_joint.n.01} "pivot joint" "rotary joint" "rotatory joint" "articulatio trochoidea") (new-wordnet-type {mandibular_joint.n.01} {synovial_joint.n.01}) (english {mandibular_joint.n.01} "mandibular joint" "temporomandibular joint" "articulatio temporomandibularis") (new-wordnet-type {knuckle.n.01} {synovial_joint.n.01}) (english {knuckle.n.01} "knuckle" "knuckle joint" "metacarpophalangeal joint") (new-wordnet-type {hinge_joint.n.01} {synovial_joint.n.01}) (english {hinge_joint.n.01} "hinge joint" "ginglymus" "ginglymoid joint") (new-wordnet-type {knee.n.01} {hinge_joint.n.01}) (english {knee.n.01} "knee" "knee joint" "human knee" "articulatio genus" "genu") (new-wordnet-type {interphalangeal_joint.n.01} {hinge_joint.n.01}) (english {interphalangeal_joint.n.01} "interphalangeal joint") (new-wordnet-type {elbow.n.01} {hinge_joint.n.01}) (english {elbow.n.01} "elbow" "elbow joint" "human elbow" "cubitus" "cubital joint" "articulatio cubiti") (new-wordnet-type {gliding_joint.n.01} {synovial_joint.n.01}) (english {gliding_joint.n.01} "gliding joint" "articulatio plana") (new-wordnet-type {wrist.n.01} {gliding_joint.n.01}) (english {wrist.n.01} "wrist" "carpus" "wrist joint" "radiocarpal joint" "articulatio radiocarpea") (new-wordnet-type {ankle.n.01} {gliding_joint.n.01}) (english {ankle.n.01} "ankle" "ankle joint" "mortise joint" "articulatio talocruralis") (new-wordnet-type {ball-and-socket_joint.n.01} {synovial_joint.n.01}) (english {ball-and-socket_joint.n.01} "ball-and-socket joint" "spheroid joint" "cotyloid joint" "enarthrodial joint" "enarthrosis" "articulatio spheroidea") (new-wordnet-type {shoulder.n.03} {ball-and-socket_joint.n.01}) (english {shoulder.n.03} "shoulder" "shoulder joint" "articulatio humeri") (new-wordnet-type {hip.n.03} {ball-and-socket_joint.n.01}) (english {hip.n.03} "hip" "hip joint" "coxa" "articulatio coxae") (new-wordnet-type {suture.n.01} {joint.n.01}) (english {suture.n.01} "suture" "sutura" "fibrous joint") (new-wordnet-type {sagittal_suture.n.01} {suture.n.01}) (english {sagittal_suture.n.01} "sagittal suture" "interparietal suture" "sutura sagittalis") (new-wordnet-type {parietomastoid_suture.n.01} {suture.n.01}) (english {parietomastoid_suture.n.01} "parietomastoid suture") (new-wordnet-type {occipitomastoid_suture.n.01} {suture.n.01}) (english {occipitomastoid_suture.n.01} "occipitomastoid suture") (new-wordnet-type {lamboid_suture.n.01} {suture.n.01}) (english {lamboid_suture.n.01} "lamboid suture" "sutura lamboidea") (new-wordnet-type {internasal_suture.n.01} {suture.n.01}) (english {internasal_suture.n.01} "internasal suture" "sutura internasalis") (new-wordnet-type {intermaxillary_suture.n.01} {suture.n.01}) (english {intermaxillary_suture.n.01} "intermaxillary suture" "sutura intermaxillaris") (new-wordnet-type {frontal_suture.n.01} {suture.n.01}) (english {frontal_suture.n.01} "frontal suture" "sutura frontalis") (new-wordnet-type {coronal_suture.n.01} {suture.n.01}) (english {coronal_suture.n.01} "coronal suture" "sutura coronalis") (new-wordnet-type {stifle.n.01} {joint.n.01}) (english {stifle.n.01} "stifle" "knee") (new-wordnet-type {hock.n.02} {joint.n.01}) (english {hock.n.02} "hock" "hock-joint") (new-wordnet-type {fetlock.n.01} {joint.n.01}) (english {fetlock.n.01} "fetlock" "fetlock joint") (new-wordnet-type {elbow.n.05} {joint.n.01}) (english {elbow.n.05} "elbow") (new-wordnet-type {horseback.n.01} {body_part.n.01}) (english {horseback.n.01} "horseback") (new-wordnet-type {hip.n.01} {body_part.n.01}) (english {hip.n.01} "hip") (new-wordnet-type {hindquarters.n.02} {body_part.n.01}) (english {hindquarters.n.02} "hindquarters" "croup" "croupe" "rump") (new-wordnet-type {haunch.n.02} {hindquarters.n.02}) (english {haunch.n.02} "haunch") (new-wordnet-type {haunch.n.01} {body_part.n.01}) (english {haunch.n.01} "haunch") (new-wordnet-type {groove.n.03} {body_part.n.01}) (english {groove.n.03} "groove" "vallecula") (new-wordnet-type {fissure.n.03} {groove.n.03}) (english {fissure.n.03} "fissure") (new-wordnet-type {sulcus.n.01} {fissure.n.03}) (english {sulcus.n.01} "sulcus") (new-wordnet-type {parieto-occipital_sulcus.n.01} {sulcus.n.01}) (english {parieto-occipital_sulcus.n.01} "parieto-occipital sulcus" "parieto-occipital fissure") (new-wordnet-type {fissure_of_sylvius.n.01} {sulcus.n.01}) (english {fissure_of_sylvius.n.01} "fissure of Sylvius" "Sylvian fissure" "lateral cerebral sulcus" "sulcus lateralis cerebri") (new-wordnet-type {fissure_of_rolando.n.01} {sulcus.n.01}) (english {fissure_of_rolando.n.01} "fissure of Rolando" "Rolando's fissure" "central sulcus" "sulcus centralis") (new-wordnet-type {calcarine_sulcus.n.01} {sulcus.n.01}) (english {calcarine_sulcus.n.01} "calcarine sulcus" "calcarine fissure") (new-wordnet-type {hilus.n.01} {fissure.n.03}) (english {hilus.n.01} "hilus" "hilum") (new-wordnet-type {costal_groove.n.01} {groove.n.03}) (english {costal_groove.n.01} "costal groove") (new-wordnet-type {gaskin.n.01} {body_part.n.01}) (english {gaskin.n.01} "gaskin") (new-wordnet-type {fornix.n.01} {body_part.n.01}) (english {fornix.n.01} "fornix") (new-wordnet-type {flank.n.04} {body_part.n.01}) (english {flank.n.04} "flank") (new-wordnet-type {feature.n.02} {body_part.n.01}) (english {feature.n.02} "feature" "lineament") (new-wordnet-type {temple.n.02} {feature.n.02}) (english {temple.n.02} "temple") (new-wordnet-type {jowl.n.02} {feature.n.02}) (english {jowl.n.02} "jowl") (new-wordnet-type {jaw.n.02} {feature.n.02}) (english {jaw.n.02} "jaw") (new-wordnet-type {chin.n.01} {feature.n.02}) (english {chin.n.01} "chin" "mentum") (new-wordnet-type {double_chin.n.01} {chin.n.01}) (english {double_chin.n.01} "double chin" "buccula") (new-wordnet-type {cheek.n.01} {feature.n.02}) (english {cheek.n.01} "cheek") (new-wordnet-type {brow.n.01} {feature.n.02}) (english {brow.n.01} "brow" "forehead") (new-wordnet-type {external_body_part.n.01} {body_part.n.01}) (english {external_body_part.n.01} "external body part") (new-wordnet-type {throat.n.04} {external_body_part.n.01}) (english {throat.n.04} "throat") (new-wordnet-type {neck.n.01} {external_body_part.n.01}) (english {neck.n.01} "neck" "cervix") (new-wordnet-type {bull_neck.n.01} {neck.n.01}) (english {bull_neck.n.01} "bull neck") (new-wordnet-type {lip.n.01} {external_body_part.n.01}) (english {lip.n.01} "lip") (new-wordnet-type {labium.n.01} {external_body_part.n.01}) (english {labium.n.01} "labium") (new-wordnet-type {labia_minora.n.01} {labium.n.01}) (english {labia_minora.n.01} "labia minora") (new-wordnet-type {labia_majora.n.01} {labium.n.01}) (english {labia_majora.n.01} "labia majora") (new-wordnet-type {hood.n.10} {external_body_part.n.01}) (english {hood.n.10} "hood") (new-wordnet-type {head.n.01} {external_body_part.n.01}) (english {head.n.01} "head" "caput") (new-wordnet-type {human_head.n.01} {head.n.01}) (english {human_head.n.01} "human head") (new-wordnet-type {bullethead.n.01} {human_head.n.01}) (english {bullethead.n.01} "bullethead") (new-wordnet-type {attic.n.03} {human_head.n.01}) (english {attic.n.03} "attic" "bean" "bonce" "noodle" "noggin" "dome") (new-wordnet-type {frill.n.02} {external_body_part.n.01}) (english {frill.n.02} "frill" "ruff") (new-wordnet-type {face.n.07} {external_body_part.n.01}) (english {face.n.07} "face") (new-wordnet-type {muzzle.n.02} {face.n.07}) (english {muzzle.n.02} "muzzle") (new-wordnet-type {face.n.01} {external_body_part.n.01}) (english {face.n.01} "face" "human face") (new-wordnet-type {countenance.n.03} {face.n.01}) (english {countenance.n.03} "countenance" "physiognomy" "phiz" "visage" "kisser" "smiler" "mug") (new-wordnet-type {pudding_face.n.01} {countenance.n.03}) (english {pudding_face.n.01} "pudding face" "pudding-face") (new-wordnet-type {extremity.n.05} {external_body_part.n.01}) (english {extremity.n.05} "extremity") (new-wordnet-type {vertebrate_foot.n.01} {extremity.n.05}) (english {vertebrate_foot.n.01} "vertebrate foot" "pedal extremity") (new-wordnet-type {foot.n.01} {vertebrate_foot.n.01}) (english {foot.n.01} "foot" "human foot" "pes") (new-wordnet-type {flatfoot.n.02} {foot.n.01}) (english {flatfoot.n.02} "flatfoot" "splayfoot" "pes planus") (new-wordnet-type {animal_foot.n.01} {vertebrate_foot.n.01}) (english {animal_foot.n.01} "animal foot" "foot") (new-wordnet-type {webfoot.n.01} {animal_foot.n.01}) (english {webfoot.n.01} "webfoot") (new-wordnet-type {trotter.n.01} {animal_foot.n.01}) (english {trotter.n.01} "trotter") (new-wordnet-type {paw.n.01} {animal_foot.n.01}) (english {paw.n.01} "paw") (new-wordnet-type {forepaw.n.01} {paw.n.01}) (english {forepaw.n.01} "forepaw") (new-wordnet-type {hand.n.13} {forepaw.n.01}) (english {hand.n.13} "hand") (new-wordnet-type {hoof.n.01} {animal_foot.n.01}) (english {hoof.n.01} "hoof") (new-wordnet-type {horse's_foot.n.01} {hoof.n.01}) (english {horse's_foot.n.01} "horse's foot") (new-wordnet-type {cloven_foot.n.02} {hoof.n.01}) (english {cloven_foot.n.02} "cloven foot" "cloven hoof") (new-wordnet-type {hindfoot.n.01} {animal_foot.n.01}) (english {hindfoot.n.01} "hindfoot") (new-wordnet-type {fossorial_foot.n.01} {animal_foot.n.01}) (english {fossorial_foot.n.01} "fossorial foot") (new-wordnet-type {forefoot.n.01} {animal_foot.n.01}) (english {forefoot.n.01} "forefoot") (new-wordnet-type {bird's_foot.n.01} {animal_foot.n.01}) (english {bird's_foot.n.01} "bird's foot") (new-wordnet-type {zygodactyl_foot.n.01} {bird's_foot.n.01}) (english {zygodactyl_foot.n.01} "zygodactyl foot") (new-wordnet-type {webbed_foot.n.01} {bird's_foot.n.01}) (english {webbed_foot.n.01} "webbed foot") (new-wordnet-type {lobate_foot.n.01} {bird's_foot.n.01}) (english {lobate_foot.n.01} "lobate foot") (new-wordnet-type {heterodactyl_foot.n.01} {bird's_foot.n.01}) (english {heterodactyl_foot.n.01} "heterodactyl foot") (new-wordnet-type {claw.n.04} {bird's_foot.n.01}) (english {claw.n.04} "claw") (new-wordnet-type {toe.n.01} {extremity.n.05}) (english {toe.n.01} "toe") (new-wordnet-type {little_toe.n.01} {toe.n.01}) (english {little_toe.n.01} "little toe") (new-wordnet-type {hammertoe.n.01} {toe.n.01}) (english {hammertoe.n.01} "hammertoe") (new-wordnet-type {big_toe.n.01} {toe.n.01}) (english {big_toe.n.01} "big toe" "great toe" "hallux") (new-wordnet-type {hand.n.01} {extremity.n.05}) (english {hand.n.01} "hand" "manus" "mitt" "paw") (new-wordnet-type {right.n.05} {hand.n.01}) (english {right.n.05} "right" "right hand") (new-wordnet-type {left.n.03} {hand.n.01}) (english {left.n.03} "left" "left hand") (new-wordnet-type {hooks.n.01} {hand.n.01}) (english {hooks.n.01} "hooks" "meat hooks" "maulers") (new-wordnet-type {fist.n.01} {hand.n.01}) (english {fist.n.01} "fist" "clenched fist") (new-wordnet-type {finger.n.01} {extremity.n.05}) (english {finger.n.01} "finger") (new-wordnet-type {thumb.n.01} {finger.n.01}) (english {thumb.n.01} "thumb" "pollex") (new-wordnet-type {ring_finger.n.01} {finger.n.01}) (english {ring_finger.n.01} "ring finger" "annualry") (new-wordnet-type {middle_finger.n.01} {finger.n.01}) (english {middle_finger.n.01} "middle finger") (new-wordnet-type {little_finger.n.01} {finger.n.01}) (english {little_finger.n.01} "little finger" "pinkie" "pinky") (new-wordnet-type {index.n.05} {finger.n.01}) (english {index.n.05} "index" "index finger" "forefinger") (new-wordnet-type {extremity.n.01} {external_body_part.n.01}) (english {extremity.n.01} "extremity" "appendage" "member") (new-wordnet-type {swimmeret.n.01} {extremity.n.01}) (english {swimmeret.n.01} "swimmeret" "pleopod") (new-wordnet-type {parapodium.n.01} {extremity.n.01}) (english {parapodium.n.01} "parapodium") (new-wordnet-type {mouthpart.n.01} {extremity.n.01}) (english {mouthpart.n.01} "mouthpart") (new-wordnet-type {limb.n.01} {extremity.n.01}) (english {limb.n.01} "limb") (new-wordnet-type {thigh.n.01} {limb.n.01}) (english {thigh.n.01} "thigh") (new-wordnet-type {lap.n.01} {thigh.n.01}) (english {lap.n.01} "lap") (new-wordnet-type {leg.n.02} {limb.n.01}) (english {leg.n.02} "leg") (new-wordnet-type {prehensor.n.01} {leg.n.02}) (english {prehensor.n.01} "prehensor") (new-wordnet-type {animal_leg.n.01} {leg.n.02}) (english {animal_leg.n.01} "animal leg") (new-wordnet-type {leg.n.01} {limb.n.01}) (english {leg.n.01} "leg") (new-wordnet-type {spindlelegs.n.02} {leg.n.01}) (english {spindlelegs.n.02} "spindlelegs" "spindleshanks") (new-wordnet-type {shank's_mare.n.01} {leg.n.01}) (english {shank's_mare.n.01} "shank's mare" "shanks' mare" "shank's pony" "shanks' pony") (new-wordnet-type {pin.n.05} {leg.n.01}) (english {pin.n.05} "pin" "peg" "stick") (new-wordnet-type {bowleg.n.01} {leg.n.01}) (english {bowleg.n.01} "bowleg" "bow leg" "bandyleg" "bandy leg" "genu varum" "tibia vara") (new-wordnet-type {hind_limb.n.01} {limb.n.01}) (english {hind_limb.n.01} "hind limb" "hindlimb") (new-wordnet-type {hind_leg.n.01} {hind_limb.n.01}) (english {hind_leg.n.01} "hind leg") (new-wordnet-type {forelimb.n.01} {limb.n.01}) (english {forelimb.n.01} "forelimb") (new-wordnet-type {foreleg.n.01} {forelimb.n.01}) (english {foreleg.n.01} "foreleg") (new-wordnet-type {forearm.n.01} {limb.n.01}) (english {forearm.n.01} "forearm") (new-wordnet-type {flipper.n.02} {limb.n.01}) (english {flipper.n.02} "flipper") (new-wordnet-type {cubitus.n.02} {limb.n.01}) (english {cubitus.n.02} "cubitus") (new-wordnet-type {crus.n.01} {limb.n.01}) (english {crus.n.01} "crus") (new-wordnet-type {arm.n.01} {limb.n.01}) (english {arm.n.01} "arm") (new-wordnet-type {fin.n.06} {extremity.n.01}) (english {fin.n.06} "fin") (new-wordnet-type {tail_fin.n.03} {fin.n.06}) (english {tail_fin.n.03} "tail fin" "caudal fin") (new-wordnet-type {homocercal_fin.n.01} {tail_fin.n.03}) (english {homocercal_fin.n.01} "homocercal fin") (new-wordnet-type {heterocercal_fin.n.01} {tail_fin.n.03}) (english {heterocercal_fin.n.01} "heterocercal fin") (new-wordnet-type {pelvic_fin.n.01} {fin.n.06}) (english {pelvic_fin.n.01} "pelvic fin" "ventral fin") (new-wordnet-type {pectoral_fin.n.01} {fin.n.06}) (english {pectoral_fin.n.01} "pectoral fin") (new-wordnet-type {dorsal_fin.n.01} {fin.n.06}) (english {dorsal_fin.n.01} "dorsal fin") (new-wordnet-type {fang.n.02} {extremity.n.01}) (english {fang.n.02} "fang") (new-wordnet-type {toxicognath.n.01} {fang.n.02}) (english {toxicognath.n.01} "toxicognath") (new-wordnet-type {digit.n.03} {extremity.n.01}) (english {digit.n.03} "digit" "dactyl") (new-wordnet-type {toe.n.01} {digit.n.03}) (english {toe.n.01} "toe") (new-wordnet-type {minimus.n.01} {digit.n.03}) (english {minimus.n.01} "minimus") (new-wordnet-type {little_toe.n.01} {minimus.n.01}) (english {little_toe.n.01} "little toe") (new-wordnet-type {little_finger.n.01} {minimus.n.01}) (english {little_finger.n.01} "little finger" "pinkie" "pinky") (new-wordnet-type {finger.n.01} {digit.n.03}) (english {finger.n.01} "finger") (new-wordnet-type {claw.n.03} {extremity.n.01}) (english {claw.n.03} "claw" "chela" "nipper" "pincer") (new-wordnet-type {chelicera.n.01} {extremity.n.01}) (english {chelicera.n.01} "chelicera") (new-wordnet-type {breast.n.04} {external_body_part.n.01}) (english {breast.n.04} "breast") (new-wordnet-type {breast.n.01} {external_body_part.n.01}) (english {breast.n.01} "breast" "chest") (new-wordnet-type {bosom.n.02} {breast.n.01}) (english {bosom.n.02} "bosom") (new-wordnet-type {arthromere.n.01} {external_body_part.n.01}) (english {arthromere.n.01} "arthromere") (new-wordnet-type {energid.n.01} {body_part.n.01}) (english {energid.n.01} "energid" "protoplast") (new-wordnet-type {dorsum.n.02} {body_part.n.01}) (english {dorsum.n.02} "dorsum") (new-wordnet-type {dock.n.06} {body_part.n.01}) (english {dock.n.06} "dock") (new-wordnet-type {dilator.n.01} {body_part.n.01}) (english {dilator.n.01} "dilator") (new-wordnet-type {cannon.n.05} {body_part.n.01}) (english {cannon.n.05} "cannon" "shank") (new-wordnet-type {buttocks.n.01} {body_part.n.01}) (english {buttocks.n.01} "buttocks" "nates" "arse" "butt" "backside" "bum" "buns" "can" "fundament" "hindquarters" "hind end" "keister" "posterior" "prat" "rear" "rear end" "rump" "stern" "seat" "tail" "tail end" "tooshie" "tush" "bottom" "behind" "derriere" "fanny" "ass") (new-wordnet-type {buttock.n.01} {body_part.n.01}) (english {buttock.n.01} "buttock" "cheek") (new-wordnet-type {back.n.01} {body_part.n.01}) (english {back.n.01} "back" "dorsum") (new-wordnet-type {area.n.03} {body_part.n.01}) (english {area.n.03} "area" "region") (new-wordnet-type {waist.n.01} {area.n.03}) (english {waist.n.01} "waist" "waistline") (new-wordnet-type {wasp_waist.n.01} {waist.n.01}) (english {wasp_waist.n.01} "wasp waist") (new-wordnet-type {thenar.n.01} {area.n.03}) (english {thenar.n.01} "thenar") (new-wordnet-type {sole.n.03} {area.n.03}) (english {sole.n.03} "sole") (new-wordnet-type {side.n.03} {area.n.03}) (english {side.n.03} "side") (new-wordnet-type {quick.n.01} {area.n.03}) (english {quick.n.01} "quick") (new-wordnet-type {pubes.n.01} {area.n.03}) (english {pubes.n.01} "pubes" "pubic region" "loins") (new-wordnet-type {pressure_point.n.03} {area.n.03}) (english {pressure_point.n.03} "pressure point") (new-wordnet-type {perineum.n.01} {area.n.03}) (english {perineum.n.01} "perineum") (new-wordnet-type {parafovea.n.01} {area.n.03}) (english {parafovea.n.01} "parafovea") (new-wordnet-type {palm.n.01} {area.n.03}) (english {palm.n.01} "palm" "thenar") (new-wordnet-type {middle.n.03} {area.n.03}) (english {middle.n.03} "middle" "midriff" "midsection") (new-wordnet-type {macula.n.02} {area.n.03}) (english {macula.n.02} "macula" "macula lutea" "macular area" "yellow spot") (new-wordnet-type {hypochondrium.n.01} {area.n.03}) (english {hypochondrium.n.01} "hypochondrium") (new-wordnet-type {half-moon.n.01} {area.n.03}) (english {half-moon.n.01} "half-moon" "lunula" "lunule") (new-wordnet-type {groin.n.01} {area.n.03}) (english {groin.n.01} "groin" "inguen") (new-wordnet-type {fovea.n.01} {area.n.03}) (english {fovea.n.01} "fovea" "fovea centralis") (new-wordnet-type {erogenous_zone.n.01} {area.n.03}) (english {erogenous_zone.n.01} "erogenous zone") (new-wordnet-type {epigastrium.n.01} {area.n.03}) (english {epigastrium.n.01} "epigastrium") (new-wordnet-type {cortical_area.n.01} {area.n.03}) (english {cortical_area.n.01} "cortical area" "cortical region") (new-wordnet-type {visual_area.n.01} {cortical_area.n.01}) (english {visual_area.n.01} "visual area" "visual cortex") (new-wordnet-type {striate_cortex.n.01} {cortical_area.n.01}) (english {striate_cortex.n.01} "striate cortex" "striate area" "first visual area" "area 17 of Brodmann" "Brodmann's area 17") (new-wordnet-type {sensorium.n.01} {cortical_area.n.01}) (english {sensorium.n.01} "sensorium") (new-wordnet-type {sensorimotor_area.n.01} {cortical_area.n.01}) (english {sensorimotor_area.n.01} "sensorimotor area" "sensorimotor region") (new-wordnet-type {motor_area.n.01} {cortical_area.n.01}) (english {motor_area.n.01} "motor area" "motor region" "motor cortex" "Rolando's area" "excitable area") (new-wordnet-type {language_area.n.01} {cortical_area.n.01}) (english {language_area.n.01} "language area" "language zone") (new-wordnet-type {brodmann's_area.n.01} {cortical_area.n.01}) (english {brodmann's_area.n.01} "Brodmann's area") (new-wordnet-type {auditory_area.n.01} {cortical_area.n.01}) (english {auditory_area.n.01} "auditory area" "auditory cortex") (new-wordnet-type {association_area.n.01} {cortical_area.n.01}) (english {association_area.n.01} "association area" "association cortex") (new-wordnet-type {cleavage.n.04} {area.n.03}) (english {cleavage.n.04} "cleavage") (new-wordnet-type {areola.n.02} {area.n.03}) (english {areola.n.02} "areola" "ring of color") (new-wordnet-type {area_of_cardiac_dullness.n.01} {area.n.03}) (english {area_of_cardiac_dullness.n.01} "area of cardiac dullness") (new-wordnet-type {apparatus.n.02} {body_part.n.01}) (english {apparatus.n.02} "apparatus") (new-wordnet-type {auditory_apparatus.n.01} {apparatus.n.02}) (english {auditory_apparatus.n.01} "auditory apparatus") (new-wordnet-type {ampulla.n.01} {body_part.n.01}) (english {ampulla.n.01} "ampulla") (new-wordnet-type {ambulacrum.n.01} {body_part.n.01}) (english {ambulacrum.n.01} "ambulacrum") (new-wordnet-type {adnexa.n.01} {body_part.n.01}) (english {adnexa.n.01} "adnexa" "annexa") (new-wordnet-type {abdomen.n.01} {body_part.n.01}) (english {abdomen.n.01} "abdomen" "venter" "stomach" "belly") (new-wordnet-type {underbelly.n.02} {abdomen.n.01}) (english {underbelly.n.02} "underbelly" "underbody") (new-wordnet-type {base.n.04} {part.n.03}) (english {base.n.04} "base") (new-wordnet-type {acicula.n.01} {part.n.03}) (english {acicula.n.01} "acicula") (new-wordnet-indv {south_pacific.n.01} {part.n.03}) (english {south_pacific.n.01} "South Pacific") (new-wordnet-indv {south_atlantic.n.01} {part.n.03}) (english {south_atlantic.n.01} "South Atlantic") (new-wordnet-indv {north_pacific.n.01} {part.n.03}) (english {north_pacific.n.01} "North Pacific") (new-wordnet-indv {north_atlantic.n.01} {part.n.03}) (english {north_atlantic.n.01} "North Atlantic") (new-wordnet-type {necessity.n.02} {thing.n.12}) (english {necessity.n.02} "necessity" "essential" "requirement" "requisite" "necessary") (new-wordnet-type {need.n.02} {necessity.n.02}) (english {need.n.02} "need" "want") (new-wordnet-type {must.n.01} {necessity.n.02}) (english {must.n.01} "must") (new-wordnet-type {desideratum.n.01} {necessity.n.02}) (english {desideratum.n.01} "desideratum") (new-wordnet-type {inessential.n.01} {thing.n.12}) (english {inessential.n.01} "inessential" "nonessential") (new-wordnet-type {adjunct.n.01} {inessential.n.01}) (english {adjunct.n.01} "adjunct") (new-wordnet-type {complement.n.04} {adjunct.n.01}) (english {complement.n.04} "complement" "accompaniment") (new-wordnet-type {body_of_water.n.01} {thing.n.12}) (english {body_of_water.n.01} "body of water" "water") (new-wordnet-type {waterway.n.01} {body_of_water.n.01}) (english {waterway.n.01} "waterway") (new-wordnet-type {rapid.n.01} {waterway.n.01}) (english {rapid.n.01} "rapid") (new-wordnet-type {mare_liberum.n.01} {waterway.n.01}) (english {mare_liberum.n.01} "mare liberum") (new-wordnet-type {mare_clausum.n.01} {waterway.n.01}) (english {mare_clausum.n.01} "mare clausum") (new-wordnet-type {ditch.n.02} {waterway.n.01}) (english {ditch.n.02} "ditch") (new-wordnet-indv {inland_passage.n.01} {waterway.n.01}) (english {inland_passage.n.01} "Inland Passage" "Inside Passage") (new-wordnet-indv {cross-florida_waterway.n.01} {waterway.n.01}) (english {cross-florida_waterway.n.01} "Cross-Florida Waterway" "Okeechobee Waterway") (new-wordnet-type {waterfall.n.01} {body_of_water.n.01}) (english {waterfall.n.01} "waterfall" "falls") (new-wordnet-type {cataract.n.02} {waterfall.n.01}) (english {cataract.n.02} "cataract") (new-wordnet-type {cascade.n.01} {waterfall.n.01}) (english {cascade.n.01} "cascade") (new-wordnet-indv {yosemite.n.01} {waterfall.n.01}) (english {yosemite.n.01} "Yosemite" "Yosemite Falls") (new-wordnet-indv {victoria.n.03} {waterfall.n.01}) (english {victoria.n.03} "Victoria" "Victoria Falls") (new-wordnet-indv {urubupunga.n.01} {waterfall.n.01}) (english {urubupunga.n.01} "Urubupunga" "Urubupunga Falls") (new-wordnet-indv {twin.n.03} {waterfall.n.01}) (english {twin.n.03} "Twin" "Twin Falls") (new-wordnet-indv {tugela.n.01} {waterfall.n.01}) (english {tugela.n.01} "Tugela" "Tugela Falls") (new-wordnet-indv {takakkaw.n.01} {waterfall.n.01}) (english {takakkaw.n.01} "Takakkaw") (new-wordnet-indv {sete_quedas.n.01} {waterfall.n.01}) (english {sete_quedas.n.01} "Sete Quedas" "Guaira" "Guaira Falls") (new-wordnet-indv {paulo_afonso.n.01} {waterfall.n.01}) (english {paulo_afonso.n.01} "Paulo Afonso" "Paulo Afonso Falls") (new-wordnet-indv {niagara.n.01} {waterfall.n.01}) (english {niagara.n.01} "Niagara" "Niagara Falls") (new-wordnet-indv {iguazu.n.01} {waterfall.n.01}) (english {iguazu.n.01} "Iguazu" "Iguazu Falls" "Iguassu" "Iguassu Falls" "Victoria Falls") (new-wordnet-indv {cuquenan.n.01} {waterfall.n.01}) (english {cuquenan.n.01} "Cuquenan" "Cuquenan Falls" "Kukenaam" "Kukenaam Falls") (new-wordnet-indv {canadian_falls.n.01} {waterfall.n.01}) (english {canadian_falls.n.01} "Canadian Falls" "Horseshoe Falls") (new-wordnet-indv {angel.n.04} {waterfall.n.01}) (english {angel.n.04} "Angel" "Angel Falls") (new-wordnet-indv {american_falls.n.01} {waterfall.n.01}) (english {american_falls.n.01} "American Falls") (new-wordnet-type {territorial_waters.n.01} {body_of_water.n.01}) (english {territorial_waters.n.01} "territorial waters") (new-wordnet-indv {united_states_waters.n.01} {territorial_waters.n.01}) (english {united_states_waters.n.01} "United States waters" "U.S. waters") (new-wordnet-type {stream.n.01} {body_of_water.n.01}) (english {stream.n.01} "stream" "watercourse") (new-wordnet-type {tidal_river.n.01} {stream.n.01}) (english {tidal_river.n.01} "tidal river" "tidewater river" "tidal stream" "tidewater stream") (new-wordnet-type {rivulet.n.01} {stream.n.01}) (english {rivulet.n.01} "rivulet" "rill" "run" "runnel" "streamlet") (new-wordnet-type {river.n.01} {stream.n.01}) (english {river.n.01} "river") (new-wordnet-indv {zhu_jiang.n.01} {river.n.01}) (english {zhu_jiang.n.01} "Zhu Jiang" "Canton River" "Chu Kiang" "Pearl River") (new-wordnet-indv {zambezi.n.01} {river.n.01}) (english {zambezi.n.01} "Zambezi" "Zambezi River") (new-wordnet-indv {yukon.n.01} {river.n.01}) (english {yukon.n.01} "Yukon" "Yukon River") (new-wordnet-indv {yenisei.n.01} {river.n.01}) (english {yenisei.n.01} "Yenisei" "Yenisei River" "Yenisey" "Yenisey River") (new-wordnet-indv {yellowstone.n.01} {river.n.01}) (english {yellowstone.n.01} "Yellowstone" "Yellowstone River") (new-wordnet-indv {yazoo.n.01} {river.n.01}) (english {yazoo.n.01} "Yazoo" "Yazoo River") (new-wordnet-indv {yalu.n.01} {river.n.01}) (english {yalu.n.01} "Yalu" "Yalu River") (new-wordnet-indv {wisconsin.n.01} {river.n.01}) (english {wisconsin.n.01} "Wisconsin" "Wisconsin River") (new-wordnet-indv {willamette.n.01} {river.n.01}) (english {willamette.n.01} "Willamette" "Willamette River") (new-wordnet-indv {white.n.09} {river.n.01}) (english {white.n.09} "White" "White River") (new-wordnet-indv {weser.n.01} {river.n.01}) (english {weser.n.01} "Weser" "Weser River") (new-wordnet-indv {wabash.n.01} {river.n.01}) (english {wabash.n.01} "Wabash" "Wabash River") (new-wordnet-indv {volta.n.02} {river.n.01}) (english {volta.n.02} "Volta") (new-wordnet-indv {volkhov.n.01} {river.n.01}) (english {volkhov.n.01} "Volkhov" "Volkhov River") (new-wordnet-indv {volga.n.01} {river.n.01}) (english {volga.n.01} "Volga" "Volga River") (new-wordnet-indv {vistula.n.01} {river.n.01}) (english {vistula.n.01} "Vistula" "Vistula River") (new-wordnet-indv {vetluga.n.01} {river.n.01}) (english {vetluga.n.01} "Vetluga" "Vetluga River") (new-wordnet-indv {uruguay_river.n.01} {river.n.01}) (english {uruguay_river.n.01} "Uruguay River") (new-wordnet-indv {tyne.n.01} {river.n.01}) (english {tyne.n.01} "Tyne" "River Tyne" "Tyne River") (new-wordnet-indv {tunguska.n.02} {river.n.01}) (english {tunguska.n.02} "Tunguska" "Lower Tunguska") (new-wordnet-indv {tunguska.n.01} {river.n.01}) (english {tunguska.n.01} "Tunguska" "Stony Tunguska") (new-wordnet-indv {trinity_river.n.01} {river.n.01}) (english {trinity_river.n.01} "Trinity River") (new-wordnet-indv {trent.n.01} {river.n.01}) (english {trent.n.01} "Trent" "River Trent" "Trent River") (new-wordnet-indv {tombigbee.n.01} {river.n.01}) (english {tombigbee.n.01} "Tombigbee" "Tombigbee River") (new-wordnet-indv {tocantins.n.01} {river.n.01}) (english {tocantins.n.01} "Tocantins" "Tocantins River") (new-wordnet-indv {tigris.n.01} {river.n.01}) (english {tigris.n.01} "Tigris" "Tigris River") (new-wordnet-indv {tiber.n.01} {river.n.01}) (english {tiber.n.01} "Tiber" "Tevere") (new-wordnet-indv {thames.n.01} {river.n.01}) (english {thames.n.01} "Thames" "River Thames" "Thames River") (new-wordnet-indv {tennessee.n.02} {river.n.01}) (english {tennessee.n.02} "Tennessee" "Tennessee River") (new-wordnet-indv {tallapoosa.n.01} {river.n.01}) (english {tallapoosa.n.01} "Tallapoosa" "Tallapoosa River") (new-wordnet-indv {tagus.n.01} {river.n.01}) (english {tagus.n.01} "Tagus" "Tagus River") (new-wordnet-indv {susquehanna.n.01} {river.n.01}) (english {susquehanna.n.01} "Susquehanna" "Susquehanna River") (new-wordnet-indv {suriname_river.n.01} {river.n.01}) (english {suriname_river.n.01} "Suriname River" "Surinam River") (new-wordnet-indv {sun_river.n.01} {river.n.01}) (english {sun_river.n.01} "Sun River") (new-wordnet-indv {styx.n.01} {river.n.01}) (english {styx.n.01} "Styx" "River Styx") (new-wordnet-indv {south_platte.n.01} {river.n.01}) (english {south_platte.n.01} "South Platte" "South Platte River") (new-wordnet-indv {snake.n.03} {river.n.01}) (english {snake.n.03} "Snake" "Snake River") (new-wordnet-indv {shenandoah_river.n.01} {river.n.01}) (english {shenandoah_river.n.01} "Shenandoah River") (new-wordnet-indv {shari.n.01} {river.n.01}) (english {shari.n.01} "Shari" "Shari River" "Chari" "Chari River") (new-wordnet-indv {seyhan.n.01} {river.n.01}) (english {seyhan.n.01} "Seyhan" "Seyhan River") (new-wordnet-indv {severn.n.02} {river.n.01}) (english {severn.n.02} "Severn" "River Severn" "Severn River") (new-wordnet-indv {severn.n.01} {river.n.01}) (english {severn.n.01} "Severn" "Severn River") (new-wordnet-indv {seine.n.01} {river.n.01}) (english {seine.n.01} "Seine" "Seine River") (new-wordnet-indv {scheldt.n.01} {river.n.01}) (english {scheldt.n.01} "Scheldt" "Scheldt River") (new-wordnet-indv {savannah.n.02} {river.n.01}) (english {savannah.n.02} "Savannah" "Savannah River") (new-wordnet-indv {saone.n.01} {river.n.01}) (english {saone.n.01} "Saone" "Saone River") (new-wordnet-indv {sao_francisco.n.01} {river.n.01}) (english {sao_francisco.n.01} "Sao Francisco") (new-wordnet-indv {san_joaquin_river.n.01} {river.n.01}) (english {san_joaquin_river.n.01} "San Joaquin River") (new-wordnet-indv {sambre.n.01} {river.n.01}) (english {sambre.n.01} "Sambre" "Sambre River") (new-wordnet-indv {salmon.n.02} {river.n.01}) (english {salmon.n.02} "Salmon" "Salmon River") (new-wordnet-indv {saint_lawrence.n.02} {river.n.01}) (english {saint_lawrence.n.02} "Saint Lawrence" "Saint Lawrence River" "St. Lawrence" "St. Lawrence River") (new-wordnet-indv {saint_johns.n.01} {river.n.01}) (english {saint_johns.n.01} "Saint Johns" "Saint Johns River" "St. Johns" "St. Johns River") (new-wordnet-indv {saint_john.n.02} {river.n.01}) (english {saint_john.n.02} "Saint John" "Saint John River" "St. John" "St. John River") (new-wordnet-indv {saint_francis.n.02} {river.n.01}) (english {saint_francis.n.02} "Saint Francis" "Saint Francis River" "St. Francis" "St. Francis River") (new-wordnet-indv {sacramento_river.n.01} {river.n.01}) (english {sacramento_river.n.01} "Sacramento River") (new-wordnet-indv {sabine.n.01} {river.n.01}) (english {sabine.n.01} "Sabine" "Sabine River") (new-wordnet-indv {saale.n.01} {river.n.01}) (english {saale.n.01} "Saale" "Saale River") (new-wordnet-indv {russian_river.n.01} {river.n.01}) (english {russian_river.n.01} "Russian River") (new-wordnet-indv {ruhr.n.01} {river.n.01}) (english {ruhr.n.01} "Ruhr" "Ruhr River") (new-wordnet-indv {rio_grande.n.01} {river.n.01}) (english {rio_grande.n.01} "Rio Grande" "Rio Bravo") (new-wordnet-indv {rhone.n.01} {river.n.01}) (english {rhone.n.01} "Rhone" "Rhone River") (new-wordnet-indv {rhine.n.02} {river.n.01}) (english {rhine.n.02} "Rhine" "Rhine River" "Rhein") (new-wordnet-indv {republican.n.03} {river.n.01}) (english {republican.n.03} "Republican" "Republican River") (new-wordnet-indv {red.n.02} {river.n.01}) (english {red.n.02} "Red" "Red River") (new-wordnet-indv {rappahannock.n.01} {river.n.01}) (english {rappahannock.n.01} "Rappahannock" "Rappahannock River") (new-wordnet-indv {purus.n.01} {river.n.01}) (english {purus.n.01} "Purus" "Purus River") (new-wordnet-indv {potomac.n.01} {river.n.01}) (english {potomac.n.01} "Potomac" "Potomac River") (new-wordnet-indv {po.n.03} {river.n.01}) (english {po.n.03} "Po" "Po River") (new-wordnet-indv {platte.n.01} {river.n.01}) (english {platte.n.01} "Platte" "Platte River") (new-wordnet-indv {ping.n.01} {river.n.01}) (english {ping.n.01} "Ping" "Ping River") (new-wordnet-indv {penobscot.n.02} {river.n.01}) (english {penobscot.n.02} "Penobscot" "Penobscot River") (new-wordnet-indv {pee_dee.n.01} {river.n.01}) (english {pee_dee.n.01} "Pee Dee" "Pee Dee River") (new-wordnet-indv {pecos.n.01} {river.n.01}) (english {pecos.n.01} "Pecos" "Pecos River") (new-wordnet-indv {pearl_river.n.02} {river.n.01}) (english {pearl_river.n.02} "Pearl River") (new-wordnet-indv {parnaiba.n.01} {river.n.01}) (english {parnaiba.n.01} "Parnaiba" "Parnahiba") (new-wordnet-indv {parana.n.01} {river.n.01}) (english {parana.n.01} "Parana" "Parana River") (new-wordnet-indv {outaouais.n.01} {river.n.01}) (english {outaouais.n.01} "Outaouais" "Ottawa" "Ottawa river") (new-wordnet-indv {ouse.n.01} {river.n.01}) (english {ouse.n.01} "Ouse" "Ouse River") (new-wordnet-indv {ouachita.n.01} {river.n.01}) (english {ouachita.n.01} "Ouachita" "Ouachita River") (new-wordnet-indv {osage.n.02} {river.n.01}) (english {osage.n.02} "Osage" "Osage River") (new-wordnet-indv {orinoco.n.01} {river.n.01}) (english {orinoco.n.01} "Orinoco" "Orinoco River") (new-wordnet-indv {orange.n.05} {river.n.01}) (english {orange.n.05} "Orange" "Orange River") (new-wordnet-indv {ohio.n.02} {river.n.01}) (english {ohio.n.02} "Ohio" "Ohio River") (new-wordnet-indv {oder.n.01} {river.n.01}) (english {oder.n.01} "Oder" "Oder River") (new-wordnet-indv {ob.n.01} {river.n.01}) (english {ob.n.01} "Ob" "Ob River") (new-wordnet-indv {north_platte.n.01} {river.n.01}) (english {north_platte.n.01} "North Platte" "North Platte River") (new-wordnet-indv {niobrara.n.01} {river.n.01}) (english {niobrara.n.01} "Niobrara" "Niobrara River") (new-wordnet-indv {nile.n.01} {river.n.01}) (english {nile.n.01} "Nile" "Nile River") (new-wordnet-indv {niger.n.01} {river.n.01}) (english {niger.n.01} "Niger" "Niger River") (new-wordnet-indv {niagara.n.02} {river.n.01}) (english {niagara.n.02} "Niagara" "Niagara River") (new-wordnet-indv {new_river.n.01} {river.n.01}) (english {new_river.n.01} "New River") (new-wordnet-indv {neva.n.01} {river.n.01}) (english {neva.n.01} "Neva" "Neva River") (new-wordnet-indv {neosho.n.01} {river.n.01}) (english {neosho.n.01} "Neosho" "Neosho River") (new-wordnet-indv {neckar.n.01} {river.n.01}) (english {neckar.n.01} "Neckar" "Neckar River") (new-wordnet-indv {nan.n.03} {river.n.01}) (english {nan.n.03} "Nan" "Nan River") (new-wordnet-indv {namoi.n.01} {river.n.01}) (english {namoi.n.01} "Namoi" "Namoi River") (new-wordnet-indv {murrumbidgee.n.01} {river.n.01}) (english {murrumbidgee.n.01} "Murrumbidgee" "Murrumbidgee River") (new-wordnet-indv {murray.n.03} {river.n.01}) (english {murray.n.03} "Murray" "Murray River") (new-wordnet-indv {moreau_river.n.01} {river.n.01}) (english {moreau_river.n.01} "Moreau River") (new-wordnet-indv {monongahela.n.01} {river.n.01}) (english {monongahela.n.01} "Monongahela" "Monongahela River") (new-wordnet-indv {mohawk_river.n.01} {river.n.01}) (english {mohawk_river.n.01} "Mohawk River") (new-wordnet-indv {mobile.n.01} {river.n.01}) (english {mobile.n.01} "Mobile" "Mobile River") (new-wordnet-indv {missouri.n.02} {river.n.01}) (english {missouri.n.02} "Missouri" "Missouri River") (new-wordnet-indv {mississippi.n.01} {river.n.01}) (english {mississippi.n.01} "Mississippi" "Mississippi River") (new-wordnet-indv {milk.n.03} {river.n.01}) (english {milk.n.03} "Milk" "Milk River") (new-wordnet-indv {meuse.n.01} {river.n.01}) (english {meuse.n.01} "Meuse" "Meuse River") (new-wordnet-indv {merrimack.n.01} {river.n.01}) (english {merrimack.n.01} "Merrimack" "Merrimack River") (new-wordnet-indv {mekong.n.01} {river.n.01}) (english {mekong.n.01} "Mekong" "Mekong River") (new-wordnet-indv {magdalena.n.01} {river.n.01}) (english {magdalena.n.01} "Magdalena" "Magdalena River") (new-wordnet-indv {madeira.n.01} {river.n.01}) (english {madeira.n.01} "Madeira" "Madeira River") (new-wordnet-indv {mackenzie.n.02} {river.n.01}) (english {mackenzie.n.02} "Mackenzie" "Mackenzie River") (new-wordnet-indv {loire.n.01} {river.n.01}) (english {loire.n.01} "Loire" "Loire River") (new-wordnet-indv {little_wabash.n.01} {river.n.01}) (english {little_wabash.n.01} "Little Wabash" "Little Wabash River") (new-wordnet-indv {little_sioux_river.n.01} {river.n.01}) (english {little_sioux_river.n.01} "Little Sioux River") (new-wordnet-indv {little_missouri.n.01} {river.n.01}) (english {little_missouri.n.01} "Little Missouri" "Little Missouri River") (new-wordnet-indv {little_bighorn.n.01} {river.n.01}) (english {little_bighorn.n.01} "Little Bighorn" "Little Bighorn River" "Little Horn") (new-wordnet-indv {limpopo.n.01} {river.n.01}) (english {limpopo.n.01} "Limpopo" "Crocodile River") (new-wordnet-indv {lethe.n.01} {river.n.01}) (english {lethe.n.01} "Lethe" "River Lethe") (new-wordnet-indv {lena.n.01} {river.n.01}) (english {lena.n.01} "Lena" "Lena River") (new-wordnet-indv {lehigh_river.n.01} {river.n.01}) (english {lehigh_river.n.01} "Lehigh River") (new-wordnet-indv {kura.n.01} {river.n.01}) (english {kura.n.01} "Kura" "Kura River") (new-wordnet-indv {klamath.n.01} {river.n.01}) (english {klamath.n.01} "Klamath" "Klamath River") (new-wordnet-indv {kissimmee.n.01} {river.n.01}) (english {kissimmee.n.01} "Kissimmee" "Kissimmee River") (new-wordnet-indv {kasai.n.01} {river.n.01}) (english {kasai.n.01} "Kasai" "Kasai River" "River Kasai") (new-wordnet-indv {kansas.n.03} {river.n.01}) (english {kansas.n.03} "Kansas" "Kansas River" "Kaw River") (new-wordnet-indv {kanawha.n.01} {river.n.01}) (english {kanawha.n.01} "Kanawha" "Kanawha River") (new-wordnet-indv {jordan.n.01} {river.n.01}) (english {jordan.n.01} "Jordan" "Jordan River") (new-wordnet-indv {james.n.09} {river.n.01}) (english {james.n.09} "James" "James River") (new-wordnet-indv {james.n.08} {river.n.01}) (english {james.n.08} "James" "James River") (new-wordnet-indv {isere.n.01} {river.n.01}) (english {isere.n.01} "Isere" "Isere River") (new-wordnet-indv {irtish.n.01} {river.n.01}) (english {irtish.n.01} "Irtish" "Irtish River" "Irtysh" "Irtysh River") (new-wordnet-indv {irrawaddy.n.01} {river.n.01}) (english {irrawaddy.n.01} "Irrawaddy" "Irrawaddy River") (new-wordnet-indv {indus.n.02} {river.n.01}) (english {indus.n.02} "Indus" "Indus River") (new-wordnet-indv {indigirka.n.01} {river.n.01}) (english {indigirka.n.01} "Indigirka" "Indigirka River") (new-wordnet-indv {illinois_river.n.01} {river.n.01}) (english {illinois_river.n.01} "Illinois River") (new-wordnet-indv {ijssel.n.01} {river.n.01}) (english {ijssel.n.01} "IJssel" "IJssel river") (new-wordnet-indv {hudson.n.01} {river.n.01}) (english {hudson.n.01} "Hudson" "Hudson River") (new-wordnet-indv {huang_he.n.01} {river.n.01}) (english {huang_he.n.01} "Huang He" "Hwang Ho" "Yellow River") (new-wordnet-indv {housatonic.n.01} {river.n.01}) (english {housatonic.n.01} "Housatonic" "Housatonic River") (new-wordnet-indv {green.n.05} {river.n.01}) (english {green.n.05} "Green" "Green River") (new-wordnet-indv {grand_river.n.01} {river.n.01}) (english {grand_river.n.01} "Grand River") (new-wordnet-indv {gila.n.01} {river.n.01}) (english {gila.n.01} "Gila" "Gila River") (new-wordnet-indv {garonne.n.01} {river.n.01}) (english {garonne.n.01} "Garonne" "Garonne River") (new-wordnet-indv {ganges.n.01} {river.n.01}) (english {ganges.n.01} "Ganges" "Ganges River") (new-wordnet-indv {gan_jiang.n.01} {river.n.01}) (english {gan_jiang.n.01} "Gan Jiang" "Kan River") (new-wordnet-indv {fox_river.n.01} {river.n.01}) (english {fox_river.n.01} "Fox River") (new-wordnet-indv {forth.n.01} {river.n.01}) (english {forth.n.01} "Forth" "Forth River") (new-wordnet-indv {flint.n.02} {river.n.01}) (english {flint.n.02} "Flint" "Flint River") (new-wordnet-indv {euphrates.n.01} {river.n.01}) (english {euphrates.n.01} "Euphrates" "Euphrates River") (new-wordnet-indv {elizabeth_river.n.01} {river.n.01}) (english {elizabeth_river.n.01} "Elizabeth River") (new-wordnet-indv {elbe.n.01} {river.n.01}) (english {elbe.n.01} "Elbe" "Elbe River") (new-wordnet-indv {ebro.n.01} {river.n.01}) (english {ebro.n.01} "Ebro" "Ebro River") (new-wordnet-indv {don.n.05} {river.n.01}) (english {don.n.05} "Don" "Don River") (new-wordnet-indv {dnieper.n.01} {river.n.01}) (english {dnieper.n.01} "Dnieper" "Dnieper River") (new-wordnet-indv {detroit_river.n.01} {river.n.01}) (english {detroit_river.n.01} "Detroit River") (new-wordnet-indv {demerara.n.02} {river.n.01}) (english {demerara.n.02} "Demerara") (new-wordnet-indv {delaware.n.01} {river.n.01}) (english {delaware.n.01} "Delaware" "Delaware River") (new-wordnet-indv {darling.n.02} {river.n.01}) (english {darling.n.02} "Darling" "Darling River") (new-wordnet-indv {danube.n.01} {river.n.01}) (english {danube.n.01} "Danube" "Danube River" "Danau") (new-wordnet-indv {cumberland.n.02} {river.n.01}) (english {cumberland.n.02} "Cumberland" "Cumberland River") (new-wordnet-indv {coosa.n.01} {river.n.01}) (english {coosa.n.01} "Coosa" "Coosa River") (new-wordnet-indv {connecticut.n.02} {river.n.01}) (english {connecticut.n.02} "Connecticut" "Connecticut River") (new-wordnet-indv {congo.n.02} {river.n.01}) (english {congo.n.02} "Congo" "Congo River" "Zaire River") (new-wordnet-indv {columbia.n.01} {river.n.01}) (english {columbia.n.01} "Columbia" "Columbia River") (new-wordnet-indv {colorado.n.03} {river.n.01}) (english {colorado.n.03} "Colorado" "Colorado River") (new-wordnet-indv {colorado.n.02} {river.n.01}) (english {colorado.n.02} "Colorado" "Colorado River") (new-wordnet-indv {cocytus.n.01} {river.n.01}) (english {cocytus.n.01} "Cocytus" "River Cocytus") (new-wordnet-indv {clyde.n.01} {river.n.01}) (english {clyde.n.01} "Clyde") (new-wordnet-indv {clinch_river.n.01} {river.n.01}) (english {clinch_river.n.01} "Clinch River") (new-wordnet-indv {cimarron.n.01} {river.n.01}) (english {cimarron.n.01} "Cimarron" "Cimarron River") (new-wordnet-indv {chattahoochee.n.01} {river.n.01}) (english {chattahoochee.n.01} "Chattahoochee" "Chattahoochee River") (new-wordnet-indv {charles.n.09} {river.n.01}) (english {charles.n.09} "Charles" "Charles River") (new-wordnet-indv {chao_phraya.n.01} {river.n.01}) (english {chao_phraya.n.01} "Chao Phraya") (new-wordnet-indv {chang_jiang.n.01} {river.n.01}) (english {chang_jiang.n.01} "Chang Jiang" "Changjiang" "Chang" "Yangtze" "Yangtze River" "Yangtze Kiang") (new-wordnet-indv {cape_fear_river.n.01} {river.n.01}) (english {cape_fear_river.n.01} "Cape Fear River") (new-wordnet-indv {canadian.n.02} {river.n.01}) (english {canadian.n.02} "Canadian" "Canadian River") (new-wordnet-indv {cam.n.01} {river.n.01}) (english {cam.n.01} "Cam" "River Cam" "Cam River") (new-wordnet-indv {caloosahatchee.n.01} {river.n.01}) (english {caloosahatchee.n.01} "Caloosahatchee" "Caloosahatchee River") (new-wordnet-indv {brazos.n.01} {river.n.01}) (english {brazos.n.01} "Brazos" "Brazos River") (new-wordnet-indv {brahmaputra.n.01} {river.n.01}) (english {brahmaputra.n.01} "Brahmaputra" "Brahmaputra River") (new-wordnet-indv {bighorn.n.01} {river.n.01}) (english {bighorn.n.01} "Bighorn" "Bighorn River") (new-wordnet-indv {big_sioux_river.n.01} {river.n.01}) (english {big_sioux_river.n.01} "Big Sioux River") (new-wordnet-indv {avon.n.02} {river.n.01}) (english {avon.n.02} "Avon" "River Avon" "Upper Avon" "Upper Avon River") (new-wordnet-indv {avon.n.01} {river.n.01}) (english {avon.n.01} "Avon" "River Avon") (new-wordnet-indv {arno.n.01} {river.n.01}) (english {arno.n.01} "Arno" "Arno River" "River Arno") (new-wordnet-indv {arkansas.n.02} {river.n.01}) (english {arkansas.n.02} "Arkansas" "Arkansas River") (new-wordnet-indv {argun.n.01} {river.n.01}) (english {argun.n.01} "Argun" "Argun River" "Ergun He") (new-wordnet-indv {arauca.n.01} {river.n.01}) (english {arauca.n.01} "Arauca") (new-wordnet-indv {aras.n.01} {river.n.01}) (english {aras.n.01} "Aras" "Araxes") (new-wordnet-indv {araguaia.n.01} {river.n.01}) (english {araguaia.n.01} "Araguaia" "Araguaia River" "Araguaya" "Araguaya River") (new-wordnet-indv {apalachicola.n.01} {river.n.01}) (english {apalachicola.n.01} "Apalachicola" "Apalachicola River") (new-wordnet-indv {angara.n.01} {river.n.01}) (english {angara.n.01} "Angara" "Angara River" "Tunguska" "Upper Tunguska") (new-wordnet-indv {amur.n.01} {river.n.01}) (english {amur.n.01} "Amur" "Amur River" "Heilong Jiang" "Heilong") (new-wordnet-indv {amazon.n.03} {river.n.01}) (english {amazon.n.03} "Amazon" "Amazon River") (new-wordnet-indv {allegheny.n.01} {river.n.01}) (english {allegheny.n.01} "Allegheny" "Allegheny River") (new-wordnet-indv {alabama.n.03} {river.n.01}) (english {alabama.n.03} "Alabama" "Alabama River") (new-wordnet-indv {aire.n.01} {river.n.01}) (english {aire.n.01} "Aire" "River Aire" "Aire River") (new-wordnet-indv {adige.n.01} {river.n.01}) (english {adige.n.01} "Adige" "River Adige") (new-wordnet-indv {acheron.n.01} {river.n.01}) (english {acheron.n.01} "Acheron" "River Acheron") (new-wordnet-indv {aare.n.01} {river.n.01}) (english {aare.n.01} "Aare" "Aar" "Aare River") (new-wordnet-type {headstream.n.01} {stream.n.01}) (english {headstream.n.01} "headstream") (new-wordnet-indv {white_nile.n.01} {headstream.n.01}) (english {white_nile.n.01} "White Nile") (new-wordnet-indv {blue_nile.n.01} {headstream.n.01}) (english {blue_nile.n.01} "Blue Nile") (new-wordnet-type {brook.n.01} {stream.n.01}) (english {brook.n.01} "brook" "creek") (new-wordnet-type {brooklet.n.01} {brook.n.01}) (english {brooklet.n.01} "brooklet") (new-wordnet-indv {bull_run.n.01} {brook.n.01}) (english {bull_run.n.01} "Bull Run") (new-wordnet-indv {aegospotami.n.01} {brook.n.01}) (english {aegospotami.n.01} "Aegospotami" "Aegospotamos") (new-wordnet-type {branch.n.05} {stream.n.01}) (english {branch.n.05} "branch") (new-wordnet-type {feeder.n.03} {branch.n.05}) (english {feeder.n.03} "feeder" "tributary" "confluent" "affluent") (new-wordnet-type {distributary.n.01} {branch.n.05}) (english {distributary.n.01} "distributary") (new-wordnet-type {billabong.n.02} {branch.n.05}) (english {billabong.n.02} "billabong") (new-wordnet-type {sound.n.08} {body_of_water.n.01}) (english {sound.n.08} "sound") (new-wordnet-indv {queen_charlotte_sound.n.01} {sound.n.08}) (english {queen_charlotte_sound.n.01} "Queen Charlotte Sound") (new-wordnet-indv {puget_sound.n.01} {sound.n.08}) (english {puget_sound.n.01} "Puget Sound") (new-wordnet-indv {long_island_sound.n.01} {sound.n.08}) (english {long_island_sound.n.01} "Long Island Sound") (new-wordnet-type {shoal.n.02} {body_of_water.n.01}) (english {shoal.n.02} "shoal" "shallow") (new-wordnet-type {seven_seas.n.01} {body_of_water.n.01}) (english {seven_seas.n.01} "seven seas") (new-wordnet-type {sea.n.01} {body_of_water.n.01}) (english {sea.n.01} "sea") (new-wordnet-type {south_sea.n.01} {sea.n.01}) (english {south_sea.n.01} "South Sea") (new-wordnet-indv {yellow_sea.n.01} {sea.n.01}) (english {yellow_sea.n.01} "Yellow Sea" "Huang Hai") (new-wordnet-indv {weddell_sea.n.01} {sea.n.01}) (english {weddell_sea.n.01} "Weddell Sea") (new-wordnet-indv {tyrrhenian_sea.n.01} {sea.n.01}) (english {tyrrhenian_sea.n.01} "Tyrrhenian Sea") (new-wordnet-indv {timor_sea.n.01} {sea.n.01}) (english {timor_sea.n.01} "Timor Sea") (new-wordnet-indv {tasman_sea.n.01} {sea.n.01}) (english {tasman_sea.n.01} "Tasman Sea") (new-wordnet-indv {south_china_sea.n.01} {sea.n.01}) (english {south_china_sea.n.01} "South China Sea") (new-wordnet-indv {sea_of_okhotsk.n.01} {sea.n.01}) (english {sea_of_okhotsk.n.01} "Sea of Okhotsk") (new-wordnet-indv {sea_of_japan.n.01} {sea.n.01}) (english {sea_of_japan.n.01} "Sea of Japan" "East Sea") (new-wordnet-indv {sargasso_sea.n.01} {sea.n.01}) (english {sargasso_sea.n.01} "Sargasso Sea") (new-wordnet-indv {ross_sea.n.01} {sea.n.01}) (english {ross_sea.n.01} "Ross Sea") (new-wordnet-indv {red_sea.n.01} {sea.n.01}) (english {red_sea.n.01} "Red Sea") (new-wordnet-indv {norwegian_sea.n.01} {sea.n.01}) (english {norwegian_sea.n.01} "Norwegian Sea") (new-wordnet-indv {north_sea.n.01} {sea.n.01}) (english {north_sea.n.01} "North Sea") (new-wordnet-indv {mediterranean.n.01} {sea.n.01}) (english {mediterranean.n.01} "Mediterranean" "Mediterranean Sea") (new-wordnet-type {mare_nostrum.n.01} {mediterranean.n.01}) (english {mare_nostrum.n.01} "mare nostrum") (new-wordnet-indv {marmara.n.01} {sea.n.01}) (english {marmara.n.01} "Marmara" "Sea of Marmara" "Marmara Denizi" "Marmora" "Sea of Marmora") (new-wordnet-indv {ligurian_sea.n.01} {sea.n.01}) (english {ligurian_sea.n.01} "Ligurian Sea") (new-wordnet-indv {laptev_sea.n.01} {sea.n.01}) (english {laptev_sea.n.01} "Laptev Sea") (new-wordnet-indv {labrador_sea.n.01} {sea.n.01}) (english {labrador_sea.n.01} "Labrador Sea") (new-wordnet-indv {kara_sea.n.01} {sea.n.01}) (english {kara_sea.n.01} "Kara Sea") (new-wordnet-indv {irish_sea.n.01} {sea.n.01}) (english {irish_sea.n.01} "Irish Sea") (new-wordnet-indv {ionian_sea.n.01} {sea.n.01}) (english {ionian_sea.n.01} "Ionian Sea") (new-wordnet-indv {inland_sea.n.01} {sea.n.01}) (english {inland_sea.n.01} "Inland Sea") (new-wordnet-indv {hudson_bay.n.01} {sea.n.01}) (english {hudson_bay.n.01} "Hudson Bay") (new-wordnet-indv {greenland_sea.n.01} {sea.n.01}) (english {greenland_sea.n.01} "Greenland Sea") (new-wordnet-indv {east_china_sea.n.01} {sea.n.01}) (english {east_china_sea.n.01} "East China Sea") (new-wordnet-indv {coral_sea.n.01} {sea.n.01}) (english {coral_sea.n.01} "Coral Sea") (new-wordnet-indv {chukchi_sea.n.01} {sea.n.01}) (english {chukchi_sea.n.01} "Chukchi Sea") (new-wordnet-indv {caribbean.n.01} {sea.n.01}) (english {caribbean.n.01} "Caribbean" "Caribbean Sea") (new-wordnet-indv {black_sea.n.01} {sea.n.01}) (english {black_sea.n.01} "Black Sea" "Euxine Sea") (new-wordnet-indv {bismarck_sea.n.01} {sea.n.01}) (english {bismarck_sea.n.01} "Bismarck Sea") (new-wordnet-indv {bering_sea.n.01} {sea.n.01}) (english {bering_sea.n.01} "Bering Sea") (new-wordnet-indv {beaufort_sea.n.01} {sea.n.01}) (english {beaufort_sea.n.01} "Beaufort Sea") (new-wordnet-indv {barents_sea.n.01} {sea.n.01}) (english {barents_sea.n.01} "Barents Sea") (new-wordnet-indv {baltic.n.01} {sea.n.01}) (english {baltic.n.01} "Baltic" "Baltic Sea") (new-wordnet-indv {baffin_bay.n.01} {sea.n.01}) (english {baffin_bay.n.01} "Baffin Bay") (new-wordnet-indv {arafura_sea.n.01} {sea.n.01}) (english {arafura_sea.n.01} "Arafura Sea") (new-wordnet-indv {arabian_sea.n.01} {sea.n.01}) (english {arabian_sea.n.01} "Arabian Sea") (new-wordnet-indv {aegean.n.01} {sea.n.01}) (english {aegean.n.01} "Aegean" "Aegean Sea") (new-wordnet-indv {adriatic.n.01} {sea.n.01}) (english {adriatic.n.01} "Adriatic" "Adriatic Sea") (new-wordnet-type {pool.n.06} {body_of_water.n.01}) (english {pool.n.06} "pool" "puddle") (new-wordnet-type {mud_puddle.n.01} {pool.n.06}) (english {mud_puddle.n.01} "mud puddle") (new-wordnet-type {wallow.n.01} {mud_puddle.n.01}) (english {wallow.n.01} "wallow") (new-wordnet-type {billabong.n.01} {pool.n.06}) (english {billabong.n.01} "billabong") (new-wordnet-type {polynya.n.01} {body_of_water.n.01}) (english {polynya.n.01} "polynya") (new-wordnet-type {offing.n.02} {body_of_water.n.01}) (english {offing.n.02} "offing") (new-wordnet-type {ocean.n.01} {body_of_water.n.01}) (english {ocean.n.01} "ocean") (new-wordnet-type {deep.n.03} {ocean.n.01}) (english {deep.n.03} "deep") (new-wordnet-indv {pacific.n.01} {ocean.n.01}) (english {pacific.n.01} "Pacific" "Pacific Ocean") (new-wordnet-indv {indian_ocean.n.01} {ocean.n.01}) (english {indian_ocean.n.01} "Indian Ocean") (new-wordnet-indv {atlantic.n.01} {ocean.n.01}) (english {atlantic.n.01} "Atlantic" "Atlantic Ocean") (new-wordnet-indv {arctic_ocean.n.01} {ocean.n.01}) (english {arctic_ocean.n.01} "Arctic Ocean") (new-wordnet-indv {antarctic_ocean.n.01} {ocean.n.01}) (english {antarctic_ocean.n.01} "Antarctic Ocean") (new-wordnet-type {mid-water.n.01} {body_of_water.n.01}) (english {mid-water.n.01} "mid-water") (new-wordnet-type {main.n.01} {body_of_water.n.01}) (english {main.n.01} "main" "briny") (new-wordnet-type {lake.n.01} {body_of_water.n.01}) (english {lake.n.01} "lake") (new-wordnet-type {tarn.n.01} {lake.n.01}) (english {tarn.n.01} "tarn") (new-wordnet-type {reservoir.n.02} {lake.n.01}) (english {reservoir.n.02} "reservoir" "artificial lake" "man-made lake") (new-wordnet-indv {lake_volta.n.01} {reservoir.n.02}) (english {lake_volta.n.01} "Lake Volta") (new-wordnet-indv {lake_powell.n.01} {reservoir.n.02}) (english {lake_powell.n.01} "Lake Powell") (new-wordnet-indv {lake_mead.n.01} {reservoir.n.02}) (english {lake_mead.n.01} "Lake Mead") (new-wordnet-type {pond.n.01} {lake.n.01}) (english {pond.n.01} "pond" "pool") (new-wordnet-type {water_hole.n.01} {pond.n.01}) (english {water_hole.n.01} "water hole") (new-wordnet-type {swimming_hole.n.01} {pond.n.01}) (english {swimming_hole.n.01} "swimming hole") (new-wordnet-type {millpond.n.01} {pond.n.01}) (english {millpond.n.01} "millpond") (new-wordnet-type {mere.n.01} {pond.n.01}) (english {mere.n.01} "mere") (new-wordnet-type {horsepond.n.01} {pond.n.01}) (english {horsepond.n.01} "horsepond") (new-wordnet-type {fishpond.n.01} {pond.n.01}) (english {fishpond.n.01} "fishpond") (new-wordnet-type {oxbow_lake.n.01} {lake.n.01}) (english {oxbow_lake.n.01} "oxbow lake") (new-wordnet-type {lough.n.02} {lake.n.01}) (english {lough.n.02} "lough") (new-wordnet-type {loch.n.02} {lake.n.01}) (english {loch.n.02} "loch") (new-wordnet-indv {loch_ness.n.01} {loch.n.02}) (english {loch_ness.n.01} "Loch Ness") (new-wordnet-indv {loch_achray.n.01} {loch.n.02}) (english {loch_achray.n.01} "Loch Achray") (new-wordnet-type {lagoon.n.01} {lake.n.01}) (english {lagoon.n.01} "lagoon" "laguna" "lagune") (new-wordnet-type {liman.n.01} {lagoon.n.01}) (english {liman.n.01} "liman") (new-wordnet-type {bayou.n.01} {lake.n.01}) (english {bayou.n.01} "bayou") (new-wordnet-indv {winnipeg.n.02} {lake.n.01}) (english {winnipeg.n.02} "Winnipeg" "Lake Winnipeg") (new-wordnet-indv {seneca_lake.n.01} {lake.n.01}) (english {seneca_lake.n.01} "Seneca Lake" "Lake Seneca") (new-wordnet-indv {salton_sea.n.01} {lake.n.01}) (english {salton_sea.n.01} "Salton Sea") (new-wordnet-indv {poyang.n.01} {lake.n.01}) (english {poyang.n.01} "Poyang") (new-wordnet-indv {okeechobee.n.01} {lake.n.01}) (english {okeechobee.n.01} "Okeechobee" "Lake Okeechobee") (new-wordnet-indv {lake_victoria.n.01} {lake.n.01}) (english {lake_victoria.n.01} "Lake Victoria" "Victoria Nyanza") (new-wordnet-indv {lake_vanern.n.01} {lake.n.01}) (english {lake_vanern.n.01} "Lake Vanern" "Vanern") (new-wordnet-indv {lake_urmia.n.01} {lake.n.01}) (english {lake_urmia.n.01} "Lake Urmia" "Urmia" "Daryacheh-ye Orumiyeh") (new-wordnet-indv {lake_tanganyika.n.01} {lake.n.01}) (english {lake_tanganyika.n.01} "Lake Tanganyika" "Tanganyika") (new-wordnet-indv {lake_tana.n.01} {lake.n.01}) (english {lake_tana.n.01} "Lake Tana" "Lake Tsana") (new-wordnet-indv {lake_tahoe.n.01} {lake.n.01}) (english {lake_tahoe.n.01} "Lake Tahoe") (new-wordnet-indv {lake_superior.n.01} {lake.n.01}) (english {lake_superior.n.01} "Lake Superior" "Superior") (new-wordnet-indv {lake_st._clair.n.01} {lake.n.01}) (english {lake_st._clair.n.01} "Lake St. Clair" "Lake Saint Clair") (new-wordnet-indv {lake_ontario.n.01} {lake.n.01}) (english {lake_ontario.n.01} "Lake Ontario" "Ontario") (new-wordnet-indv {lake_onega.n.01} {lake.n.01}) (english {lake_onega.n.01} "Lake Onega" "Onega") (new-wordnet-indv {lake_nyasa.n.01} {lake.n.01}) (english {lake_nyasa.n.01} "Lake Nyasa" "Lake Malawi") (new-wordnet-indv {lake_nasser.n.01} {lake.n.01}) (english {lake_nasser.n.01} "Lake Nasser" "Nasser") (new-wordnet-indv {lake_michigan.n.01} {lake.n.01}) (english {lake_michigan.n.01} "Lake Michigan" "Michigan") (new-wordnet-indv {lake_ladoga.n.01} {lake.n.01}) (english {lake_ladoga.n.01} "Lake Ladoga" "Ladoga") (new-wordnet-indv {lake_ilmen.n.01} {lake.n.01}) (english {lake_ilmen.n.01} "Lake Ilmen" "Ilmen") (new-wordnet-indv {lake_huron.n.01} {lake.n.01}) (english {lake_huron.n.01} "Lake Huron" "Huron") (new-wordnet-indv {lake_geneva.n.01} {lake.n.01}) (english {lake_geneva.n.01} "Lake Geneva" "Lake Leman") (new-wordnet-indv {lake_erie.n.01} {lake.n.01}) (english {lake_erie.n.01} "Lake Erie" "Erie") (new-wordnet-indv {lake_edward.n.01} {lake.n.01}) (english {lake_edward.n.01} "Lake Edward") (new-wordnet-indv {lake_chelan.n.01} {lake.n.01}) (english {lake_chelan.n.01} "Lake Chelan") (new-wordnet-indv {lake_champlain.n.01} {lake.n.01}) (english {lake_champlain.n.01} "Lake Champlain" "Champlain") (new-wordnet-indv {lake_chad.n.01} {lake.n.01}) (english {lake_chad.n.01} "Lake Chad" "Chad") (new-wordnet-indv {lake_aral.n.01} {lake.n.01}) (english {lake_aral.n.01} "Lake Aral" "Aral Sea") (new-wordnet-indv {lake_albert.n.01} {lake.n.01}) (english {lake_albert.n.01} "Lake Albert" "Lake Albert Nyanza" "Mobuto Lake") (new-wordnet-indv {kivu.n.01} {lake.n.01}) (english {kivu.n.01} "Kivu" "Lake Kivu") (new-wordnet-indv {keuka_lake.n.01} {lake.n.01}) (english {keuka_lake.n.01} "Keuka Lake" "Lake Keuka") (new-wordnet-indv {ijsselmeer.n.01} {lake.n.01}) (english {ijsselmeer.n.01} "IJsselmeer") (new-wordnet-indv {great_slave_lake.n.01} {lake.n.01}) (english {great_slave_lake.n.01} "Great Slave Lake") (new-wordnet-indv {great_salt_lake.n.01} {lake.n.01}) (english {great_salt_lake.n.01} "Great Salt Lake") (new-wordnet-indv {eyre.n.01} {lake.n.01}) (english {eyre.n.01} "Eyre" "Lake Eyre") (new-wordnet-indv {dead_sea.n.01} {lake.n.01}) (english {dead_sea.n.01} "Dead Sea") (new-wordnet-indv {constance.n.01} {lake.n.01}) (english {constance.n.01} "Constance" "Lake Constance" "Bodensee") (new-wordnet-indv {coeur_d'alene_lake.n.01} {lake.n.01}) (english {coeur_d'alene_lake.n.01} "Coeur d'Alene Lake") (new-wordnet-indv {cayuga_lake.n.01} {lake.n.01}) (english {cayuga_lake.n.01} "Cayuga Lake" "Lake Cayuga") (new-wordnet-indv {caspian.n.01} {lake.n.01}) (english {caspian.n.01} "Caspian" "Caspian Sea") (new-wordnet-indv {canandaigua_lake.n.01} {lake.n.01}) (english {canandaigua_lake.n.01} "Canandaigua Lake" "Lake Canandaigua") (new-wordnet-indv {balaton.n.01} {lake.n.01}) (english {balaton.n.01} "Balaton" "Lake Balaton" "Plattensee") (new-wordnet-indv {baikal.n.01} {lake.n.01}) (english {baikal.n.01} "Baikal" "Lake Baikal" "Baykal" "Lake Baykal") (new-wordnet-type {inlet.n.01} {body_of_water.n.01}) (english {inlet.n.01} "inlet" "recess") (new-wordnet-type {loch.n.01} {inlet.n.01}) (english {loch.n.01} "loch") (new-wordnet-indv {loch_linnhe.n.01} {loch.n.01}) (english {loch_linnhe.n.01} "Loch Linnhe") (new-wordnet-type {fjord.n.01} {inlet.n.01}) (english {fjord.n.01} "fjord" "fiord") (new-wordnet-indv {trondheim_fjord.n.01} {fjord.n.01}) (english {trondheim_fjord.n.01} "Trondheim Fjord" "Trondheim Fiord") (new-wordnet-type {cove.n.01} {inlet.n.01}) (english {cove.n.01} "cove") (new-wordnet-type {lough.n.01} {cove.n.01}) (english {lough.n.01} "lough") (new-wordnet-indv {zuider_zee.n.01} {inlet.n.01}) (english {zuider_zee.n.01} "Zuider Zee") (new-wordnet-indv {white_sea.n.01} {inlet.n.01}) (english {white_sea.n.01} "White Sea") (new-wordnet-indv {saronic_gulf.n.01} {inlet.n.01}) (english {saronic_gulf.n.01} "Saronic Gulf" "Gulf of Aegina") (new-wordnet-indv {bristol_channel.n.01} {inlet.n.01}) (english {bristol_channel.n.01} "Bristol Channel") (new-wordnet-type {high_sea.n.01} {body_of_water.n.01}) (english {high_sea.n.01} "high sea" "international waters") (new-wordnet-type {gulf.n.01} {body_of_water.n.01}) (english {gulf.n.01} "gulf") (new-wordnet-indv {persian_gulf.n.01} {gulf.n.01}) (english {persian_gulf.n.01} "Persian Gulf" "Arabian Gulf") (new-wordnet-indv {gulf_of_venice.n.01} {gulf.n.01}) (english {gulf_of_venice.n.01} "Gulf of Venice") (new-wordnet-indv {gulf_of_thailand.n.01} {gulf.n.01}) (english {gulf_of_thailand.n.01} "Gulf of Thailand" "Gulf of Siam") (new-wordnet-indv {gulf_of_tehuantepec.n.01} {gulf.n.01}) (english {gulf_of_tehuantepec.n.01} "Gulf of Tehuantepec") (new-wordnet-indv {gulf_of_suez.n.01} {gulf.n.01}) (english {gulf_of_suez.n.01} "Gulf of Suez") (new-wordnet-indv {gulf_of_sidra.n.01} {gulf.n.01}) (english {gulf_of_sidra.n.01} "Gulf of Sidra") (new-wordnet-indv {gulf_of_saint_lawrence.n.01} {gulf.n.01}) (english {gulf_of_saint_lawrence.n.01} "Gulf of Saint Lawrence" "Gulf of St. Lawrence") (new-wordnet-indv {gulf_of_riga.n.01} {gulf.n.01}) (english {gulf_of_riga.n.01} "Gulf of Riga") (new-wordnet-indv {gulf_of_oman.n.01} {gulf.n.01}) (english {gulf_of_oman.n.01} "Gulf of Oman") (new-wordnet-indv {gulf_of_ob.n.01} {gulf.n.01}) (english {gulf_of_ob.n.01} "Gulf of Ob" "Bay of Ob") (new-wordnet-indv {gulf_of_mexico.n.01} {gulf.n.01}) (english {gulf_of_mexico.n.01} "Gulf of Mexico" "Golfo de Mexico") (new-wordnet-indv {gulf_of_martaban.n.01} {gulf.n.01}) (english {gulf_of_martaban.n.01} "Gulf of Martaban") (new-wordnet-indv {gulf_of_guinea.n.01} {gulf.n.01}) (english {gulf_of_guinea.n.01} "Gulf of Guinea") (new-wordnet-indv {gulf_of_finland.n.01} {gulf.n.01}) (english {gulf_of_finland.n.01} "Gulf of Finland") (new-wordnet-indv {gulf_of_corinth.n.01} {gulf.n.01}) (english {gulf_of_corinth.n.01} "Gulf of Corinth" "Gulf of Lepanto") (new-wordnet-indv {gulf_of_carpentaria.n.01} {gulf.n.01}) (english {gulf_of_carpentaria.n.01} "Gulf of Carpentaria" "Carpentaria") (new-wordnet-indv {gulf_of_campeche.n.01} {gulf.n.01}) (english {gulf_of_campeche.n.01} "Gulf of Campeche" "Golfo de Campeche" "Bay of Campeche") (new-wordnet-indv {gulf_of_california.n.01} {gulf.n.01}) (english {gulf_of_california.n.01} "Gulf of California" "Sea of Cortes") (new-wordnet-indv {gulf_of_bothnia.n.01} {gulf.n.01}) (english {gulf_of_bothnia.n.01} "Gulf of Bothnia") (new-wordnet-indv {gulf_of_aqaba.n.01} {gulf.n.01}) (english {gulf_of_aqaba.n.01} "Gulf of Aqaba" "Gulf of Akaba") (new-wordnet-indv {gulf_of_antalya.n.01} {gulf.n.01}) (english {gulf_of_antalya.n.01} "Gulf of Antalya") (new-wordnet-indv {gulf_of_alaska.n.01} {gulf.n.01}) (english {gulf_of_alaska.n.01} "Gulf of Alaska") (new-wordnet-indv {gulf_of_aden.n.01} {gulf.n.01}) (english {gulf_of_aden.n.01} "Gulf of Aden") (new-wordnet-type {ford.n.07} {body_of_water.n.01}) (english {ford.n.07} "ford" "crossing") (new-wordnet-type {flowage.n.02} {body_of_water.n.01}) (english {flowage.n.02} "flowage") (new-wordnet-type {estuary.n.01} {body_of_water.n.01}) (english {estuary.n.01} "estuary") (new-wordnet-type {firth.n.02} {estuary.n.01}) (english {firth.n.02} "firth") (new-wordnet-indv {solway_firth.n.01} {firth.n.02}) (english {solway_firth.n.01} "Solway Firth") (new-wordnet-indv {moray_firth.n.01} {firth.n.02}) (english {moray_firth.n.01} "Moray Firth") (new-wordnet-indv {firth_of_forth.n.01} {firth.n.02}) (english {firth_of_forth.n.01} "Firth of Forth") (new-wordnet-indv {firth_of_clyde.n.01} {firth.n.02}) (english {firth_of_clyde.n.01} "Firth of Clyde") (new-wordnet-indv {rio_de_la_plata.n.01} {estuary.n.01}) (english {rio_de_la_plata.n.01} "Rio de la Plata" "La Plata" "Plata River") (new-wordnet-indv {para.n.04} {estuary.n.01}) (english {para.n.04} "Para" "Para River") (new-wordnet-indv {humber.n.01} {estuary.n.01}) (english {humber.n.01} "Humber") (new-wordnet-type {drink.n.04} {body_of_water.n.01}) (english {drink.n.04} "drink") (new-wordnet-type {channel.n.04} {body_of_water.n.01}) (english {channel.n.04} "channel") (new-wordnet-type {watercourse.n.01} {channel.n.04}) (english {watercourse.n.01} "watercourse") (new-wordnet-type {tideway.n.01} {channel.n.04}) (english {tideway.n.01} "tideway") (new-wordnet-type {strait.n.01} {channel.n.04}) (english {strait.n.01} "strait" "sound") (new-wordnet-type {narrow.n.01} {strait.n.01}) (english {narrow.n.01} "narrow") (new-wordnet-indv {verrazano_narrows.n.01} {narrow.n.01}) (english {verrazano_narrows.n.01} "Verrazano Narrows") (new-wordnet-indv {torres_strait.n.01} {strait.n.01}) (english {torres_strait.n.01} "Torres Strait") (new-wordnet-indv {strait_of_messina.n.01} {strait.n.01}) (english {strait_of_messina.n.01} "Strait of Messina") (new-wordnet-indv {strait_of_magellan.n.01} {strait.n.01}) (english {strait_of_magellan.n.01} "Strait of Magellan") (new-wordnet-indv {strait_of_hormuz.n.01} {strait.n.01}) (english {strait_of_hormuz.n.01} "Strait of Hormuz" "Strait of Ormuz") (new-wordnet-indv {strait_of_gibraltar.n.01} {strait.n.01}) (english {strait_of_gibraltar.n.01} "Strait of Gibraltar") (new-wordnet-indv {strait_of_georgia.n.01} {strait.n.01}) (english {strait_of_georgia.n.01} "Strait of Georgia") (new-wordnet-indv {strait_of_dover.n.01} {strait.n.01}) (english {strait_of_dover.n.01} "Strait of Dover" "Strait of Calais" "Pas de Calais") (new-wordnet-indv {solent.n.01} {strait.n.01}) (english {solent.n.01} "Solent") (new-wordnet-indv {skagerrak.n.01} {strait.n.01}) (english {skagerrak.n.01} "Skagerrak" "Skagerak") (new-wordnet-indv {north_channel.n.01} {strait.n.01}) (english {north_channel.n.01} "North Channel") (new-wordnet-indv {menai_strait.n.01} {strait.n.01}) (english {menai_strait.n.01} "Menai Strait") (new-wordnet-indv {korean_strait.n.01} {strait.n.01}) (english {korean_strait.n.01} "Korean Strait" "Korea Strait") (new-wordnet-indv {kattegatt.n.01} {strait.n.01}) (english {kattegatt.n.01} "Kattegatt") (new-wordnet-indv {golden_gate.n.01} {strait.n.01}) (english {golden_gate.n.01} "Golden Gate") (new-wordnet-indv {east_river.n.01} {strait.n.01}) (english {east_river.n.01} "East River") (new-wordnet-indv {dardanelles.n.01} {strait.n.01}) (english {dardanelles.n.01} "Dardanelles" "Canakkale Bogazi" "Hellespont") (new-wordnet-indv {cook_strait.n.01} {strait.n.01}) (english {cook_strait.n.01} "Cook Strait") (new-wordnet-indv {bosporus.n.01} {strait.n.01}) (english {bosporus.n.01} "Bosporus") (new-wordnet-indv {bering_strait.n.01} {strait.n.01}) (english {bering_strait.n.01} "Bering Strait") (new-wordnet-type {rill.n.02} {channel.n.04}) (english {rill.n.02} "rill") (new-wordnet-type {gut.n.02} {channel.n.04}) (english {gut.n.02} "gut") (new-wordnet-type {canal.n.01} {channel.n.04}) (english {canal.n.01} "canal") (new-wordnet-indv {windward_passage.n.01} {channel.n.04}) (english {windward_passage.n.01} "Windward Passage") (new-wordnet-indv {mozambique_channel.n.01} {channel.n.04}) (english {mozambique_channel.n.01} "Mozambique Channel") (new-wordnet-indv {harlem_river.n.01} {channel.n.04}) (english {harlem_river.n.01} "Harlem River") (new-wordnet-indv {hampton_roads.n.01} {channel.n.04}) (english {hampton_roads.n.01} "Hampton Roads") (new-wordnet-indv {english_channel.n.01} {channel.n.04}) (english {english_channel.n.01} "English Channel") (new-wordnet-type {bay.n.01} {body_of_water.n.01}) (english {bay.n.01} "bay" "embayment") (new-wordnet-type {guantanamo_bay.n.01} {bay.n.01}) (english {guantanamo_bay.n.01} "Guantanamo Bay") (new-wordnet-type {bight.n.03} {bay.n.01}) (english {bight.n.03} "bight") (new-wordnet-indv {great_australian_bight.n.01} {bight.n.03}) (english {great_australian_bight.n.01} "Great Australian Bight") (new-wordnet-indv {bight_of_benin.n.01} {bight.n.03}) (english {bight_of_benin.n.01} "Bight of Benin") (new-wordnet-indv {tampa_bay.n.01} {bay.n.01}) (english {tampa_bay.n.01} "Tampa Bay") (new-wordnet-indv {sea_of_azov.n.01} {bay.n.01}) (english {sea_of_azov.n.01} "Sea of Azov" "Sea of Azof" "Sea of Azoff") (new-wordnet-indv {san_francisco_bay.n.01} {bay.n.01}) (english {san_francisco_bay.n.01} "San Francisco Bay") (new-wordnet-indv {san_diego_bay.n.01} {bay.n.01}) (english {san_diego_bay.n.01} "San Diego Bay") (new-wordnet-indv {prudhoe_bay.n.01} {bay.n.01}) (english {prudhoe_bay.n.01} "Prudhoe Bay") (new-wordnet-indv {penobscot_bay.n.01} {bay.n.01}) (english {penobscot_bay.n.01} "Penobscot Bay") (new-wordnet-indv {osaka_bay.n.01} {bay.n.01}) (english {osaka_bay.n.01} "Osaka Bay") (new-wordnet-indv {new_york_bay.n.01} {bay.n.01}) (english {new_york_bay.n.01} "New York Bay") (new-wordnet-indv {narragansett_bay.n.01} {bay.n.01}) (english {narragansett_bay.n.01} "Narragansett Bay") (new-wordnet-indv {moreton_bay.n.01} {bay.n.01}) (english {moreton_bay.n.01} "Moreton Bay") (new-wordnet-indv {monterey_bay.n.01} {bay.n.01}) (english {monterey_bay.n.01} "Monterey Bay") (new-wordnet-indv {mobile_bay.n.01} {bay.n.01}) (english {mobile_bay.n.01} "Mobile Bay") (new-wordnet-indv {minamata_bay.n.01} {bay.n.01}) (english {minamata_bay.n.01} "Minamata Bay") (new-wordnet-indv {massachusetts_bay.n.01} {bay.n.01}) (english {massachusetts_bay.n.01} "Massachusetts Bay") (new-wordnet-indv {korea_bay.n.01} {bay.n.01}) (english {korea_bay.n.01} "Korea Bay") (new-wordnet-indv {james_bay.n.01} {bay.n.01}) (english {james_bay.n.01} "James Bay") (new-wordnet-indv {hangzhou_bay.n.01} {bay.n.01}) (english {hangzhou_bay.n.01} "Hangzhou Bay") (new-wordnet-indv {galway_bay.n.01} {bay.n.01}) (english {galway_bay.n.01} "Galway Bay") (new-wordnet-indv {galveston_bay.n.01} {bay.n.01}) (english {galveston_bay.n.01} "Galveston Bay") (new-wordnet-indv {delaware_bay.n.01} {bay.n.01}) (english {delaware_bay.n.01} "Delaware Bay") (new-wordnet-indv {chesapeake_bay.n.01} {bay.n.01}) (english {chesapeake_bay.n.01} "Chesapeake Bay") (new-wordnet-indv {cape_cod_bay.n.01} {bay.n.01}) (english {cape_cod_bay.n.01} "Cape Cod Bay") (new-wordnet-indv {buzzards_bay.n.01} {bay.n.01}) (english {buzzards_bay.n.01} "Buzzards Bay") (new-wordnet-indv {bo_hai.n.01} {bay.n.01}) (english {bo_hai.n.01} "Bo Hai" "Po Hai") (new-wordnet-indv {biscayne_bay.n.01} {bay.n.01}) (english {biscayne_bay.n.01} "Biscayne Bay") (new-wordnet-indv {bay_of_naples.n.01} {bay.n.01}) (english {bay_of_naples.n.01} "Bay of Naples") (new-wordnet-indv {bay_of_fundy.n.01} {bay.n.01}) (english {bay_of_fundy.n.01} "Bay of Fundy") (new-wordnet-indv {bay_of_biscay.n.01} {bay.n.01}) (english {bay_of_biscay.n.01} "Bay of Biscay") (new-wordnet-indv {bay_of_bengal.n.01} {bay.n.01}) (english {bay_of_bengal.n.01} "Bay of Bengal") (new-wordnet-indv {andaman_sea.n.01} {bay.n.01}) (english {andaman_sea.n.01} "Andaman Sea") (new-wordnet-indv {abukir.n.01} {bay.n.01}) (english {abukir.n.01} "Abukir" "Abukir Bay") (new-wordnet-type {backwater.n.01} {body_of_water.n.01}) (english {backwater.n.01} "backwater") (new-wordnet-type {substance.n.04} {physical_entity.n.01}) (english {substance.n.04} "substance") (new-wordnet-type {process.n.06} {physical_entity.n.01}) (english {process.n.06} "process" "physical process") (new-wordnet-type {variation.n.07} {process.n.06}) (english {variation.n.07} "variation") (new-wordnet-type {covariation.n.01} {variation.n.07}) (english {covariation.n.01} "covariation") (new-wordnet-type {shaping.n.01} {process.n.06}) (english {shaping.n.01} "shaping" "defining") (new-wordnet-type {sensitization.n.02} {process.n.06}) (english {sensitization.n.02} "sensitization" "sensitisation") (new-wordnet-type {reversible_process.n.01} {process.n.06}) (english {reversible_process.n.01} "reversible process") (new-wordnet-type {processing.n.01} {process.n.06}) (english {processing.n.01} "processing") (new-wordnet-type {vulcanization.n.01} {processing.n.01}) (english {vulcanization.n.01} "vulcanization" "vulcanisation") (new-wordnet-type {refining.n.01} {processing.n.01}) (english {refining.n.01} "refining" "refinement" "purification") (new-wordnet-type {rectification.n.01} {refining.n.01}) (english {rectification.n.01} "rectification") (new-wordnet-type {development.n.08} {processing.n.01}) (english {development.n.08} "development" "developing") (new-wordnet-type {underdevelopment.n.02} {development.n.08}) (english {underdevelopment.n.02} "underdevelopment") (new-wordnet-type {data_processing.n.01} {processing.n.01}) (english {data_processing.n.01} "data processing") (new-wordnet-type {word_processing.n.01} {data_processing.n.01}) (english {word_processing.n.01} "word processing") (new-wordnet-type {serial_processing.n.01} {data_processing.n.01}) (english {serial_processing.n.01} "serial processing") (new-wordnet-type {real-time_processing.n.01} {data_processing.n.01}) (english {real-time_processing.n.01} "real-time processing" "real-time operation") (new-wordnet-type {priority_processing.n.01} {data_processing.n.01}) (english {priority_processing.n.01} "priority processing") (new-wordnet-type {foreground_processing.n.01} {priority_processing.n.01}) (english {foreground_processing.n.01} "foreground processing" "foregrounding") (new-wordnet-type {background_processing.n.01} {priority_processing.n.01}) (english {background_processing.n.01} "background processing" "backgrounding") (new-wordnet-type {operation.n.04} {data_processing.n.01}) (english {operation.n.04} "operation") (new-wordnet-type {threshold_operation.n.01} {operation.n.04}) (english {threshold_operation.n.01} "threshold operation") (new-wordnet-type {majority_operation.n.01} {threshold_operation.n.01}) (english {majority_operation.n.01} "majority operation") (new-wordnet-type {synchronous_operation.n.01} {operation.n.04}) (english {synchronous_operation.n.01} "synchronous operation") (new-wordnet-type {sort.n.04} {operation.n.04}) (english {sort.n.04} "sort" "sorting") (new-wordnet-type {serial_operation.n.01} {operation.n.04}) (english {serial_operation.n.01} "serial operation" "sequential operation" "consecutive operation") (new-wordnet-type {search.n.03} {operation.n.04}) (english {search.n.03} "search" "lookup") (new-wordnet-type {printing_operation.n.01} {operation.n.04}) (english {printing_operation.n.01} "printing operation") (new-wordnet-type {new_line.n.01} {printing_operation.n.01}) (english {new_line.n.01} "new line") (new-wordnet-type {line_feed.n.01} {printing_operation.n.01}) (english {line_feed.n.01} "line feed") (new-wordnet-type {carriage_return.n.01} {printing_operation.n.01}) (english {carriage_return.n.01} "carriage return") (new-wordnet-type {parallel_operation.n.01} {operation.n.04}) (english {parallel_operation.n.01} "parallel operation" "simultaneous operation") (new-wordnet-type {multiplex_operation.n.01} {operation.n.04}) (english {multiplex_operation.n.01} "multiplex operation") (new-wordnet-type {monadic_operation.n.01} {operation.n.04}) (english {monadic_operation.n.01} "monadic operation" "unary operation") (new-wordnet-type {logic_operation.n.01} {operation.n.04}) (english {logic_operation.n.01} "logic operation" "logical operation") (new-wordnet-type {fixed-cycle_operation.n.01} {operation.n.04}) (english {fixed-cycle_operation.n.01} "fixed-cycle operation") (new-wordnet-type {dyadic_operation.n.01} {operation.n.04}) (english {dyadic_operation.n.01} "dyadic operation") (new-wordnet-type {control_operation.n.01} {operation.n.04}) (english {control_operation.n.01} "control operation" "control function") (new-wordnet-type {concurrent_operation.n.01} {operation.n.04}) (english {concurrent_operation.n.01} "concurrent operation") (new-wordnet-type {computer_operation.n.01} {operation.n.04}) (english {computer_operation.n.01} "computer operation" "machine operation") (new-wordnet-type {storage.n.04} {computer_operation.n.01}) (english {storage.n.04} "storage") (new-wordnet-type {fragmentation.n.03} {storage.n.04}) (english {fragmentation.n.03} "fragmentation") (new-wordnet-type {retrieval.n.01} {computer_operation.n.01}) (english {retrieval.n.01} "retrieval") (new-wordnet-type {stovepiping.n.01} {retrieval.n.01}) (english {stovepiping.n.01} "stovepiping") (new-wordnet-type {floating-point_operation.n.01} {computer_operation.n.01}) (english {floating-point_operation.n.01} "floating-point operation" "flop") (new-wordnet-type {boolean_operation.n.01} {operation.n.04}) (english {boolean_operation.n.01} "boolean operation" "binary operation" "binary arithmetic operation") (new-wordnet-type {auxiliary_operation.n.01} {operation.n.04}) (english {auxiliary_operation.n.01} "auxiliary operation" "off-line operation") (new-wordnet-type {asynchronous_operation.n.01} {operation.n.04}) (english {asynchronous_operation.n.01} "asynchronous operation") (new-wordnet-type {access.n.05} {operation.n.04}) (english {access.n.05} "access" "memory access") (new-wordnet-type {disk_access.n.01} {access.n.05}) (english {disk_access.n.01} "disk access") (new-wordnet-type {multiprocessing.n.01} {data_processing.n.01}) (english {multiprocessing.n.01} "multiprocessing" "parallel processing") (new-wordnet-type {list_processing.n.01} {data_processing.n.01}) (english {list_processing.n.01} "list processing") (new-wordnet-type {distributed_data_processing.n.01} {data_processing.n.01}) (english {distributed_data_processing.n.01} "distributed data processing" "remote-access data processing" "teleprocessing") (new-wordnet-type {data_mining.n.01} {data_processing.n.01}) (english {data_mining.n.01} "data mining") (new-wordnet-type {automatic_data_processing.n.01} {data_processing.n.01}) (english {automatic_data_processing.n.01} "automatic data processing" "ADP") (new-wordnet-type {integrated_data_processing.n.01} {automatic_data_processing.n.01}) (english {integrated_data_processing.n.01} "integrated data processing" "IDP") (new-wordnet-type {electronic_data_processing.n.01} {automatic_data_processing.n.01}) (english {electronic_data_processing.n.01} "electronic data processing" "EDP") (new-wordnet-type {administrative_data_processing.n.01} {data_processing.n.01}) (english {administrative_data_processing.n.01} "administrative data processing" "business data processing") (new-wordnet-type {blowing.n.01} {processing.n.01}) (english {blowing.n.01} "blowing") (new-wordnet-type {insufflation.n.01} {blowing.n.01}) (english {insufflation.n.01} "insufflation") (new-wordnet-type {photography.n.02} {process.n.06}) (english {photography.n.02} "photography") (new-wordnet-type {video_digitizing.n.01} {photography.n.02}) (english {video_digitizing.n.01} "video digitizing") (new-wordnet-type {dithering.n.01} {video_digitizing.n.01}) (english {dithering.n.01} "dithering") (new-wordnet-type {scanning.n.01} {photography.n.02}) (english {scanning.n.01} "scanning") (new-wordnet-type {radiography.n.01} {photography.n.02}) (english {radiography.n.01} "radiography" "skiagraphy") (new-wordnet-type {autoradiography.n.01} {radiography.n.01}) (english {autoradiography.n.01} "autoradiography") (new-wordnet-type {powder_photography.n.01} {photography.n.02}) (english {powder_photography.n.01} "powder photography" "powder method" "powder technique") (new-wordnet-type {photomechanics.n.01} {photography.n.02}) (english {photomechanics.n.01} "photomechanics" "photoplate making") (new-wordnet-type {dry_plate.n.01} {photography.n.02}) (english {dry_plate.n.01} "dry plate" "dry plate process") (new-wordnet-type {digital_photography.n.01} {photography.n.02}) (english {digital_photography.n.01} "digital photography") (new-wordnet-type {autotype.n.01} {photography.n.02}) (english {autotype.n.01} "autotype" "autotypy") (new-wordnet-type {anaglyphy.n.01} {photography.n.02}) (english {anaglyphy.n.01} "anaglyphy") (new-wordnet-type {phenomenon.n.01} {process.n.06}) (english {phenomenon.n.01} "phenomenon") (new-wordnet-type {pulsation.n.02} {phenomenon.n.01}) (english {pulsation.n.02} "pulsation") (new-wordnet-type {natural_phenomenon.n.01} {phenomenon.n.01}) (english {natural_phenomenon.n.01} "natural phenomenon") (new-wordnet-type {physical_phenomenon.n.01} {natural_phenomenon.n.01}) (english {physical_phenomenon.n.01} "physical phenomenon") (new-wordnet-type {turbulence.n.01} {physical_phenomenon.n.01}) (english {turbulence.n.01} "turbulence" "turbulency") (new-wordnet-type {rip.n.03} {turbulence.n.01}) (english {rip.n.03} "rip" "riptide" "tide rip" "crosscurrent" "countercurrent") (new-wordnet-type {transparency.n.01} {physical_phenomenon.n.01}) (english {transparency.n.01} "transparency" "transparence") (new-wordnet-type {syzygy.n.01} {physical_phenomenon.n.01}) (english {syzygy.n.01} "syzygy") (new-wordnet-type {surface_tension.n.01} {physical_phenomenon.n.01}) (english {surface_tension.n.01} "surface tension") (new-wordnet-type {interfacial_tension.n.01} {surface_tension.n.01}) (english {interfacial_tension.n.01} "interfacial tension" "interfacial surface tension") (new-wordnet-type {capillarity.n.01} {surface_tension.n.01}) (english {capillarity.n.01} "capillarity" "capillary action") (new-wordnet-type {resonance.n.01} {physical_phenomenon.n.01}) (english {resonance.n.01} "resonance") (new-wordnet-type {nuclear_resonance.n.01} {resonance.n.01}) (english {nuclear_resonance.n.01} "nuclear resonance") (new-wordnet-type {magnetic_resonance.n.01} {resonance.n.01}) (english {magnetic_resonance.n.01} "magnetic resonance") (new-wordnet-type {nuclear_magnetic_resonance.n.01} {magnetic_resonance.n.01}) (english {nuclear_magnetic_resonance.n.01} "nuclear magnetic resonance" "NMR" "proton magnetic resonance") (new-wordnet-type {resolving_power.n.01} {physical_phenomenon.n.01}) (english {resolving_power.n.01} "resolving power" "resolution") (new-wordnet-type {resolution.n.07} {physical_phenomenon.n.01}) (english {resolution.n.07} "resolution") (new-wordnet-type {refraction.n.01} {physical_phenomenon.n.01}) (english {refraction.n.01} "refraction") (new-wordnet-type {double_refraction.n.01} {refraction.n.01}) (english {double_refraction.n.01} "double refraction" "birefringence") (new-wordnet-type {reflection.n.02} {physical_phenomenon.n.01}) (english {reflection.n.02} "reflection" "reflexion") (new-wordnet-type {zodiacal_light.n.01} {reflection.n.02}) (english {zodiacal_light.n.01} "zodiacal light") (new-wordnet-type {virtual_image.n.01} {reflection.n.02}) (english {virtual_image.n.01} "virtual image") (new-wordnet-type {interreflection.n.01} {reflection.n.02}) (english {interreflection.n.01} "interreflection") (new-wordnet-type {flare.n.07} {reflection.n.02}) (english {flare.n.07} "flare") (new-wordnet-type {propagation.n.03} {physical_phenomenon.n.01}) (english {propagation.n.03} "propagation") (new-wordnet-type {wave_front.n.01} {propagation.n.03}) (english {wave_front.n.01} "wave front") (new-wordnet-type {red_shift.n.01} {propagation.n.03}) (english {red_shift.n.01} "red shift" "redshift") (new-wordnet-type {doppler_effect.n.01} {propagation.n.03}) (english {doppler_effect.n.01} "Doppler effect" "Doppler shift") (new-wordnet-type {pressure.n.01} {physical_phenomenon.n.01}) (english {pressure.n.01} "pressure" "pressure level" "force per unit area") (new-wordnet-type {vapor_pressure.n.01} {pressure.n.01}) (english {vapor_pressure.n.01} "vapor pressure" "vapour pressure") (new-wordnet-type {suction.n.01} {pressure.n.01}) (english {suction.n.01} "suction") (new-wordnet-type {sound_pressure.n.01} {pressure.n.01}) (english {sound_pressure.n.01} "sound pressure" "instantaneous sound pressure") (new-wordnet-type {radiation_pressure.n.01} {pressure.n.01}) (english {radiation_pressure.n.01} "radiation pressure" "corpuscular-radiation pressure") (new-wordnet-type {acoustic_radiation_pressure.n.01} {radiation_pressure.n.01}) (english {acoustic_radiation_pressure.n.01} "acoustic radiation pressure") (new-wordnet-type {osmotic_pressure.n.01} {pressure.n.01}) (english {osmotic_pressure.n.01} "osmotic pressure") (new-wordnet-type {hypotonicity.n.01} {osmotic_pressure.n.01}) (english {hypotonicity.n.01} "hypotonicity") (new-wordnet-type {hypertonicity.n.01} {osmotic_pressure.n.01}) (english {hypertonicity.n.01} "hypertonicity") (new-wordnet-type {oil_pressure.n.01} {pressure.n.01}) (english {oil_pressure.n.01} "oil pressure") (new-wordnet-type {intraocular_pressure.n.01} {pressure.n.01}) (english {intraocular_pressure.n.01} "intraocular pressure" "IOP") (new-wordnet-type {hydrostatic_head.n.01} {pressure.n.01}) (english {hydrostatic_head.n.01} "hydrostatic head") (new-wordnet-type {head.n.06} {pressure.n.01}) (english {head.n.06} "head") (new-wordnet-type {gas_pressure.n.01} {pressure.n.01}) (english {gas_pressure.n.01} "gas pressure") (new-wordnet-type {atmospheric_pressure.n.01} {gas_pressure.n.01}) (english {atmospheric_pressure.n.01} "atmospheric pressure" "air pressure" "pressure") (new-wordnet-type {sea-level_pressure.n.01} {atmospheric_pressure.n.01}) (english {sea-level_pressure.n.01} "sea-level pressure") (new-wordnet-type {overpressure.n.01} {atmospheric_pressure.n.01}) (english {overpressure.n.01} "overpressure") (new-wordnet-type {compartment_pressure.n.01} {atmospheric_pressure.n.01}) (english {compartment_pressure.n.01} "compartment pressure") (new-wordnet-type {barometric_pressure.n.01} {atmospheric_pressure.n.01}) (english {barometric_pressure.n.01} "barometric pressure") (new-wordnet-type {blood_pressure.n.01} {pressure.n.01}) (english {blood_pressure.n.01} "blood pressure") (new-wordnet-type {venous_pressure.n.01} {blood_pressure.n.01}) (english {venous_pressure.n.01} "venous pressure") (new-wordnet-type {systolic_pressure.n.01} {blood_pressure.n.01}) (english {systolic_pressure.n.01} "systolic pressure") (new-wordnet-type {diastolic_pressure.n.01} {blood_pressure.n.01}) (english {diastolic_pressure.n.01} "diastolic pressure") (new-wordnet-type {arterial_pressure.n.01} {blood_pressure.n.01}) (english {arterial_pressure.n.01} "arterial pressure") (new-wordnet-type {power.n.02} {physical_phenomenon.n.01}) (english {power.n.02} "power") (new-wordnet-type {waterpower.n.01} {power.n.02}) (english {waterpower.n.01} "waterpower") (new-wordnet-type {electrical_power.n.01} {power.n.02}) (english {electrical_power.n.01} "electrical power" "electric power" "wattage") (new-wordnet-type {load.n.05} {electrical_power.n.01}) (english {load.n.05} "load") (new-wordnet-type {optical_phenomenon.n.01} {physical_phenomenon.n.01}) (english {optical_phenomenon.n.01} "optical phenomenon") (new-wordnet-type {tyndall_effect.n.01} {optical_phenomenon.n.01}) (english {tyndall_effect.n.01} "Tyndall effect") (new-wordnet-type {polarization.n.01} {optical_phenomenon.n.01}) (english {polarization.n.01} "polarization" "polarisation") (new-wordnet-type {pleochroism.n.01} {optical_phenomenon.n.01}) (english {pleochroism.n.01} "pleochroism") (new-wordnet-type {trichroism.n.01} {pleochroism.n.01}) (english {trichroism.n.01} "trichroism") (new-wordnet-type {dichroism.n.01} {pleochroism.n.01}) (english {dichroism.n.01} "dichroism") (new-wordnet-type {parallax.n.01} {optical_phenomenon.n.01}) (english {parallax.n.01} "parallax") (new-wordnet-type {heliocentric_parallax.n.01} {parallax.n.01}) (english {heliocentric_parallax.n.01} "heliocentric parallax" "annual parallax") (new-wordnet-type {stellar_parallax.n.01} {heliocentric_parallax.n.01}) (english {stellar_parallax.n.01} "stellar parallax") (new-wordnet-type {geocentric_parallax.n.01} {parallax.n.01}) (english {geocentric_parallax.n.01} "geocentric parallax" "diurnal parallax") (new-wordnet-type {solar_parallax.n.01} {geocentric_parallax.n.01}) (english {solar_parallax.n.01} "solar parallax") (new-wordnet-type {horizontal_parallax.n.01} {geocentric_parallax.n.01}) (english {horizontal_parallax.n.01} "horizontal parallax") (new-wordnet-type {optical_illusion.n.01} {optical_phenomenon.n.01}) (english {optical_illusion.n.01} "optical illusion") (new-wordnet-type {mirage.n.01} {optical_illusion.n.01}) (english {mirage.n.01} "mirage") (new-wordnet-type {fata_morgana.n.01} {mirage.n.01}) (english {fata_morgana.n.01} "fata morgana") (new-wordnet-type {apparent_motion.n.01} {optical_illusion.n.01}) (english {apparent_motion.n.01} "apparent motion" "motion" "apparent movement" "movement") (new-wordnet-type {incidence.n.02} {optical_phenomenon.n.01}) (english {incidence.n.02} "incidence") (new-wordnet-type {fringe.n.03} {optical_phenomenon.n.01}) (english {fringe.n.03} "fringe" "interference fringe") (new-wordnet-type {diffraction.n.01} {optical_phenomenon.n.01}) (english {diffraction.n.01} "diffraction") (new-wordnet-type {x-ray_diffraction.n.01} {diffraction.n.01}) (english {x-ray_diffraction.n.01} "X-ray diffraction") (new-wordnet-type {absorption_band.n.01} {optical_phenomenon.n.01}) (english {absorption_band.n.01} "absorption band") (new-wordnet-type {aberration.n.03} {optical_phenomenon.n.01}) (english {aberration.n.03} "aberration" "distortion" "optical aberration") (new-wordnet-type {spherical_aberration.n.01} {aberration.n.03}) (english {spherical_aberration.n.01} "spherical aberration") (new-wordnet-type {chromatic_aberration.n.01} {aberration.n.03}) (english {chromatic_aberration.n.01} "chromatic aberration") (new-wordnet-type {opacity.n.01} {physical_phenomenon.n.01}) (english {opacity.n.01} "opacity") (new-wordnet-type {radiopacity.n.01} {opacity.n.01}) (english {radiopacity.n.01} "radiopacity" "radio-opacity") (new-wordnet-type {optical_opacity.n.01} {opacity.n.01}) (english {optical_opacity.n.01} "optical opacity") (new-wordnet-type {mechanical_phenomenon.n.01} {physical_phenomenon.n.01}) (english {mechanical_phenomenon.n.01} "mechanical phenomenon") (new-wordnet-type {trajectory.n.01} {mechanical_phenomenon.n.01}) (english {trajectory.n.01} "trajectory" "flight") (new-wordnet-type {gravity-assist.n.01} {trajectory.n.01}) (english {gravity-assist.n.01} "gravity-assist") (new-wordnet-type {ballistics.n.01} {trajectory.n.01}) (english {ballistics.n.01} "ballistics" "ballistic trajectory") (new-wordnet-type {sound.n.03} {mechanical_phenomenon.n.01}) (english {sound.n.03} "sound") (new-wordnet-type {ultrasound.n.01} {sound.n.03}) (english {ultrasound.n.01} "ultrasound") (new-wordnet-type {resistance.n.02} {mechanical_phenomenon.n.01}) (english {resistance.n.02} "resistance") (new-wordnet-type {friction.n.02} {resistance.n.02}) (english {friction.n.02} "friction" "rubbing") (new-wordnet-type {grip.n.04} {friction.n.02}) (english {grip.n.04} "grip" "traction" "adhesive friction") (new-wordnet-type {grinding.n.03} {friction.n.02}) (english {grinding.n.03} "grinding" "abrasion" "attrition" "detrition") (new-wordnet-type {drag.n.01} {resistance.n.02}) (english {drag.n.01} "drag" "retarding force") (new-wordnet-type {windage.n.01} {drag.n.01}) (english {windage.n.01} "windage") (new-wordnet-type {sonic_barrier.n.01} {drag.n.01}) (english {sonic_barrier.n.01} "sonic barrier" "sound barrier") (new-wordnet-type {acoustic_resistance.n.01} {resistance.n.02}) (english {acoustic_resistance.n.01} "acoustic resistance" "acoustic impedance" "acoustic reactance") (new-wordnet-type {leverage.n.01} {mechanical_phenomenon.n.01}) (english {leverage.n.01} "leverage" "purchase") (new-wordnet-type {inertia.n.02} {mechanical_phenomenon.n.01}) (english {inertia.n.02} "inertia") (new-wordnet-type {moment_of_inertia.n.01} {inertia.n.02}) (english {moment_of_inertia.n.01} "moment of inertia") (new-wordnet-type {interaction.n.02} {physical_phenomenon.n.01}) (english {interaction.n.02} "interaction" "fundamental interaction") (new-wordnet-type {weak_interaction.n.01} {interaction.n.02}) (english {weak_interaction.n.01} "weak interaction" "weak force") (new-wordnet-type {strong_interaction.n.01} {interaction.n.02}) (english {strong_interaction.n.01} "strong interaction" "strong force" "color force") (new-wordnet-type {gravitational_interaction.n.01} {interaction.n.02}) (english {gravitational_interaction.n.01} "gravitational interaction") (new-wordnet-type {electromagnetic_interaction.n.01} {interaction.n.02}) (english {electromagnetic_interaction.n.01} "electromagnetic interaction") (new-wordnet-type {hysteresis.n.01} {physical_phenomenon.n.01}) (english {hysteresis.n.01} "hysteresis") (new-wordnet-type {force.n.02} {physical_phenomenon.n.01}) (english {force.n.02} "force") (new-wordnet-type {torsion.n.02} {force.n.02}) (english {torsion.n.02} "torsion" "torque") (new-wordnet-type {magnetic_moment.n.01} {torsion.n.02}) (english {magnetic_moment.n.01} "magnetic moment" "moment of a magnet") (new-wordnet-type {stress.n.05} {force.n.02}) (english {stress.n.05} "stress") (new-wordnet-type {tension.n.04} {stress.n.05}) (english {tension.n.04} "tension") (new-wordnet-type {breaking_point.n.02} {stress.n.05}) (english {breaking_point.n.02} "breaking point") (new-wordnet-type {repulsion.n.01} {force.n.02}) (english {repulsion.n.01} "repulsion" "repulsive force") (new-wordnet-type {reaction.n.04} {force.n.02}) (english {reaction.n.04} "reaction") (new-wordnet-type {push.n.02} {force.n.02}) (english {push.n.02} "push" "thrust") (new-wordnet-type {pull.n.02} {force.n.02}) (english {pull.n.02} "pull") (new-wordnet-type {propulsion.n.01} {force.n.02}) (english {propulsion.n.01} "propulsion") (new-wordnet-type {reaction_propulsion.n.01} {propulsion.n.01}) (english {reaction_propulsion.n.01} "reaction propulsion") (new-wordnet-type {rocket_propulsion.n.01} {reaction_propulsion.n.01}) (english {rocket_propulsion.n.01} "rocket propulsion") (new-wordnet-type {jet_propulsion.n.01} {reaction_propulsion.n.01}) (english {jet_propulsion.n.01} "jet propulsion") (new-wordnet-type {nuclear_propulsion.n.01} {propulsion.n.01}) (english {nuclear_propulsion.n.01} "nuclear propulsion") (new-wordnet-type {moment.n.05} {force.n.02}) (english {moment.n.05} "moment") (new-wordnet-type {moment_of_inertia.n.01} {moment.n.05}) (english {moment_of_inertia.n.01} "moment of inertia") (new-wordnet-type {moment_of_a_couple.n.01} {moment.n.05}) (english {moment_of_a_couple.n.01} "moment of a couple") (new-wordnet-type {dipole_moment.n.01} {moment.n.05}) (english {dipole_moment.n.01} "dipole moment") (new-wordnet-type {magnetic_dipole_moment.n.01} {dipole_moment.n.01}) (english {magnetic_dipole_moment.n.01} "magnetic dipole moment") (new-wordnet-type {electric_dipole_moment.n.01} {dipole_moment.n.01}) (english {electric_dipole_moment.n.01} "electric dipole moment") (new-wordnet-type {magnetomotive_force.n.01} {force.n.02}) (english {magnetomotive_force.n.01} "magnetomotive force") (new-wordnet-type {lorentz_force.n.01} {force.n.02}) (english {lorentz_force.n.01} "Lorentz force") (new-wordnet-type {life_force.n.01} {force.n.02}) (english {life_force.n.01} "life force" "vital force" "vitality" "elan vital") (new-wordnet-type {drift.n.01} {force.n.02}) (english {drift.n.01} "drift" "impetus" "impulsion") (new-wordnet-type {coriolis_force.n.01} {force.n.02}) (english {coriolis_force.n.01} "Coriolis force") (new-wordnet-type {cohesion.n.03} {force.n.02}) (english {cohesion.n.03} "cohesion") (new-wordnet-type {centripetal_force.n.01} {force.n.02}) (english {centripetal_force.n.01} "centripetal force") (new-wordnet-type {centrifugal_force.n.01} {force.n.02}) (english {centrifugal_force.n.01} "centrifugal force") (new-wordnet-type {attraction.n.01} {force.n.02}) (english {attraction.n.01} "attraction" "attractive force") (new-wordnet-type {van_der_waal's_forces.n.01} {attraction.n.01}) (english {van_der_waal's_forces.n.01} "van der Waal's forces") (new-wordnet-type {magnetism.n.01} {attraction.n.01}) (english {magnetism.n.01} "magnetism" "magnetic attraction" "magnetic force") (new-wordnet-type {paramagnetism.n.01} {magnetism.n.01}) (english {paramagnetism.n.01} "paramagnetism") (new-wordnet-type {ferromagnetism.n.01} {magnetism.n.01}) (english {ferromagnetism.n.01} "ferromagnetism") (new-wordnet-type {electromagnetism.n.01} {magnetism.n.01}) (english {electromagnetism.n.01} "electromagnetism") (new-wordnet-type {diamagnetism.n.01} {magnetism.n.01}) (english {diamagnetism.n.01} "diamagnetism") (new-wordnet-type {antiferromagnetism.n.01} {magnetism.n.01}) (english {antiferromagnetism.n.01} "antiferromagnetism") (new-wordnet-type {ferrimagnetism.n.01} {antiferromagnetism.n.01}) (english {ferrimagnetism.n.01} "ferrimagnetism") (new-wordnet-type {gravity.n.01} {attraction.n.01}) (english {gravity.n.01} "gravity" "gravitation" "gravitational attraction" "gravitational force") (new-wordnet-type {solar_gravity.n.01} {gravity.n.01}) (english {solar_gravity.n.01} "solar gravity") (new-wordnet-type {chemical_bond.n.01} {attraction.n.01}) (english {chemical_bond.n.01} "chemical bond" "bond") (new-wordnet-type {peptide_bond.n.01} {chemical_bond.n.01}) (english {peptide_bond.n.01} "peptide bond" "peptide linkage") (new-wordnet-type {metallic_bond.n.01} {chemical_bond.n.01}) (english {metallic_bond.n.01} "metallic bond") (new-wordnet-type {ionic_bond.n.01} {chemical_bond.n.01}) (english {ionic_bond.n.01} "ionic bond" "electrovalent bond" "electrostatic bond") (new-wordnet-type {hydrogen_bond.n.01} {chemical_bond.n.01}) (english {hydrogen_bond.n.01} "hydrogen bond") (new-wordnet-type {cross-link.n.01} {chemical_bond.n.01}) (english {cross-link.n.01} "cross-link" "cross-linkage") (new-wordnet-type {covalent_bond.n.01} {chemical_bond.n.01}) (english {covalent_bond.n.01} "covalent bond") (new-wordnet-type {double_bond.n.01} {covalent_bond.n.01}) (english {double_bond.n.01} "double bond") (new-wordnet-type {coordinate_bond.n.01} {covalent_bond.n.01}) (english {coordinate_bond.n.01} "coordinate bond" "dative bond") (new-wordnet-type {affinity.n.01} {attraction.n.01}) (english {affinity.n.01} "affinity") (new-wordnet-type {affinity.n.05} {force.n.02}) (english {affinity.n.05} "affinity" "chemical attraction") (new-wordnet-type {aerodynamic_force.n.01} {force.n.02}) (english {aerodynamic_force.n.01} "aerodynamic force") (new-wordnet-type {aerodynamic_lift.n.01} {aerodynamic_force.n.01}) (english {aerodynamic_lift.n.01} "aerodynamic lift" "lift") (new-wordnet-type {ground_effect.n.01} {aerodynamic_lift.n.01}) (english {ground_effect.n.01} "ground effect") (new-wordnet-type {flotation.n.01} {physical_phenomenon.n.01}) (english {flotation.n.01} "flotation" "floatation") (new-wordnet-type {field.n.05} {physical_phenomenon.n.01}) (english {field.n.05} "field" "field of force" "force field") (new-wordnet-type {radiation_field.n.01} {field.n.05}) (english {radiation_field.n.01} "radiation field") (new-wordnet-type {magnetic_field.n.01} {field.n.05}) (english {magnetic_field.n.01} "magnetic field" "magnetic flux" "flux") (new-wordnet-type {solar_magnetic_field.n.01} {magnetic_field.n.01}) (english {solar_magnetic_field.n.01} "solar magnetic field") (new-wordnet-type {magnetosphere.n.01} {magnetic_field.n.01}) (english {magnetosphere.n.01} "magnetosphere") (new-wordnet-type {gravitational_field.n.01} {field.n.05}) (english {gravitational_field.n.01} "gravitational field") (new-wordnet-type {electric_field.n.01} {field.n.05}) (english {electric_field.n.01} "electric field") (new-wordnet-type {electrostatic_field.n.01} {electric_field.n.01}) (english {electrostatic_field.n.01} "electrostatic field") (new-wordnet-type {event.n.03} {physical_phenomenon.n.01}) (english {event.n.03} "event") (new-wordnet-type {energy.n.06} {physical_phenomenon.n.01}) (english {energy.n.06} "energy") (new-wordnet-type {energy.n.01} {physical_phenomenon.n.01}) (english {energy.n.01} "energy" "free energy") (new-wordnet-type {work.n.05} {energy.n.01}) (english {work.n.05} "work") (new-wordnet-type {rest_energy.n.01} {energy.n.01}) (english {rest_energy.n.01} "rest energy") (new-wordnet-type {radiation.n.01} {energy.n.01}) (english {radiation.n.01} "radiation") (new-wordnet-type {solar_radiation.n.01} {radiation.n.01}) (english {solar_radiation.n.01} "solar radiation") (new-wordnet-type {solar_wind.n.01} {solar_radiation.n.01}) (english {solar_wind.n.01} "solar wind") (new-wordnet-type {solar_prominence.n.01} {solar_radiation.n.01}) (english {solar_prominence.n.01} "solar prominence") (new-wordnet-type {solar_flare.n.01} {solar_radiation.n.01}) (english {solar_flare.n.01} "solar flare" "flare") (new-wordnet-type {insolation.n.02} {solar_radiation.n.01}) (english {insolation.n.02} "insolation") (new-wordnet-type {ionizing_radiation.n.01} {radiation.n.01}) (english {ionizing_radiation.n.01} "ionizing radiation") (new-wordnet-type {x_ray.n.01} {ionizing_radiation.n.01}) (english {x_ray.n.01} "X ray" "X-ray" "X-radiation" "roentgen ray") (new-wordnet-type {neutron_radiation.n.01} {ionizing_radiation.n.01}) (english {neutron_radiation.n.01} "neutron radiation") (new-wordnet-type {cosmic_ray.n.01} {ionizing_radiation.n.01}) (english {cosmic_ray.n.01} "cosmic ray") (new-wordnet-type {beta_radiation.n.01} {ionizing_radiation.n.01}) (english {beta_radiation.n.01} "beta radiation" "beta ray" "electron radiation") (new-wordnet-type {alpha_radiation.n.01} {ionizing_radiation.n.01}) (english {alpha_radiation.n.01} "alpha radiation" "alpha ray") (new-wordnet-type {electromagnetic_radiation.n.01} {radiation.n.01}) (english {electromagnetic_radiation.n.01} "electromagnetic radiation" "electromagnetic wave" "nonparticulate radiation") (new-wordnet-type {x_ray.n.01} {electromagnetic_radiation.n.01}) (english {x_ray.n.01} "X ray" "X-ray" "X-radiation" "roentgen ray") (new-wordnet-type {radio_wave.n.01} {electromagnetic_radiation.n.01}) (english {radio_wave.n.01} "radio wave" "radio emission" "radio radiation") (new-wordnet-type {sky_wave.n.01} {radio_wave.n.01}) (english {sky_wave.n.01} "sky wave") (new-wordnet-type {ionospheric_wave.n.01} {sky_wave.n.01}) (english {ionospheric_wave.n.01} "ionospheric wave") (new-wordnet-type {short_wave.n.01} {radio_wave.n.01}) (english {short_wave.n.01} "short wave") (new-wordnet-type {radio_signal.n.01} {radio_wave.n.01}) (english {radio_signal.n.01} "radio signal") (new-wordnet-type {medium_wave.n.01} {radio_wave.n.01}) (english {medium_wave.n.01} "medium wave") (new-wordnet-type {long_wave.n.01} {radio_wave.n.01}) (english {long_wave.n.01} "long wave") (new-wordnet-type {ground_wave.n.01} {radio_wave.n.01}) (english {ground_wave.n.01} "ground wave") (new-wordnet-type {carrier_wave.n.01} {radio_wave.n.01}) (english {carrier_wave.n.01} "carrier wave" "carrier") (new-wordnet-type {microwave.n.01} {electromagnetic_radiation.n.01}) (english {microwave.n.01} "microwave") (new-wordnet-type {line.n.06} {electromagnetic_radiation.n.01}) (english {line.n.06} "line") (new-wordnet-type {hertzian_wave.n.01} {electromagnetic_radiation.n.01}) (english {hertzian_wave.n.01} "Hertzian wave") (new-wordnet-type {gamma_radiation.n.01} {electromagnetic_radiation.n.01}) (english {gamma_radiation.n.01} "gamma radiation" "gamma ray") (new-wordnet-type {black-body_radiation.n.01} {electromagnetic_radiation.n.01}) (english {black-body_radiation.n.01} "black-body radiation" "blackbody radiation") (new-wordnet-type {beam.n.03} {electromagnetic_radiation.n.01}) (english {beam.n.03} "beam" "ray" "electron beam") (new-wordnet-type {particle_beam.n.01} {beam.n.03}) (english {particle_beam.n.01} "particle beam") (new-wordnet-type {ion_beam.n.01} {particle_beam.n.01}) (english {ion_beam.n.01} "ion beam" "ionic beam") (new-wordnet-type {cathode_ray.n.01} {beam.n.03}) (english {cathode_ray.n.01} "cathode ray") (new-wordnet-type {actinic_radiation.n.01} {electromagnetic_radiation.n.01}) (english {actinic_radiation.n.01} "actinic radiation" "actinic ray") (new-wordnet-type {ultraviolet.n.01} {actinic_radiation.n.01}) (english {ultraviolet.n.01} "ultraviolet" "ultraviolet radiation" "ultraviolet light" "ultraviolet illumination" "UV") (new-wordnet-type {sunray.n.03} {ultraviolet.n.01}) (english {sunray.n.03} "sunray" "sun-ray") (new-wordnet-type {light.n.01} {actinic_radiation.n.01}) (english {light.n.01} "light" "visible light" "visible radiation") (new-wordnet-type {twilight.n.02} {light.n.01}) (english {twilight.n.02} "twilight") (new-wordnet-type {torchlight.n.01} {light.n.01}) (english {torchlight.n.01} "torchlight") (new-wordnet-type {sunlight.n.01} {light.n.01}) (english {sunlight.n.01} "sunlight" "sunshine" "sun") (new-wordnet-type {sunburst.n.01} {sunlight.n.01}) (english {sunburst.n.01} "sunburst") (new-wordnet-type {streamer.n.01} {light.n.01}) (english {streamer.n.01} "streamer") (new-wordnet-type {starlight.n.01} {light.n.01}) (english {starlight.n.01} "starlight") (new-wordnet-type {scintillation.n.01} {light.n.01}) (english {scintillation.n.01} "scintillation") (new-wordnet-type {radiance.n.01} {light.n.01}) (english {radiance.n.01} "radiance" "glow" "glowing") (new-wordnet-type {aureole.n.01} {radiance.n.01}) (english {aureole.n.01} "aureole" "corona") (new-wordnet-type {moonlight.n.01} {light.n.01}) (english {moonlight.n.01} "moonlight" "moonshine" "Moon") (new-wordnet-type {meteor.n.02} {light.n.01}) (english {meteor.n.02} "meteor" "shooting star") (new-wordnet-type {bolide.n.01} {meteor.n.02}) (english {bolide.n.01} "bolide" "fireball") (new-wordnet-type {luminescence.n.01} {light.n.01}) (english {luminescence.n.01} "luminescence") (new-wordnet-type {chemiluminescence.n.01} {luminescence.n.01}) (english {chemiluminescence.n.01} "chemiluminescence") (new-wordnet-type {bioluminescence.n.01} {luminescence.n.01}) (english {bioluminescence.n.01} "bioluminescence") (new-wordnet-type {lamplight.n.01} {light.n.01}) (english {lamplight.n.01} "lamplight") (new-wordnet-type {incandescence.n.01} {light.n.01}) (english {incandescence.n.01} "incandescence" "glow") (new-wordnet-type {half-light.n.01} {light.n.01}) (english {half-light.n.01} "half-light") (new-wordnet-type {glow.n.05} {light.n.01}) (english {glow.n.05} "glow") (new-wordnet-type {sky_glow.n.01} {glow.n.05}) (english {sky_glow.n.01} "sky glow") (new-wordnet-type {gaslight.n.01} {light.n.01}) (english {gaslight.n.01} "gaslight") (new-wordnet-type {friar's_lantern.n.01} {light.n.01}) (english {friar's_lantern.n.01} "friar's lantern" "ignis fatuus" "jack-o'-lantern" "will-o'-the-wisp") (new-wordnet-type {fluorescence.n.01} {light.n.01}) (english {fluorescence.n.01} "fluorescence") (new-wordnet-type {phosphorescence.n.01} {fluorescence.n.01}) (english {phosphorescence.n.01} "phosphorescence") (new-wordnet-type {autofluorescence.n.01} {fluorescence.n.01}) (english {autofluorescence.n.01} "autofluorescence") (new-wordnet-type {firelight.n.01} {light.n.01}) (english {firelight.n.01} "firelight") (new-wordnet-type {daylight.n.02} {light.n.01}) (english {daylight.n.02} "daylight") (new-wordnet-type {counterglow.n.01} {light.n.01}) (english {counterglow.n.01} "counterglow" "gegenschein") (new-wordnet-type {corona.n.04} {light.n.01}) (english {corona.n.04} "corona") (new-wordnet-type {candlelight.n.01} {light.n.01}) (english {candlelight.n.01} "candlelight" "candle flame") (new-wordnet-type {beam.n.04} {light.n.01}) (english {beam.n.04} "beam" "beam of light" "light beam" "ray" "ray of light" "shaft" "shaft of light" "irradiation") (new-wordnet-type {sunbeam.n.01} {beam.n.04}) (english {sunbeam.n.01} "sunbeam" "sunray") (new-wordnet-type {moonbeam.n.01} {beam.n.04}) (english {moonbeam.n.01} "moonbeam" "moon ray" "moon-ray") (new-wordnet-type {low_beam.n.01} {beam.n.04}) (english {low_beam.n.01} "low beam") (new-wordnet-type {laser_beam.n.01} {beam.n.04}) (english {laser_beam.n.01} "laser beam") (new-wordnet-type {high_beam.n.01} {beam.n.04}) (english {high_beam.n.01} "high beam") (new-wordnet-type {heat_ray.n.01} {beam.n.04}) (english {heat_ray.n.01} "heat ray") (new-wordnet-type {infrared_ray.n.01} {heat_ray.n.01}) (english {infrared_ray.n.01} "infrared ray") (new-wordnet-type {infrared.n.02} {actinic_radiation.n.01}) (english {infrared.n.02} "infrared" "infrared light" "infrared radiation" "infrared emission") (new-wordnet-type {cosmic_radiation.n.01} {radiation.n.01}) (english {cosmic_radiation.n.01} "cosmic radiation") (new-wordnet-type {cosmic_background_radiation.n.01} {cosmic_radiation.n.01}) (english {cosmic_background_radiation.n.01} "cosmic background radiation" "CBR" "cosmic microwave background radiation" "CMBR" "cosmic microwave background" "CMB") (new-wordnet-type {radiant_energy.n.01} {energy.n.01}) (english {radiant_energy.n.01} "radiant energy") (new-wordnet-type {luminous_energy.n.01} {radiant_energy.n.01}) (english {luminous_energy.n.01} "luminous energy") (new-wordnet-type {mechanical_energy.n.01} {energy.n.01}) (english {mechanical_energy.n.01} "mechanical energy") (new-wordnet-type {potential_energy.n.01} {mechanical_energy.n.01}) (english {potential_energy.n.01} "potential energy" "P.E.") (new-wordnet-type {elastic_energy.n.01} {potential_energy.n.01}) (english {elastic_energy.n.01} "elastic energy" "elastic potential energy") (new-wordnet-type {kinetic_energy.n.01} {mechanical_energy.n.01}) (english {kinetic_energy.n.01} "kinetic energy" "K.E.") (new-wordnet-type {heat.n.01} {energy.n.01}) (english {heat.n.01} "heat" "heat energy") (new-wordnet-type {specific_heat.n.01} {heat.n.01}) (english {specific_heat.n.01} "specific heat") (new-wordnet-type {latent_heat.n.01} {heat.n.01}) (english {latent_heat.n.01} "latent heat" "heat of transformation") (new-wordnet-type {heat_of_vaporization.n.01} {latent_heat.n.01}) (english {heat_of_vaporization.n.01} "heat of vaporization" "heat of vaporisation") (new-wordnet-type {heat_of_sublimation.n.01} {latent_heat.n.01}) (english {heat_of_sublimation.n.01} "heat of sublimation") (new-wordnet-type {heat_of_solidification.n.01} {latent_heat.n.01}) (english {heat_of_solidification.n.01} "heat of solidification") (new-wordnet-type {heat_of_fusion.n.01} {latent_heat.n.01}) (english {heat_of_fusion.n.01} "heat of fusion") (new-wordnet-type {heat_of_condensation.n.01} {latent_heat.n.01}) (english {heat_of_condensation.n.01} "heat of condensation") (new-wordnet-type {heat_of_solution.n.01} {heat.n.01}) (english {heat_of_solution.n.01} "heat of solution") (new-wordnet-type {heat_of_formation.n.01} {heat.n.01}) (english {heat_of_formation.n.01} "heat of formation") (new-wordnet-type {heat_of_dissociation.n.01} {heat.n.01}) (english {heat_of_dissociation.n.01} "heat of dissociation") (new-wordnet-type {geothermal_energy.n.01} {heat.n.01}) (english {geothermal_energy.n.01} "geothermal energy") (new-wordnet-type {energy_level.n.01} {energy.n.01}) (english {energy_level.n.01} "energy level" "energy state") (new-wordnet-type {electricity.n.02} {energy.n.01}) (english {electricity.n.02} "electricity" "electrical energy") (new-wordnet-type {signal.n.03} {electricity.n.02}) (english {signal.n.03} "signal") (new-wordnet-type {interrupt.n.01} {signal.n.03}) (english {interrupt.n.01} "interrupt") (new-wordnet-type {direct_current.n.01} {electricity.n.02}) (english {direct_current.n.01} "direct current" "DC" "direct electric current") (new-wordnet-type {alternating_current.n.01} {electricity.n.02}) (english {alternating_current.n.01} "alternating current" "AC" "alternating electric current") (new-wordnet-type {chemical_energy.n.01} {energy.n.01}) (english {chemical_energy.n.01} "chemical energy") (new-wordnet-type {binding_energy.n.01} {energy.n.01}) (english {binding_energy.n.01} "binding energy" "separation energy") (new-wordnet-type {atomic_energy.n.01} {energy.n.01}) (english {atomic_energy.n.01} "atomic energy" "nuclear energy") (new-wordnet-type {atomic_power.n.01} {atomic_energy.n.01}) (english {atomic_power.n.01} "atomic power" "nuclear power") (new-wordnet-type {alternative_energy.n.01} {energy.n.01}) (english {alternative_energy.n.01} "alternative energy") (new-wordnet-type {wind_generation.n.01} {alternative_energy.n.01}) (english {wind_generation.n.01} "wind generation" "wind power") (new-wordnet-type {solar_energy.n.01} {alternative_energy.n.01}) (english {solar_energy.n.01} "solar energy" "solar power") (new-wordnet-type {activation_energy.n.01} {energy.n.01}) (english {activation_energy.n.01} "activation energy" "energy of activation") (new-wordnet-type {electricity.n.01} {physical_phenomenon.n.01}) (english {electricity.n.01} "electricity") (new-wordnet-type {thermoelectricity.n.01} {electricity.n.01}) (english {thermoelectricity.n.01} "thermoelectricity") (new-wordnet-type {static_electricity.n.01} {electricity.n.01}) (english {static_electricity.n.01} "static electricity") (new-wordnet-type {piezoelectricity.n.01} {electricity.n.01}) (english {piezoelectricity.n.01} "piezoelectricity" "piezoelectric effect" "piezo effect") (new-wordnet-type {photoelectricity.n.01} {electricity.n.01}) (english {photoelectricity.n.01} "photoelectricity") (new-wordnet-type {hydroelectricity.n.01} {electricity.n.01}) (english {hydroelectricity.n.01} "hydroelectricity") (new-wordnet-type {galvanism.n.01} {electricity.n.01}) (english {galvanism.n.01} "galvanism") (new-wordnet-type {dynamic_electricity.n.01} {electricity.n.01}) (english {dynamic_electricity.n.01} "dynamic electricity" "current electricity") (new-wordnet-type {electrical_phenomenon.n.01} {physical_phenomenon.n.01}) (english {electrical_phenomenon.n.01} "electrical phenomenon") (new-wordnet-type {voltage.n.01} {electrical_phenomenon.n.01}) (english {voltage.n.01} "voltage" "electromotive force" "emf") (new-wordnet-type {skin_effect.n.01} {electrical_phenomenon.n.01}) (english {skin_effect.n.01} "skin effect") (new-wordnet-type {reluctance.n.01} {electrical_phenomenon.n.01}) (english {reluctance.n.01} "reluctance") (new-wordnet-type {reactance.n.01} {electrical_phenomenon.n.01}) (english {reactance.n.01} "reactance") (new-wordnet-type {pyroelectricity.n.01} {electrical_phenomenon.n.01}) (english {pyroelectricity.n.01} "pyroelectricity") (new-wordnet-type {induction.n.02} {electrical_phenomenon.n.01}) (english {induction.n.02} "induction" "inductance") (new-wordnet-type {self-induction.n.01} {induction.n.02}) (english {self-induction.n.01} "self-induction") (new-wordnet-type {mutual_induction.n.01} {induction.n.02}) (english {mutual_induction.n.01} "mutual induction") (new-wordnet-type {electrical_disturbance.n.01} {electrical_phenomenon.n.01}) (english {electrical_disturbance.n.01} "electrical disturbance") (new-wordnet-type {electric_resistance.n.01} {electrical_phenomenon.n.01}) (english {electric_resistance.n.01} "electric resistance" "electrical resistance" "impedance" "resistance" "resistivity" "ohmic resistance") (new-wordnet-type {ohmage.n.01} {electric_resistance.n.01}) (english {ohmage.n.01} "ohmage") (new-wordnet-type {electric_potential.n.01} {electrical_phenomenon.n.01}) (english {electric_potential.n.01} "electric potential" "potential" "potential difference" "potential drop" "voltage") (new-wordnet-type {resting_potential.n.01} {electric_potential.n.01}) (english {resting_potential.n.01} "resting potential") (new-wordnet-type {evoked_potential.n.01} {electric_potential.n.01}) (english {evoked_potential.n.01} "evoked potential") (new-wordnet-type {elastance.n.01} {electrical_phenomenon.n.01}) (english {elastance.n.01} "elastance" "electrical elastance") (new-wordnet-type {distortion.n.04} {electrical_phenomenon.n.01}) (english {distortion.n.04} "distortion") (new-wordnet-type {nonlinear_distortion.n.01} {distortion.n.04}) (english {nonlinear_distortion.n.01} "nonlinear distortion" "amplitude distortion") (new-wordnet-type {dielectric_heating.n.01} {electrical_phenomenon.n.01}) (english {dielectric_heating.n.01} "dielectric heating") (new-wordnet-type {current.n.01} {electrical_phenomenon.n.01}) (english {current.n.01} "current" "electric current") (new-wordnet-type {thermionic_current.n.01} {current.n.01}) (english {thermionic_current.n.01} "thermionic current") (new-wordnet-type {juice.n.03} {current.n.01}) (english {juice.n.03} "juice") (new-wordnet-type {conductance.n.01} {electrical_phenomenon.n.01}) (english {conductance.n.01} "conductance") (new-wordnet-type {charge.n.04} {electrical_phenomenon.n.01}) (english {charge.n.04} "charge" "electric charge") (new-wordnet-type {positive_charge.n.01} {charge.n.04}) (english {positive_charge.n.01} "positive charge") (new-wordnet-type {negative_charge.n.01} {charge.n.04}) (english {negative_charge.n.01} "negative charge") (new-wordnet-type {electrostatic_charge.n.01} {charge.n.04}) (english {electrostatic_charge.n.01} "electrostatic charge") (new-wordnet-type {capacitance.n.01} {electrical_phenomenon.n.01}) (english {capacitance.n.01} "capacitance" "electrical capacity" "capacity") (new-wordnet-type {amperage.n.01} {electrical_phenomenon.n.01}) (english {amperage.n.01} "amperage") (new-wordnet-type {decalescence.n.01} {physical_phenomenon.n.01}) (english {decalescence.n.01} "decalescence") (new-wordnet-type {conduction.n.01} {physical_phenomenon.n.01}) (english {conduction.n.01} "conduction" "conductivity") (new-wordnet-type {electrical_conduction.n.01} {conduction.n.01}) (english {electrical_conduction.n.01} "electrical conduction") (new-wordnet-type {superconductivity.n.01} {electrical_conduction.n.01}) (english {superconductivity.n.01} "superconductivity") (new-wordnet-type {photoconductivity.n.01} {electrical_conduction.n.01}) (english {photoconductivity.n.01} "photoconductivity" "photoconduction") (new-wordnet-type {discharge.n.05} {electrical_conduction.n.01}) (english {discharge.n.05} "discharge" "spark" "arc" "electric arc" "electric discharge") (new-wordnet-type {flashover.n.01} {discharge.n.05}) (english {flashover.n.01} "flashover") (new-wordnet-type {corona_discharge.n.01} {discharge.n.05}) (english {corona_discharge.n.01} "corona discharge" "corona" "corposant" "St. Elmo's fire" "Saint Elmo's fire" "Saint Elmo's light" "Saint Ulmo's fire" "Saint Ulmo's light" "electric glow") (new-wordnet-type {brush_discharge.n.01} {discharge.n.05}) (english {brush_discharge.n.01} "brush discharge") (new-wordnet-type {cloud.n.01} {physical_phenomenon.n.01}) (english {cloud.n.01} "cloud") (new-wordnet-type {nebula.n.03} {cloud.n.01}) (english {nebula.n.03} "nebula") (new-wordnet-type {planetary_nebula.n.01} {nebula.n.03}) (english {planetary_nebula.n.01} "planetary nebula") (new-wordnet-type {diffuse_nebula.n.01} {nebula.n.03}) (english {diffuse_nebula.n.01} "diffuse nebula" "gaseous nebula") (new-wordnet-type {orion.n.02} {diffuse_nebula.n.01}) (english {orion.n.02} "Orion" "Hunter") (new-wordnet-type {mushroom.n.04} {cloud.n.01}) (english {mushroom.n.04} "mushroom" "mushroom cloud" "mushroom-shaped cloud") (new-wordnet-type {dust_cloud.n.01} {cloud.n.01}) (english {dust_cloud.n.01} "dust cloud") (new-wordnet-type {cosmic_dust.n.01} {cloud.n.01}) (english {cosmic_dust.n.01} "cosmic dust") (new-wordnet-type {coma.n.03} {cloud.n.01}) (english {coma.n.03} "coma") (new-wordnet-type {aerosol.n.01} {cloud.n.01}) (english {aerosol.n.01} "aerosol") (new-wordnet-type {smoke.n.01} {aerosol.n.01}) (english {smoke.n.01} "smoke" "fume") (new-wordnet-type {smother.n.02} {smoke.n.01}) (english {smother.n.02} "smother") (new-wordnet-type {gun_smoke.n.01} {smoke.n.01}) (english {gun_smoke.n.01} "gun smoke") (new-wordnet-type {haze.n.01} {aerosol.n.01}) (english {haze.n.01} "haze") (new-wordnet-type {fog.n.01} {aerosol.n.01}) (english {fog.n.01} "fog") (new-wordnet-type {pea_soup.n.02} {fog.n.01}) (english {pea_soup.n.02} "pea soup" "pea-souper") (new-wordnet-type {mist.n.01} {fog.n.01}) (english {mist.n.01} "mist") (new-wordnet-type {ice_fog.n.01} {fog.n.01}) (english {ice_fog.n.01} "ice fog" "pogonip") (new-wordnet-type {fogbank.n.01} {fog.n.01}) (english {fogbank.n.01} "fogbank") (new-wordnet-type {chop.n.01} {physical_phenomenon.n.01}) (english {chop.n.01} "chop") (new-wordnet-type {chaos.n.02} {physical_phenomenon.n.01}) (english {chaos.n.02} "chaos") (new-wordnet-type {boundary_layer.n.01} {physical_phenomenon.n.01}) (english {boundary_layer.n.01} "boundary layer") (new-wordnet-type {atmospheric_phenomenon.n.01} {physical_phenomenon.n.01}) (english {atmospheric_phenomenon.n.01} "atmospheric phenomenon") (new-wordnet-type {weather.n.01} {atmospheric_phenomenon.n.01}) (english {weather.n.01} "weather" "weather condition" "conditions" "atmospheric condition") (new-wordnet-type {wind.n.01} {weather.n.01}) (english {wind.n.01} "wind" "air current" "current of air") (new-wordnet-type {west_wind.n.01} {wind.n.01}) (english {west_wind.n.01} "west wind" "wester") (new-wordnet-type {prevailing_westerly.n.01} {west_wind.n.01}) (english {prevailing_westerly.n.01} "prevailing westerly" "westerly") (new-wordnet-type {thermal.n.01} {wind.n.01}) (english {thermal.n.01} "thermal") (new-wordnet-type {tailwind.n.01} {wind.n.01}) (english {tailwind.n.01} "tailwind") (new-wordnet-type {squall.n.01} {wind.n.01}) (english {squall.n.01} "squall") (new-wordnet-type {line_squall.n.01} {squall.n.01}) (english {line_squall.n.01} "line squall") (new-wordnet-type {southwester.n.01} {wind.n.01}) (english {southwester.n.01} "southwester" "sou'wester") (new-wordnet-type {southeaster.n.01} {wind.n.01}) (english {southeaster.n.01} "southeaster" "sou'easter") (new-wordnet-type {south_wind.n.01} {wind.n.01}) (english {south_wind.n.01} "south wind" "souther" "southerly") (new-wordnet-type {simoom.n.01} {wind.n.01}) (english {simoom.n.01} "simoom" "simoon" "samiel") (new-wordnet-type {santa_ana.n.01} {wind.n.01}) (english {santa_ana.n.01} "Santa Ana") (new-wordnet-type {prevailing_wind.n.01} {wind.n.01}) (english {prevailing_wind.n.01} "prevailing wind") (new-wordnet-type {trade_wind.n.01} {prevailing_wind.n.01}) (english {trade_wind.n.01} "trade wind" "trade") (new-wordnet-type {antitrades.n.01} {prevailing_wind.n.01}) (english {antitrades.n.01} "antitrades") (new-wordnet-type {antitrade_wind.n.01} {prevailing_wind.n.01}) (english {antitrade_wind.n.01} "antitrade wind" "antitrade") (new-wordnet-type {northwest_wind.n.01} {wind.n.01}) (english {northwest_wind.n.01} "northwest wind" "northwester") (new-wordnet-type {north_wind.n.01} {wind.n.01}) (english {north_wind.n.01} "north wind" "northerly" "norther" "boreas") (new-wordnet-type {tramontane.n.01} {north_wind.n.01}) (english {tramontane.n.01} "tramontane" "tramontana") (new-wordnet-type {mistral.n.01} {north_wind.n.01}) (english {mistral.n.01} "mistral") (new-wordnet-type {bise.n.01} {north_wind.n.01}) (english {bise.n.01} "bise" "bize") (new-wordnet-type {monsoon.n.03} {wind.n.01}) (english {monsoon.n.03} "monsoon") (new-wordnet-type {monsoon.n.01} {wind.n.01}) (english {monsoon.n.01} "monsoon") (new-wordnet-type {khamsin.n.01} {wind.n.01}) (english {khamsin.n.01} "khamsin") (new-wordnet-type {katabatic_wind.n.01} {wind.n.01}) (english {katabatic_wind.n.01} "katabatic wind" "catabatic wind") (new-wordnet-type {high_wind.n.01} {wind.n.01}) (english {high_wind.n.01} "high wind") (new-wordnet-type {headwind.n.01} {wind.n.01}) (english {headwind.n.01} "headwind") (new-wordnet-type {harmattan.n.01} {wind.n.01}) (english {harmattan.n.01} "harmattan") (new-wordnet-type {gust.n.01} {wind.n.01}) (english {gust.n.01} "gust" "blast" "blow") (new-wordnet-type {sandblast.n.01} {gust.n.01}) (english {sandblast.n.01} "sandblast") (new-wordnet-type {puff.n.01} {gust.n.01}) (english {puff.n.01} "puff" "puff of air" "whiff") (new-wordnet-type {bluster.n.03} {gust.n.01}) (english {bluster.n.03} "bluster") (new-wordnet-type {gale.n.01} {wind.n.01}) (english {gale.n.01} "gale") (new-wordnet-type {whole_gale.n.01} {gale.n.01}) (english {whole_gale.n.01} "whole gale") (new-wordnet-type {strong_gale.n.01} {gale.n.01}) (english {strong_gale.n.01} "strong gale") (new-wordnet-type {moderate_gale.n.01} {gale.n.01}) (english {moderate_gale.n.01} "moderate gale" "near gale") (new-wordnet-type {fresh_gale.n.01} {gale.n.01}) (english {fresh_gale.n.01} "fresh gale") (new-wordnet-type {fohn.n.01} {wind.n.01}) (english {fohn.n.01} "fohn" "foehn") (new-wordnet-type {east_wind.n.01} {wind.n.01}) (english {east_wind.n.01} "east wind" "easter" "easterly") (new-wordnet-type {levanter.n.01} {east_wind.n.01}) (english {levanter.n.01} "levanter") (new-wordnet-type {draft.n.02} {wind.n.01}) (english {draft.n.02} "draft" "draught") (new-wordnet-type {updraft.n.01} {draft.n.02}) (english {updraft.n.01} "updraft") (new-wordnet-type {downdraft.n.01} {draft.n.02}) (english {downdraft.n.01} "downdraft") (new-wordnet-type {doldrums.n.02} {wind.n.01}) (english {doldrums.n.02} "doldrums") (new-wordnet-type {crosswind.n.01} {wind.n.01}) (english {crosswind.n.01} "crosswind") (new-wordnet-type {chinook.n.01} {wind.n.01}) (english {chinook.n.01} "chinook" "chinook wind" "snow eater") (new-wordnet-type {calm_air.n.01} {wind.n.01}) (english {calm_air.n.01} "calm air" "calm") (new-wordnet-type {breeze.n.01} {wind.n.01}) (english {breeze.n.01} "breeze" "zephyr" "gentle wind" "air") (new-wordnet-type {strong_breeze.n.01} {breeze.n.01}) (english {strong_breeze.n.01} "strong breeze") (new-wordnet-type {sea_breeze.n.01} {breeze.n.01}) (english {sea_breeze.n.01} "sea breeze") (new-wordnet-type {moderate_breeze.n.01} {breeze.n.01}) (english {moderate_breeze.n.01} "moderate breeze") (new-wordnet-type {light_breeze.n.01} {breeze.n.01}) (english {light_breeze.n.01} "light breeze") (new-wordnet-type {light_air.n.01} {breeze.n.01}) (english {light_air.n.01} "light air") (new-wordnet-type {gentle_breeze.n.01} {breeze.n.01}) (english {gentle_breeze.n.01} "gentle breeze") (new-wordnet-type {fresh_breeze.n.01} {breeze.n.01}) (english {fresh_breeze.n.01} "fresh breeze") (new-wordnet-type {breath.n.05} {breeze.n.01}) (english {breath.n.05} "breath") (new-wordnet-type {airstream.n.01} {wind.n.01}) (english {airstream.n.01} "airstream") (new-wordnet-type {jet_stream.n.01} {airstream.n.01}) (english {jet_stream.n.01} "jet stream") (new-wordnet-type {wave.n.08} {weather.n.01}) (english {wave.n.08} "wave") (new-wordnet-type {heat_wave.n.01} {wave.n.08}) (english {heat_wave.n.01} "heat wave") (new-wordnet-type {cold_wave.n.01} {wave.n.08}) (english {cold_wave.n.01} "cold wave") (new-wordnet-type {thaw.n.02} {weather.n.01}) (english {thaw.n.02} "thaw" "thawing" "warming") (new-wordnet-type {precipitation.n.03} {weather.n.01}) (english {precipitation.n.03} "precipitation" "downfall") (new-wordnet-type {virga.n.01} {precipitation.n.03}) (english {virga.n.01} "virga") (new-wordnet-type {snow.n.01} {precipitation.n.03}) (english {snow.n.01} "snow" "snowfall") (new-wordnet-type {whiteout.n.01} {snow.n.01}) (english {whiteout.n.01} "whiteout") (new-wordnet-type {flurry.n.02} {snow.n.01}) (english {flurry.n.02} "flurry" "snow flurry") (new-wordnet-type {sleet.n.01} {precipitation.n.03}) (english {sleet.n.01} "sleet") (new-wordnet-type {rain.n.01} {precipitation.n.03}) (english {rain.n.01} "rain" "rainfall") (new-wordnet-type {shower.n.03} {rain.n.01}) (english {shower.n.03} "shower" "rain shower") (new-wordnet-type {scattering.n.03} {shower.n.03}) (english {scattering.n.03} "scattering" "sprinkle" "sprinkling") (new-wordnet-type {rainstorm.n.01} {rain.n.01}) (english {rainstorm.n.01} "rainstorm") (new-wordnet-type {thundershower.n.01} {rainstorm.n.01}) (english {thundershower.n.01} "thundershower") (new-wordnet-type {line_storm.n.01} {rainstorm.n.01}) (english {line_storm.n.01} "line storm" "equinoctial storm") (new-wordnet-type {monsoon.n.03} {rain.n.01}) (english {monsoon.n.03} "monsoon") (new-wordnet-type {drizzle.n.01} {rain.n.01}) (english {drizzle.n.01} "drizzle" "mizzle") (new-wordnet-type {downpour.n.01} {rain.n.01}) (english {downpour.n.01} "downpour" "cloudburst" "deluge" "waterspout" "torrent" "pelter" "soaker") (new-wordnet-type {hail.n.01} {precipitation.n.03}) (english {hail.n.01} "hail") (new-wordnet-type {fine_spray.n.01} {precipitation.n.03}) (english {fine_spray.n.01} "fine spray") (new-wordnet-type {hot_weather.n.01} {weather.n.01}) (english {hot_weather.n.01} "hot weather") (new-wordnet-type {sultriness.n.01} {hot_weather.n.01}) (english {sultriness.n.01} "sultriness") (new-wordnet-type {scorcher.n.01} {hot_weather.n.01}) (english {scorcher.n.01} "scorcher") (new-wordnet-type {good_weather.n.01} {weather.n.01}) (english {good_weather.n.01} "good weather") (new-wordnet-type {mildness.n.01} {good_weather.n.01}) (english {mildness.n.01} "mildness" "clemency") (new-wordnet-type {balminess.n.01} {mildness.n.01}) (english {balminess.n.01} "balminess" "softness") (new-wordnet-type {calmness.n.02} {good_weather.n.01}) (english {calmness.n.02} "calmness") (new-wordnet-type {stillness.n.02} {calmness.n.02}) (english {stillness.n.02} "stillness" "windlessness") (new-wordnet-type {lull.n.02} {calmness.n.02}) (english {lull.n.02} "lull" "quiet") (new-wordnet-type {fair_weather.n.01} {weather.n.01}) (english {fair_weather.n.01} "fair weather" "sunshine" "temperateness") (new-wordnet-type {elements.n.01} {weather.n.01}) (english {elements.n.01} "elements") (new-wordnet-type {cold_weather.n.01} {weather.n.01}) (english {cold_weather.n.01} "cold weather") (new-wordnet-type {freeze.n.02} {cold_weather.n.01}) (english {freeze.n.02} "freeze" "frost") (new-wordnet-type {bad_weather.n.01} {weather.n.01}) (english {bad_weather.n.01} "bad weather" "inclemency" "inclementness") (new-wordnet-type {turbulence.n.02} {bad_weather.n.01}) (english {turbulence.n.02} "turbulence") (new-wordnet-type {clear-air_turbulence.n.01} {turbulence.n.02}) (english {clear-air_turbulence.n.01} "clear-air turbulence") (new-wordnet-type {storminess.n.01} {bad_weather.n.01}) (english {storminess.n.01} "storminess") (new-wordnet-type {tempestuousness.n.01} {storminess.n.01}) (english {tempestuousness.n.01} "tempestuousness") (new-wordnet-type {choppiness.n.01} {storminess.n.01}) (english {choppiness.n.01} "choppiness" "roughness" "rough water") (new-wordnet-type {breeziness.n.01} {storminess.n.01}) (english {breeziness.n.01} "breeziness" "windiness") (new-wordnet-type {boisterousness.n.01} {storminess.n.01}) (english {boisterousness.n.01} "boisterousness") (new-wordnet-type {raw_weather.n.01} {bad_weather.n.01}) (english {raw_weather.n.01} "raw weather") (new-wordnet-type {cloudiness.n.01} {bad_weather.n.01}) (english {cloudiness.n.01} "cloudiness" "cloud cover" "overcast") (new-wordnet-type {atmosphere.n.04} {weather.n.01}) (english {atmosphere.n.04} "atmosphere" "atmospheric state") (new-wordnet-type {fog.n.02} {atmosphere.n.04}) (english {fog.n.02} "fog" "fogginess" "murk" "murkiness") (new-wordnet-type {fug.n.01} {fog.n.02}) (english {fug.n.01} "fug") (new-wordnet-type {cyclone.n.01} {atmosphere.n.04}) (english {cyclone.n.01} "cyclone") (new-wordnet-type {anticyclone.n.01} {atmosphere.n.04}) (english {anticyclone.n.01} "anticyclone") (new-wordnet-type {air_mass.n.01} {atmosphere.n.04}) (english {air_mass.n.01} "air mass") (new-wordnet-type {low.n.01} {air_mass.n.01}) (english {low.n.01} "low" "depression") (new-wordnet-type {high.n.02} {air_mass.n.01}) (english {high.n.02} "high") (new-wordnet-type {sunset.n.02} {atmospheric_phenomenon.n.01}) (english {sunset.n.02} "sunset") (new-wordnet-type {sunrise.n.02} {atmospheric_phenomenon.n.01}) (english {sunrise.n.02} "sunrise") (new-wordnet-type {storm.n.01} {atmospheric_phenomenon.n.01}) (english {storm.n.01} "storm" "violent storm") (new-wordnet-type {windstorm.n.01} {storm.n.01}) (english {windstorm.n.01} "windstorm") (new-wordnet-type {whirlwind.n.01} {windstorm.n.01}) (english {whirlwind.n.01} "whirlwind") (new-wordnet-type {dust_devil.n.01} {whirlwind.n.01}) (english {dust_devil.n.01} "dust devil") (new-wordnet-type {tempest.n.02} {windstorm.n.01}) (english {tempest.n.02} "tempest") (new-wordnet-type {dust_storm.n.01} {windstorm.n.01}) (english {dust_storm.n.01} "dust storm" "duster" "sandstorm" "sirocco") (new-wordnet-type {cyclone.n.02} {windstorm.n.01}) (english {cyclone.n.02} "cyclone") (new-wordnet-type {typhoon.n.01} {cyclone.n.02}) (english {typhoon.n.01} "typhoon") (new-wordnet-type {tornado.n.01} {cyclone.n.02}) (english {tornado.n.01} "tornado" "twister") (new-wordnet-type {waterspout.n.01} {tornado.n.01}) (english {waterspout.n.01} "waterspout") (new-wordnet-type {supertwister.n.01} {tornado.n.01}) (english {supertwister.n.01} "supertwister") (new-wordnet-type {hurricane.n.01} {cyclone.n.02}) (english {hurricane.n.01} "hurricane") (new-wordnet-type {thunderstorm.n.01} {storm.n.01}) (english {thunderstorm.n.01} "thunderstorm" "electrical storm" "electric storm") (new-wordnet-type {rainstorm.n.01} {storm.n.01}) (english {rainstorm.n.01} "rainstorm") (new-wordnet-type {northeaster.n.01} {storm.n.01}) (english {northeaster.n.01} "northeaster" "noreaster") (new-wordnet-type {ice_storm.n.01} {storm.n.01}) (english {ice_storm.n.01} "ice storm" "silver storm") (new-wordnet-type {hailstorm.n.01} {storm.n.01}) (english {hailstorm.n.01} "hailstorm") (new-wordnet-type {firestorm.n.01} {storm.n.01}) (english {firestorm.n.01} "firestorm") (new-wordnet-type {blizzard.n.01} {storm.n.01}) (english {blizzard.n.01} "blizzard" "snowstorm") (new-wordnet-type {midnight_sun.n.01} {atmospheric_phenomenon.n.01}) (english {midnight_sun.n.01} "midnight sun") (new-wordnet-type {meteor_shower.n.01} {atmospheric_phenomenon.n.01}) (english {meteor_shower.n.01} "meteor shower" "meteor stream") (new-wordnet-type {inversion.n.01} {atmospheric_phenomenon.n.01}) (english {inversion.n.01} "inversion") (new-wordnet-type {halo.n.03} {atmospheric_phenomenon.n.01}) (english {halo.n.03} "halo") (new-wordnet-type {solar_halo.n.01} {halo.n.03}) (english {solar_halo.n.01} "solar halo" "parhelic circle" "parhelic ring") (new-wordnet-type {greenhouse_effect.n.01} {atmospheric_phenomenon.n.01}) (english {greenhouse_effect.n.01} "greenhouse effect" "greenhouse warming") (new-wordnet-type {front.n.07} {atmospheric_phenomenon.n.01}) (english {front.n.07} "front") (new-wordnet-type {warm_front.n.01} {front.n.07}) (english {warm_front.n.01} "warm front") (new-wordnet-type {occluded_front.n.01} {front.n.07}) (english {occluded_front.n.01} "occluded front" "occlusion") (new-wordnet-type {cold_front.n.01} {front.n.07}) (english {cold_front.n.01} "cold front" "polar front") (new-wordnet-type {squall_line.n.01} {cold_front.n.01}) (english {squall_line.n.01} "squall line") (new-wordnet-type {condensation.n.03} {atmospheric_phenomenon.n.01}) (english {condensation.n.03} "condensation" "condensate") (new-wordnet-type {sweat.n.03} {condensation.n.03}) (english {sweat.n.03} "sweat") (new-wordnet-type {dew.n.01} {condensation.n.03}) (english {dew.n.01} "dew") (new-wordnet-type {cloud.n.02} {atmospheric_phenomenon.n.01}) (english {cloud.n.02} "cloud") (new-wordnet-type {stratus.n.01} {cloud.n.02}) (english {stratus.n.01} "stratus" "stratus cloud") (new-wordnet-type {altostratus.n.01} {stratus.n.01}) (english {altostratus.n.01} "altostratus" "altostratus cloud") (new-wordnet-type {storm_cloud.n.01} {cloud.n.02}) (english {storm_cloud.n.01} "storm cloud") (new-wordnet-type {nimbus.n.01} {cloud.n.02}) (english {nimbus.n.01} "nimbus" "nimbus cloud" "rain cloud") (new-wordnet-type {nebule.n.01} {cloud.n.02}) (english {nebule.n.01} "nebule") (new-wordnet-type {nacreous_cloud.n.01} {cloud.n.02}) (english {nacreous_cloud.n.01} "nacreous cloud" "mother-of-pearl cloud") (new-wordnet-type {cumulus.n.01} {cloud.n.02}) (english {cumulus.n.01} "cumulus" "cumulus cloud") (new-wordnet-type {thunderhead.n.01} {cumulus.n.01}) (english {thunderhead.n.01} "thunderhead") (new-wordnet-type {altocumulus.n.01} {cumulus.n.01}) (english {altocumulus.n.01} "altocumulus" "altocumulus cloud") (new-wordnet-type {cumulonimbus.n.01} {cloud.n.02}) (english {cumulonimbus.n.01} "cumulonimbus" "cumulonimbus cloud" "thundercloud") (new-wordnet-type {contrail.n.01} {cloud.n.02}) (english {contrail.n.01} "contrail" "condensation trail") (new-wordnet-type {cloud_bank.n.01} {cloud.n.02}) (english {cloud_bank.n.01} "cloud bank") (new-wordnet-type {cirrus.n.02} {cloud.n.02}) (english {cirrus.n.02} "cirrus" "cirrus cloud") (new-wordnet-type {mare's_tail.n.01} {cirrus.n.02}) (english {mare's_tail.n.01} "mare's tail") (new-wordnet-type {cirrostratus.n.01} {cloud.n.02}) (english {cirrostratus.n.01} "cirrostratus" "cirrostratus cloud") (new-wordnet-type {cirrocumulus.n.01} {cloud.n.02}) (english {cirrocumulus.n.01} "cirrocumulus" "cirrocumulus cloud") (new-wordnet-type {aurora.n.02} {atmospheric_phenomenon.n.01}) (english {aurora.n.02} "aurora") (new-wordnet-type {aurora_borealis.n.01} {aurora.n.02}) (english {aurora_borealis.n.01} "aurora borealis" "northern lights") (new-wordnet-type {aurora_australis.n.01} {aurora.n.02}) (english {aurora_australis.n.01} "aurora australis" "southern lights") (new-wordnet-type {atmospheric_electricity.n.01} {atmospheric_phenomenon.n.01}) (english {atmospheric_electricity.n.01} "atmospheric electricity") (new-wordnet-type {sprites.n.01} {atmospheric_electricity.n.01}) (english {sprites.n.01} "sprites" "red sprites") (new-wordnet-type {lightning.n.01} {atmospheric_electricity.n.01}) (english {lightning.n.01} "lightning") (new-wordnet-type {thunderbolt.n.01} {lightning.n.01}) (english {thunderbolt.n.01} "thunderbolt" "bolt" "bolt of lightning") (new-wordnet-type {forked_lightning.n.01} {lightning.n.01}) (english {forked_lightning.n.01} "forked lightning" "chain lightning") (new-wordnet-type {jet.n.04} {atmospheric_electricity.n.01}) (english {jet.n.04} "jet" "blue jet" "reverse lightning") (new-wordnet-type {elves.n.01} {atmospheric_electricity.n.01}) (english {elves.n.01} "elves") (new-wordnet-type {air_pocket.n.01} {atmospheric_phenomenon.n.01}) (english {air_pocket.n.01} "air pocket" "pocket" "air hole") (new-wordnet-type {afterglow.n.01} {atmospheric_phenomenon.n.01}) (english {afterglow.n.01} "afterglow") (new-wordnet-type {acoustic_phenomenon.n.01} {physical_phenomenon.n.01}) (english {acoustic_phenomenon.n.01} "acoustic phenomenon") (new-wordnet-type {projection.n.07} {acoustic_phenomenon.n.01}) (english {projection.n.07} "projection" "acoustic projection" "sound projection") (new-wordnet-type {distortion.n.04} {acoustic_phenomenon.n.01}) (english {distortion.n.04} "distortion") (new-wordnet-type {organic_phenomenon.n.01} {natural_phenomenon.n.01}) (english {organic_phenomenon.n.01} "organic phenomenon") (new-wordnet-type {sex_linkage.n.01} {organic_phenomenon.n.01}) (english {sex_linkage.n.01} "sex linkage") (new-wordnet-type {rejuvenation.n.01} {organic_phenomenon.n.01}) (english {rejuvenation.n.01} "rejuvenation" "greening") (new-wordnet-type {rejection.n.03} {organic_phenomenon.n.01}) (english {rejection.n.03} "rejection") (new-wordnet-type {recognition.n.05} {organic_phenomenon.n.01}) (english {recognition.n.05} "recognition") (new-wordnet-type {polymorphism.n.03} {organic_phenomenon.n.01}) (english {polymorphism.n.03} "polymorphism") (new-wordnet-type {dimorphism.n.02} {polymorphism.n.03}) (english {dimorphism.n.02} "dimorphism") (new-wordnet-type {polymorphism.n.01} {organic_phenomenon.n.01}) (english {polymorphism.n.01} "polymorphism") (new-wordnet-type {single_nucleotide_polymorphism.n.01} {polymorphism.n.01}) (english {single_nucleotide_polymorphism.n.01} "single nucleotide polymorphism" "SNP") (new-wordnet-type {pleomorphism.n.02} {organic_phenomenon.n.01}) (english {pleomorphism.n.02} "pleomorphism") (new-wordnet-type {life_cycle.n.01} {organic_phenomenon.n.01}) (english {life_cycle.n.01} "life cycle") (new-wordnet-type {life.n.11} {organic_phenomenon.n.01}) (english {life.n.11} "life") (new-wordnet-type {biology.n.02} {life.n.11}) (english {biology.n.02} "biology") (new-wordnet-type {aerobiosis.n.01} {life.n.11}) (english {aerobiosis.n.01} "aerobiosis") (new-wordnet-type {histocompatibility.n.01} {organic_phenomenon.n.01}) (english {histocompatibility.n.01} "histocompatibility") (new-wordnet-type {gene_expression.n.01} {organic_phenomenon.n.01}) (english {gene_expression.n.01} "gene expression") (new-wordnet-type {food_web.n.01} {organic_phenomenon.n.01}) (english {food_web.n.01} "food web" "food cycle") (new-wordnet-type {food_pyramid.n.01} {organic_phenomenon.n.01}) (english {food_pyramid.n.01} "food pyramid") (new-wordnet-type {food_chain.n.01} {organic_phenomenon.n.01}) (english {food_chain.n.01} "food chain") (new-wordnet-type {facilitation.n.02} {organic_phenomenon.n.01}) (english {facilitation.n.02} "facilitation") (new-wordnet-type {exfoliation.n.01} {organic_phenomenon.n.01}) (english {exfoliation.n.01} "exfoliation") (new-wordnet-type {dominance.n.03} {organic_phenomenon.n.01}) (english {dominance.n.03} "dominance") (new-wordnet-type {diapedesis.n.01} {organic_phenomenon.n.01}) (english {diapedesis.n.01} "diapedesis") (new-wordnet-type {desquamation.n.01} {organic_phenomenon.n.01}) (english {desquamation.n.01} "desquamation" "peeling" "shedding") (new-wordnet-type {dehiscence.n.01} {organic_phenomenon.n.01}) (english {dehiscence.n.01} "dehiscence") (new-wordnet-type {decay.n.03} {organic_phenomenon.n.01}) (english {decay.n.03} "decay" "decomposition") (new-wordnet-type {death.n.02} {organic_phenomenon.n.01}) (english {death.n.02} "death") (new-wordnet-type {necrosis.n.01} {death.n.02}) (english {necrosis.n.01} "necrosis" "mortification" "gangrene" "sphacelus") (new-wordnet-type {myonecrosis.n.01} {necrosis.n.01}) (english {myonecrosis.n.01} "myonecrosis") (new-wordnet-type {necrobiosis.n.01} {death.n.02}) (english {necrobiosis.n.01} "necrobiosis" "cell death") (new-wordnet-type {apoptosis.n.01} {necrobiosis.n.01}) (english {apoptosis.n.01} "apoptosis" "programmed cell death" "caspase-mediated cell death") (new-wordnet-type {brain_death.n.01} {death.n.02}) (english {brain_death.n.01} "brain death" "cerebral death") (new-wordnet-type {cyclosis.n.01} {organic_phenomenon.n.01}) (english {cyclosis.n.01} "cyclosis" "streaming") (new-wordnet-type {circulation.n.02} {organic_phenomenon.n.01}) (english {circulation.n.02} "circulation") (new-wordnet-type {vitelline_circulation.n.01} {circulation.n.02}) (english {vitelline_circulation.n.01} "vitelline circulation") (new-wordnet-type {systemic_circulation.n.01} {circulation.n.02}) (english {systemic_circulation.n.01} "systemic circulation") (new-wordnet-type {pulmonary_circulation.n.01} {circulation.n.02}) (english {pulmonary_circulation.n.01} "pulmonary circulation") (new-wordnet-type {bioelectricity.n.01} {organic_phenomenon.n.01}) (english {bioelectricity.n.01} "bioelectricity") (new-wordnet-type {brainwave.n.01} {bioelectricity.n.01}) (english {brainwave.n.01} "brainwave" "brain wave" "cortical potential") (new-wordnet-type {theta_rhythm.n.01} {brainwave.n.01}) (english {theta_rhythm.n.01} "theta rhythm" "theta wave") (new-wordnet-type {delta_rhythm.n.01} {brainwave.n.01}) (english {delta_rhythm.n.01} "delta rhythm" "delta wave") (new-wordnet-type {beta_rhythm.n.01} {brainwave.n.01}) (english {beta_rhythm.n.01} "beta rhythm" "beta wave") (new-wordnet-type {alpha_rhythm.n.01} {brainwave.n.01}) (english {alpha_rhythm.n.01} "alpha rhythm" "alpha wave") (new-wordnet-type {annual_ring.n.01} {organic_phenomenon.n.01}) (english {annual_ring.n.01} "annual ring" "growth ring") (new-wordnet-type {alternation_of_generations.n.01} {organic_phenomenon.n.01}) (english {alternation_of_generations.n.01} "alternation of generations" "heterogenesis" "xenogenesis") (new-wordnet-type {metagenesis.n.01} {alternation_of_generations.n.01}) (english {metagenesis.n.01} "metagenesis" "digenesis") (new-wordnet-type {abiogenesis.n.01} {organic_phenomenon.n.01}) (english {abiogenesis.n.01} "abiogenesis" "autogenesis" "autogeny" "spontaneous generation") (new-wordnet-type {geological_phenomenon.n.01} {natural_phenomenon.n.01}) (english {geological_phenomenon.n.01} "geological phenomenon") (new-wordnet-type {volcanism.n.01} {geological_phenomenon.n.01}) (english {volcanism.n.01} "volcanism") (new-wordnet-type {transgression.n.02} {geological_phenomenon.n.01}) (english {transgression.n.02} "transgression") (new-wordnet-type {frost_heave.n.01} {geological_phenomenon.n.01}) (english {frost_heave.n.01} "frost heave" "frost heaving") (new-wordnet-type {flood.n.01} {geological_phenomenon.n.01}) (english {flood.n.01} "flood" "inundation" "deluge" "alluvion") (new-wordnet-type {noah's_flood.n.01} {flood.n.01}) (english {noah's_flood.n.01} "Noah's flood" "Noachian deluge" "Noah and the Flood" "the Flood") (new-wordnet-type {flash_flood.n.01} {flood.n.01}) (english {flash_flood.n.01} "flash flood" "flashflood") (new-wordnet-type {floodhead.n.01} {flash_flood.n.01}) (english {floodhead.n.01} "floodhead") (new-wordnet-type {debacle.n.02} {flood.n.01}) (english {debacle.n.02} "debacle") (new-wordnet-type {endogeny.n.01} {geological_phenomenon.n.01}) (english {endogeny.n.01} "endogeny") (new-wordnet-type {earthquake.n.01} {geological_phenomenon.n.01}) (english {earthquake.n.01} "earthquake" "quake" "temblor" "seism") (new-wordnet-type {tremor.n.02} {earthquake.n.01}) (english {tremor.n.02} "tremor" "earth tremor" "microseism") (new-wordnet-type {foreshock.n.01} {tremor.n.02}) (english {foreshock.n.01} "foreshock") (new-wordnet-type {aftershock.n.01} {tremor.n.02}) (english {aftershock.n.01} "aftershock") (new-wordnet-type {shock.n.05} {earthquake.n.01}) (english {shock.n.05} "shock" "seismic disturbance") (new-wordnet-type {seaquake.n.01} {earthquake.n.01}) (english {seaquake.n.01} "seaquake" "submarine earthquake") (new-wordnet-type {deposit.n.01} {geological_phenomenon.n.01}) (english {deposit.n.01} "deposit" "sedimentation" "alluviation") (new-wordnet-type {lode.n.01} {deposit.n.01}) (english {lode.n.01} "lode" "load") (new-wordnet-type {mother_lode.n.01} {lode.n.01}) (english {mother_lode.n.01} "mother lode" "champion lode") (new-wordnet-type {continental_drift.n.01} {geological_phenomenon.n.01}) (english {continental_drift.n.01} "continental drift") (new-wordnet-type {catastrophe.n.03} {geological_phenomenon.n.01}) (english {catastrophe.n.03} "catastrophe" "cataclysm") (new-wordnet-type {nuclear_winter.n.01} {catastrophe.n.03}) (english {nuclear_winter.n.01} "nuclear winter") (new-wordnet-type {alluvial_fan.n.01} {geological_phenomenon.n.01}) (english {alluvial_fan.n.01} "alluvial fan" "alluvial cone") (new-wordnet-type {chemical_phenomenon.n.01} {natural_phenomenon.n.01}) (english {chemical_phenomenon.n.01} "chemical phenomenon") (new-wordnet-type {valency.n.01} {chemical_phenomenon.n.01}) (english {valency.n.01} "valency") (new-wordnet-type {state_of_matter.n.01} {chemical_phenomenon.n.01}) (english {state_of_matter.n.01} "state of matter" "state") (new-wordnet-type {solid.n.02} {state_of_matter.n.01}) (english {solid.n.02} "solid" "solidness" "solid state") (new-wordnet-type {plasma.n.03} {state_of_matter.n.01}) (english {plasma.n.03} "plasma") (new-wordnet-type {interplanetary_gas.n.01} {plasma.n.03}) (english {interplanetary_gas.n.01} "interplanetary gas") (new-wordnet-type {phase.n.02} {state_of_matter.n.01}) (english {phase.n.02} "phase" "form") (new-wordnet-type {dispersing_phase.n.01} {phase.n.02}) (english {dispersing_phase.n.01} "dispersing phase" "dispersion medium" "dispersing medium") (new-wordnet-type {dispersed_phase.n.01} {phase.n.02}) (english {dispersed_phase.n.01} "dispersed phase" "dispersed particles") (new-wordnet-type {liquid.n.02} {state_of_matter.n.01}) (english {liquid.n.02} "liquid" "liquidness" "liquidity" "liquid state") (new-wordnet-type {gas.n.01} {state_of_matter.n.01}) (english {gas.n.01} "gas" "gaseous state") (new-wordnet-type {polymorphism.n.02} {chemical_phenomenon.n.01}) (english {polymorphism.n.02} "polymorphism" "pleomorphism") (new-wordnet-type {dimorphism.n.01} {polymorphism.n.02}) (english {dimorphism.n.01} "dimorphism") (new-wordnet-type {exchange.n.01} {chemical_phenomenon.n.01}) (english {exchange.n.01} "exchange") (new-wordnet-type {photochemical_exchange.n.01} {exchange.n.01}) (english {photochemical_exchange.n.01} "photochemical exchange") (new-wordnet-type {crystallization.n.01} {chemical_phenomenon.n.01}) (english {crystallization.n.01} "crystallization" "crystallisation" "crystallizing") (new-wordnet-type {efflorescence.n.04} {crystallization.n.01}) (english {efflorescence.n.04} "efflorescence" "bloom") (new-wordnet-type {allotropy.n.01} {chemical_phenomenon.n.01}) (english {allotropy.n.01} "allotropy" "allotropism") (new-wordnet-type {metempsychosis.n.01} {phenomenon.n.01}) (english {metempsychosis.n.01} "metempsychosis" "rebirth") (new-wordnet-type {luck.n.03} {phenomenon.n.01}) (english {luck.n.03} "luck" "fortune") (new-wordnet-type {good_luck.n.02} {luck.n.03}) (english {good_luck.n.02} "good luck" "fluke" "good fortune") (new-wordnet-type {serendipity.n.01} {good_luck.n.02}) (english {serendipity.n.01} "serendipity") (new-wordnet-type {luck.n.02} {phenomenon.n.01}) (english {luck.n.02} "luck" "fortune" "chance" "hazard") (new-wordnet-type {tossup.n.01} {luck.n.02}) (english {tossup.n.01} "tossup" "toss-up" "even chance") (new-wordnet-type {bad_luck.n.02} {luck.n.02}) (english {bad_luck.n.02} "bad luck" "mischance" "mishap") (new-wordnet-type {levitation.n.01} {phenomenon.n.01}) (english {levitation.n.01} "levitation") (new-wordnet-type {consequence.n.01} {phenomenon.n.01}) (english {consequence.n.01} "consequence" "effect" "outcome" "result" "event" "issue" "upshot") (new-wordnet-type {spillover.n.01} {consequence.n.01}) (english {spillover.n.01} "spillover") (new-wordnet-type {side_effect.n.02} {consequence.n.01}) (english {side_effect.n.02} "side effect" "fallout") (new-wordnet-type {response.n.01} {consequence.n.01}) (english {response.n.01} "response") (new-wordnet-type {reaction.n.05} {response.n.01}) (english {reaction.n.05} "reaction") (new-wordnet-type {repercussion.n.01} {consequence.n.01}) (english {repercussion.n.01} "repercussion" "reverberation") (new-wordnet-type {product.n.05} {consequence.n.01}) (english {product.n.05} "product") (new-wordnet-type {position_effect.n.01} {consequence.n.01}) (english {position_effect.n.01} "position effect") (new-wordnet-type {placebo_effect.n.01} {consequence.n.01}) (english {placebo_effect.n.01} "placebo effect") (new-wordnet-type {outgrowth.n.01} {consequence.n.01}) (english {outgrowth.n.01} "outgrowth" "branch" "offshoot" "offset") (new-wordnet-type {offspring.n.02} {consequence.n.01}) (english {offspring.n.02} "offspring" "materialization" "materialisation") (new-wordnet-type {knock-on_effect.n.01} {consequence.n.01}) (english {knock-on_effect.n.01} "knock-on effect") (new-wordnet-type {influence.n.04} {consequence.n.01}) (english {influence.n.04} "influence") (new-wordnet-type {wind.n.02} {influence.n.04}) (english {wind.n.02} "wind") (new-wordnet-type {purchase.n.03} {influence.n.04}) (english {purchase.n.03} "purchase") (new-wordnet-type {perturbation.n.02} {influence.n.04}) (english {perturbation.n.02} "perturbation") (new-wordnet-type {variation.n.08} {perturbation.n.02}) (english {variation.n.08} "variation") (new-wordnet-type {libration.n.01} {variation.n.08}) (english {libration.n.01} "libration") (new-wordnet-type {impact.n.02} {consequence.n.01}) (english {impact.n.02} "impact" "wallop") (new-wordnet-type {harvest.n.02} {consequence.n.01}) (english {harvest.n.02} "harvest") (new-wordnet-type {domino_effect.n.01} {consequence.n.01}) (english {domino_effect.n.01} "domino effect") (new-wordnet-type {dent.n.01} {consequence.n.01}) (english {dent.n.01} "dent") (new-wordnet-type {coriolis_effect.n.01} {consequence.n.01}) (english {coriolis_effect.n.01} "Coriolis effect") (new-wordnet-type {coattails_effect.n.01} {consequence.n.01}) (english {coattails_effect.n.01} "coattails effect") (new-wordnet-type {change.n.04} {consequence.n.01}) (english {change.n.04} "change") (new-wordnet-type {depolarization.n.01} {change.n.04}) (english {depolarization.n.01} "depolarization" "depolarisation") (new-wordnet-type {by-product.n.01} {consequence.n.01}) (english {by-product.n.01} "by-product" "byproduct") (new-wordnet-type {epiphenomenon.n.01} {by-product.n.01}) (english {epiphenomenon.n.01} "epiphenomenon") (new-wordnet-type {butterfly_effect.n.01} {consequence.n.01}) (english {butterfly_effect.n.01} "butterfly effect") (new-wordnet-type {brisance.n.01} {consequence.n.01}) (english {brisance.n.01} "brisance") (new-wordnet-type {bandwagon_effect.n.01} {consequence.n.01}) (english {bandwagon_effect.n.01} "bandwagon effect") (new-wordnet-type {aftermath.n.01} {consequence.n.01}) (english {aftermath.n.01} "aftermath" "wake" "backwash") (new-wordnet-type {aftereffect.n.01} {consequence.n.01}) (english {aftereffect.n.01} "aftereffect") (new-wordnet-type {organic_process.n.01} {process.n.06}) (english {organic_process.n.01} "organic process" "biological process") (new-wordnet-type {vesiculation.n.01} {organic_process.n.01}) (english {vesiculation.n.01} "vesiculation" "vesication" "blistering") (new-wordnet-type {vascularization.n.01} {organic_process.n.01}) (english {vascularization.n.01} "vascularization" "vascularisation") (new-wordnet-type {ulceration.n.02} {organic_process.n.01}) (english {ulceration.n.02} "ulceration") (new-wordnet-type {tumefaction.n.01} {organic_process.n.01}) (english {tumefaction.n.01} "tumefaction") (new-wordnet-type {transpiration.n.03} {organic_process.n.01}) (english {transpiration.n.03} "transpiration") (new-wordnet-type {translocation.n.02} {organic_process.n.01}) (english {translocation.n.02} "translocation") (new-wordnet-type {translocation.n.01} {organic_process.n.01}) (english {translocation.n.01} "translocation") (new-wordnet-type {translation.n.05} {organic_process.n.01}) (english {translation.n.05} "translation") (new-wordnet-type {transduction.n.01} {organic_process.n.01}) (english {transduction.n.01} "transduction") (new-wordnet-type {transcription.n.02} {organic_process.n.01}) (english {transcription.n.02} "transcription") (new-wordnet-type {synizesis.n.01} {organic_process.n.01}) (english {synizesis.n.01} "synizesis" "synezesis") (new-wordnet-type {synapsis.n.01} {organic_process.n.01}) (english {synapsis.n.01} "synapsis") (new-wordnet-type {symphysis.n.02} {organic_process.n.01}) (english {symphysis.n.02} "symphysis") (new-wordnet-type {summation.n.02} {organic_process.n.01}) (english {summation.n.02} "summation") (new-wordnet-type {shedding.n.01} {organic_process.n.01}) (english {shedding.n.01} "shedding" "sloughing") (new-wordnet-type {molt.n.01} {shedding.n.01}) (english {molt.n.01} "molt" "molting" "moult" "moulting" "ecdysis") (new-wordnet-type {abscission.n.01} {shedding.n.01}) (english {abscission.n.01} "abscission") (new-wordnet-type {segregation.n.01} {organic_process.n.01}) (english {segregation.n.01} "segregation") (new-wordnet-type {secretion.n.01} {organic_process.n.01}) (english {secretion.n.01} "secretion" "secernment") (new-wordnet-type {salivation.n.01} {secretion.n.01}) (english {salivation.n.01} "salivation") (new-wordnet-type {ptyalism.n.01} {salivation.n.01}) (english {ptyalism.n.01} "ptyalism") (new-wordnet-type {hypersecretion.n.01} {secretion.n.01}) (english {hypersecretion.n.01} "hypersecretion") (new-wordnet-type {galactosis.n.01} {secretion.n.01}) (english {galactosis.n.01} "galactosis") (new-wordnet-type {ripening.n.02} {organic_process.n.01}) (english {ripening.n.02} "ripening" "aging" "ageing") (new-wordnet-type {mellowing.n.01} {ripening.n.02}) (english {mellowing.n.01} "mellowing") (new-wordnet-type {resorption.n.01} {organic_process.n.01}) (english {resorption.n.01} "resorption" "reabsorption") (new-wordnet-type {reproduction.n.01} {organic_process.n.01}) (english {reproduction.n.01} "reproduction") (new-wordnet-type {sexual_reproduction.n.01} {reproduction.n.01}) (english {sexual_reproduction.n.01} "sexual reproduction" "amphimixis") (new-wordnet-type {isogamy.n.01} {sexual_reproduction.n.01}) (english {isogamy.n.01} "isogamy") (new-wordnet-type {anisogamy.n.01} {sexual_reproduction.n.01}) (english {anisogamy.n.01} "anisogamy") (new-wordnet-type {asexual_reproduction.n.01} {reproduction.n.01}) (english {asexual_reproduction.n.01} "asexual reproduction" "agamogenesis") (new-wordnet-type {pullulation.n.01} {asexual_reproduction.n.01}) (english {pullulation.n.01} "pullulation" "gemmation") (new-wordnet-type {parthenogenesis.n.01} {asexual_reproduction.n.01}) (english {parthenogenesis.n.01} "parthenogenesis" "parthenogeny" "virgin birth") (new-wordnet-type {monogenesis.n.01} {asexual_reproduction.n.01}) (english {monogenesis.n.01} "monogenesis" "sporulation") (new-wordnet-type {homospory.n.01} {monogenesis.n.01}) (english {homospory.n.01} "homospory") (new-wordnet-type {heterospory.n.01} {monogenesis.n.01}) (english {heterospory.n.01} "heterospory") (new-wordnet-type {fissiparity.n.01} {asexual_reproduction.n.01}) (english {fissiparity.n.01} "fissiparity") (new-wordnet-type {fission.n.01} {asexual_reproduction.n.01}) (english {fission.n.01} "fission") (new-wordnet-type {schizogony.n.01} {fission.n.01}) (english {schizogony.n.01} "schizogony") (new-wordnet-type {budding.n.01} {asexual_reproduction.n.01}) (english {budding.n.01} "budding") (new-wordnet-type {blastogenesis.n.01} {asexual_reproduction.n.01}) (english {blastogenesis.n.01} "blastogenesis") (new-wordnet-type {apomixis.n.01} {asexual_reproduction.n.01}) (english {apomixis.n.01} "apomixis") (new-wordnet-type {parthenogenesis.n.02} {apomixis.n.01}) (english {parthenogenesis.n.02} "parthenogenesis" "parthenogeny") (new-wordnet-type {gynogenesis.n.01} {parthenogenesis.n.02}) (english {gynogenesis.n.01} "gynogenesis") (new-wordnet-type {androgenesis.n.01} {parthenogenesis.n.02}) (english {androgenesis.n.01} "androgenesis" "androgeny") (new-wordnet-type {parthenocarpy.n.01} {apomixis.n.01}) (english {parthenocarpy.n.01} "parthenocarpy") (new-wordnet-type {apogamy.n.01} {apomixis.n.01}) (english {apogamy.n.01} "apogamy") (new-wordnet-type {replication.n.02} {organic_process.n.01}) (english {replication.n.02} "replication") (new-wordnet-type {regulation.n.04} {organic_process.n.01}) (english {regulation.n.04} "regulation") (new-wordnet-type {regeneration.n.01} {organic_process.n.01}) (english {regeneration.n.01} "regeneration") (new-wordnet-type {morphallaxis.n.01} {regeneration.n.01}) (english {morphallaxis.n.01} "morphallaxis") (new-wordnet-type {quickening.n.01} {organic_process.n.01}) (english {quickening.n.01} "quickening") (new-wordnet-type {quellung.n.01} {organic_process.n.01}) (english {quellung.n.01} "quellung" "quellung reaction") (new-wordnet-type {protein_folding.n.01} {organic_process.n.01}) (english {protein_folding.n.01} "protein folding" "folding") (new-wordnet-type {preservation.n.03} {organic_process.n.01}) (english {preservation.n.03} "preservation") (new-wordnet-type {refrigeration.n.01} {preservation.n.03}) (english {refrigeration.n.01} "refrigeration" "infrigidation") (new-wordnet-type {plastination.n.01} {preservation.n.03}) (english {plastination.n.01} "plastination") (new-wordnet-type {fixation.n.04} {preservation.n.03}) (english {fixation.n.04} "fixation" "fixing") (new-wordnet-type {embalmment.n.01} {preservation.n.03}) (english {embalmment.n.01} "embalmment") (new-wordnet-type {mummification.n.03} {embalmment.n.01}) (english {mummification.n.03} "mummification") (new-wordnet-type {perennation.n.01} {organic_process.n.01}) (english {perennation.n.01} "perennation") (new-wordnet-type {pathologic_process.n.01} {organic_process.n.01}) (english {pathologic_process.n.01} "pathologic process" "pathological process") (new-wordnet-type {pathogenesis.n.01} {pathologic_process.n.01}) (english {pathogenesis.n.01} "pathogenesis") (new-wordnet-type {focalization.n.01} {pathogenesis.n.01}) (english {focalization.n.01} "focalization" "focalisation") (new-wordnet-type {neoplasia.n.01} {pathologic_process.n.01}) (english {neoplasia.n.01} "neoplasia") (new-wordnet-type {metastasis.n.01} {pathologic_process.n.01}) (english {metastasis.n.01} "metastasis") (new-wordnet-type {infection.n.03} {pathologic_process.n.01}) (english {infection.n.03} "infection") (new-wordnet-type {zymosis.n.02} {infection.n.03}) (english {zymosis.n.02} "zymosis") (new-wordnet-type {fungal_infection.n.01} {zymosis.n.02}) (english {fungal_infection.n.01} "fungal infection" "mycosis") (new-wordnet-type {tinea.n.01} {fungal_infection.n.01}) (english {tinea.n.01} "tinea" "ringworm" "roundworm") (new-wordnet-type {tinea_unguium.n.01} {tinea.n.01}) (english {tinea_unguium.n.01} "tinea unguium") (new-wordnet-type {tinea_pedis.n.01} {tinea.n.01}) (english {tinea_pedis.n.01} "tinea pedis" "athlete's foot") (new-wordnet-type {tinea_cruris.n.01} {tinea.n.01}) (english {tinea_cruris.n.01} "tinea cruris" "jock itch" "eczema marginatum") (new-wordnet-type {tinea_corporis.n.01} {tinea.n.01}) (english {tinea_corporis.n.01} "tinea corporis") (new-wordnet-type {tinea_capitis.n.01} {tinea.n.01}) (english {tinea_capitis.n.01} "tinea capitis") (new-wordnet-type {tinea_barbae.n.01} {tinea.n.01}) (english {tinea_barbae.n.01} "tinea barbae" "barber's itch") (new-wordnet-type {kerion.n.01} {tinea.n.01}) (english {kerion.n.01} "kerion") (new-wordnet-type {dhobi_itch.n.01} {tinea.n.01}) (english {dhobi_itch.n.01} "dhobi itch") (new-wordnet-type {sporotrichosis.n.01} {fungal_infection.n.01}) (english {sporotrichosis.n.01} "sporotrichosis") (new-wordnet-type {rhinosporidiosis.n.01} {fungal_infection.n.01}) (english {rhinosporidiosis.n.01} "rhinosporidiosis") (new-wordnet-type {phycomycosis.n.01} {fungal_infection.n.01}) (english {phycomycosis.n.01} "phycomycosis") (new-wordnet-type {keratomycosis.n.01} {fungal_infection.n.01}) (english {keratomycosis.n.01} "keratomycosis") (new-wordnet-type {favus.n.01} {fungal_infection.n.01}) (english {favus.n.01} "favus") (new-wordnet-type {dermatomycosis.n.01} {fungal_infection.n.01}) (english {dermatomycosis.n.01} "dermatomycosis" "dermatophytosis") (new-wordnet-type {cryptococcosis.n.01} {fungal_infection.n.01}) (english {cryptococcosis.n.01} "cryptococcosis") (new-wordnet-type {coccidioidomycosis.n.01} {fungal_infection.n.01}) (english {coccidioidomycosis.n.01} "coccidioidomycosis" "coccidiomycosis" "valley fever" "desert rheumatism") (new-wordnet-type {candidiasis.n.01} {fungal_infection.n.01}) (english {candidiasis.n.01} "candidiasis" "moniliasis" "monilia disease") (new-wordnet-type {thrush.n.01} {candidiasis.n.01}) (english {thrush.n.01} "thrush") (new-wordnet-type {blastomycosis.n.01} {fungal_infection.n.01}) (english {blastomycosis.n.01} "blastomycosis") (new-wordnet-type {chromoblastomycosis.n.01} {blastomycosis.n.01}) (english {chromoblastomycosis.n.01} "chromoblastomycosis") (new-wordnet-type {feminization.n.01} {pathologic_process.n.01}) (english {feminization.n.01} "feminization" "feminisation") (new-wordnet-type {parturition.n.01} {organic_process.n.01}) (english {parturition.n.01} "parturition" "birth" "giving birth" "birthing") (new-wordnet-type {parturiency.n.01} {parturition.n.01}) (english {parturiency.n.01} "parturiency" "labor" "labour" "confinement" "lying-in" "travail" "childbed") (new-wordnet-type {premature_labor.n.01} {parturiency.n.01}) (english {premature_labor.n.01} "premature labor" "premature labour") (new-wordnet-type {laying.n.01} {parturition.n.01}) (english {laying.n.01} "laying" "egg laying") (new-wordnet-type {hatch.n.01} {parturition.n.01}) (english {hatch.n.01} "hatch" "hatching") (new-wordnet-type {farrow.n.01} {parturition.n.01}) (english {farrow.n.01} "farrow" "farrowing") (new-wordnet-type {childbirth.n.01} {parturition.n.01}) (english {childbirth.n.01} "childbirth" "childbearing" "accouchement" "vaginal birth") (new-wordnet-type {natural_childbirth.n.01} {childbirth.n.01}) (english {natural_childbirth.n.01} "natural childbirth") (new-wordnet-type {read_method_of_childbirth.n.01} {natural_childbirth.n.01}) (english {read_method_of_childbirth.n.01} "Read method of childbirth" "Read method") (new-wordnet-type {leboyer_method_of_childbirth.n.01} {natural_childbirth.n.01}) (english {leboyer_method_of_childbirth.n.01} "Leboyer method of childbirth" "Leboyer method") (new-wordnet-type {lamaze_method_of_childbirth.n.01} {natural_childbirth.n.01}) (english {lamaze_method_of_childbirth.n.01} "Lamaze method of childbirth" "Lamaze method") (new-wordnet-type {bradley_method_of_childbirth.n.01} {natural_childbirth.n.01}) (english {bradley_method_of_childbirth.n.01} "Bradley method of childbirth" "Bradley method") (new-wordnet-type {alternative_birth.n.01} {childbirth.n.01}) (english {alternative_birth.n.01} "alternative birth" "alternative birthing") (new-wordnet-type {active_birth.n.01} {childbirth.n.01}) (english {active_birth.n.01} "active birth") (new-wordnet-type {calving.n.01} {parturition.n.01}) (english {calving.n.01} "calving") (new-wordnet-type {brooding.n.01} {parturition.n.01}) (english {brooding.n.01} "brooding" "incubation") (new-wordnet-type {oxidative_phosphorylation.n.01} {organic_process.n.01}) (english {oxidative_phosphorylation.n.01} "oxidative phosphorylation") (new-wordnet-type {ovulation.n.01} {organic_process.n.01}) (english {ovulation.n.01} "ovulation") (new-wordnet-type {ossification.n.01} {organic_process.n.01}) (english {ossification.n.01} "ossification") (new-wordnet-type {organification.n.01} {organic_process.n.01}) (english {organification.n.01} "organification") (new-wordnet-type {nutrition.n.01} {organic_process.n.01}) (english {nutrition.n.01} "nutrition") (new-wordnet-type {nondevelopment.n.01} {organic_process.n.01}) (english {nondevelopment.n.01} "nondevelopment") (new-wordnet-type {agenesis.n.01} {nondevelopment.n.01}) (english {agenesis.n.01} "agenesis" "agenesia") (new-wordnet-type {nitrogen_fixation.n.01} {organic_process.n.01}) (english {nitrogen_fixation.n.01} "nitrogen fixation") (new-wordnet-type {nitrogen_cycle.n.01} {organic_process.n.01}) (english {nitrogen_cycle.n.01} "nitrogen cycle") (new-wordnet-type {metamorphosis.n.01} {organic_process.n.01}) (english {metamorphosis.n.01} "metamorphosis" "metabolism") (new-wordnet-type {holometabolism.n.01} {metamorphosis.n.01}) (english {holometabolism.n.01} "holometabolism" "holometaboly") (new-wordnet-type {heterometabolism.n.01} {metamorphosis.n.01}) (english {heterometabolism.n.01} "heterometabolism" "heterometaboly") (new-wordnet-type {hemimetamorphosis.n.01} {metamorphosis.n.01}) (english {hemimetamorphosis.n.01} "hemimetamorphosis" "hemimetabolism" "hemimetaboly") (new-wordnet-type {metabolism.n.02} {organic_process.n.01}) (english {metabolism.n.02} "metabolism" "metabolic process") (new-wordnet-type {respiration.n.01} {metabolism.n.02}) (english {respiration.n.01} "respiration" "internal respiration" "cellular respiration") (new-wordnet-type {glycolysis.n.01} {metabolism.n.02}) (english {glycolysis.n.01} "glycolysis") (new-wordnet-type {fat_metabolism.n.01} {metabolism.n.02}) (english {fat_metabolism.n.01} "fat metabolism") (new-wordnet-type {basal_metabolism.n.01} {metabolism.n.02}) (english {basal_metabolism.n.01} "basal metabolism") (new-wordnet-type {maturation.n.01} {organic_process.n.01}) (english {maturation.n.01} "maturation" "ripening" "maturement") (new-wordnet-type {lysogenization.n.01} {organic_process.n.01}) (english {lysogenization.n.01} "lysogenization" "lysogenisation") (new-wordnet-type {lymphopoiesis.n.01} {organic_process.n.01}) (english {lymphopoiesis.n.01} "lymphopoiesis") (new-wordnet-type {krebs_cycle.n.01} {organic_process.n.01}) (english {krebs_cycle.n.01} "Krebs cycle" "Krebs citric acid cycle" "citric acid cycle" "tricarboxylic acid cycle") (new-wordnet-type {keratinization.n.01} {organic_process.n.01}) (english {keratinization.n.01} "keratinization" "keratinisation") (new-wordnet-type {karyokinesis.n.01} {organic_process.n.01}) (english {karyokinesis.n.01} "karyokinesis") (new-wordnet-type {involution.n.01} {organic_process.n.01}) (english {involution.n.01} "involution") (new-wordnet-type {invagination.n.02} {organic_process.n.01}) (english {invagination.n.02} "invagination" "introversion" "intussusception" "infolding") (new-wordnet-type {inhibition.n.03} {organic_process.n.01}) (english {inhibition.n.03} "inhibition") (new-wordnet-type {implantation.n.01} {organic_process.n.01}) (english {implantation.n.01} "implantation" "nidation") (new-wordnet-type {hypostasis.n.01} {organic_process.n.01}) (english {hypostasis.n.01} "hypostasis" "epistasis") (new-wordnet-type {humification.n.01} {organic_process.n.01}) (english {humification.n.01} "humification") (new-wordnet-type {heredity.n.01} {organic_process.n.01}) (english {heredity.n.01} "heredity") (new-wordnet-type {hematopoiesis.n.01} {organic_process.n.01}) (english {hematopoiesis.n.01} "hematopoiesis" "haematopoiesis" "hemopoiesis" "haemopoiesis" "hemogenesis" "haemogenesis" "hematogenesis" "haematogenesis" "sanguification") (new-wordnet-type {growth.n.01} {organic_process.n.01}) (english {growth.n.01} "growth" "growing" "maturation" "development" "ontogeny" "ontogenesis") (new-wordnet-type {vegetation.n.02} {growth.n.01}) (english {vegetation.n.02} "vegetation") (new-wordnet-type {teratogenesis.n.01} {growth.n.01}) (english {teratogenesis.n.01} "teratogenesis") (new-wordnet-type {teething.n.01} {growth.n.01}) (english {teething.n.01} "teething" "dentition" "odontiasis") (new-wordnet-type {precocious_dentition.n.01} {teething.n.01}) (english {precocious_dentition.n.01} "precocious dentition") (new-wordnet-type {suppression.n.01} {growth.n.01}) (english {suppression.n.01} "suppression") (new-wordnet-type {rooting.n.01} {growth.n.01}) (english {rooting.n.01} "rooting") (new-wordnet-type {psychosexual_development.n.01} {growth.n.01}) (english {psychosexual_development.n.01} "psychosexual development") (new-wordnet-type {psychomotor_development.n.01} {growth.n.01}) (english {psychomotor_development.n.01} "psychomotor development") (new-wordnet-type {psychogenesis.n.02} {growth.n.01}) (english {psychogenesis.n.02} "psychogenesis") (new-wordnet-type {psychogenesis.n.01} {growth.n.01}) (english {psychogenesis.n.01} "psychogenesis") (new-wordnet-type {proliferation.n.01} {growth.n.01}) (english {proliferation.n.01} "proliferation") (new-wordnet-type {palingenesis.n.01} {growth.n.01}) (english {palingenesis.n.01} "palingenesis" "recapitulation") (new-wordnet-type {neurogenesis.n.01} {growth.n.01}) (english {neurogenesis.n.01} "neurogenesis") (new-wordnet-type {myelinization.n.01} {growth.n.01}) (english {myelinization.n.01} "myelinization" "myelinisation") (new-wordnet-type {morphogenesis.n.01} {growth.n.01}) (english {morphogenesis.n.01} "morphogenesis") (new-wordnet-type {masculinization.n.01} {growth.n.01}) (english {masculinization.n.01} "masculinization" "masculinisation" "virilization" "virilisation") (new-wordnet-type {life_cycle.n.02} {growth.n.01}) (english {life_cycle.n.02} "life cycle") (new-wordnet-type {juvenescence.n.01} {growth.n.01}) (english {juvenescence.n.01} "juvenescence") (new-wordnet-type {intussusception.n.02} {growth.n.01}) (english {intussusception.n.02} "intussusception") (new-wordnet-type {infructescence.n.01} {growth.n.01}) (english {infructescence.n.01} "infructescence") (new-wordnet-type {habit.n.04} {growth.n.01}) (english {habit.n.04} "habit") (new-wordnet-type {germination.n.01} {growth.n.01}) (english {germination.n.01} "germination" "sprouting") (new-wordnet-type {gametogenesis.n.01} {growth.n.01}) (english {gametogenesis.n.01} "gametogenesis") (new-wordnet-type {spermatogenesis.n.01} {gametogenesis.n.01}) (english {spermatogenesis.n.01} "spermatogenesis") (new-wordnet-type {oogenesis.n.01} {gametogenesis.n.01}) (english {oogenesis.n.01} "oogenesis") (new-wordnet-type {fructification.n.01} {growth.n.01}) (english {fructification.n.01} "fructification") (new-wordnet-type {foliation.n.01} {growth.n.01}) (english {foliation.n.01} "foliation" "leafing") (new-wordnet-type {cytogenesis.n.01} {growth.n.01}) (english {cytogenesis.n.01} "cytogenesis" "cytogeny") (new-wordnet-type {culture.n.04} {growth.n.01}) (english {culture.n.04} "culture") (new-wordnet-type {starter.n.07} {culture.n.04}) (english {starter.n.07} "starter") (new-wordnet-type {cultivation.n.04} {growth.n.01}) (english {cultivation.n.04} "cultivation") (new-wordnet-type {cohesion.n.02} {growth.n.01}) (english {cohesion.n.02} "cohesion") (new-wordnet-type {cenogenesis.n.01} {growth.n.01}) (english {cenogenesis.n.01} "cenogenesis" "kenogenesis" "caenogenesis" "cainogenesis" "kainogenesis") (new-wordnet-type {blossoming.n.01} {growth.n.01}) (english {blossoming.n.01} "blossoming" "flowering" "florescence" "inflorescence" "anthesis" "efflorescence") (new-wordnet-type {auxesis.n.01} {growth.n.01}) (english {auxesis.n.01} "auxesis") (new-wordnet-type {apposition.n.02} {growth.n.01}) (english {apposition.n.02} "apposition") (new-wordnet-type {angiogenesis.n.01} {growth.n.01}) (english {angiogenesis.n.01} "angiogenesis") (new-wordnet-type {amelogenesis.n.01} {growth.n.01}) (english {amelogenesis.n.01} "amelogenesis") (new-wordnet-type {glycogenesis.n.01} {organic_process.n.01}) (english {glycogenesis.n.01} "glycogenesis") (new-wordnet-type {gastrulation.n.01} {organic_process.n.01}) (english {gastrulation.n.01} "gastrulation") (new-wordnet-type {extravasation.n.03} {organic_process.n.01}) (english {extravasation.n.03} "extravasation") (new-wordnet-type {urocele.n.01} {extravasation.n.03}) (english {urocele.n.01} "urocele") (new-wordnet-type {blood_extravasation.n.01} {extravasation.n.03}) (english {blood_extravasation.n.01} "blood extravasation") (new-wordnet-type {expression.n.07} {organic_process.n.01}) (english {expression.n.07} "expression") (new-wordnet-type {evolution.n.02} {organic_process.n.01}) (english {evolution.n.02} "evolution" "organic evolution" "phylogeny" "phylogenesis") (new-wordnet-type {speciation.n.01} {evolution.n.02}) (english {speciation.n.01} "speciation") (new-wordnet-type {microevolution.n.01} {evolution.n.02}) (english {microevolution.n.01} "microevolution") (new-wordnet-type {macroevolution.n.01} {evolution.n.02}) (english {macroevolution.n.01} "macroevolution") (new-wordnet-type {emergent_evolution.n.01} {evolution.n.02}) (english {emergent_evolution.n.01} "emergent evolution") (new-wordnet-type {anthropogenesis.n.01} {evolution.n.02}) (english {anthropogenesis.n.01} "anthropogenesis" "anthropogeny") (new-wordnet-type {anamorphosis.n.01} {evolution.n.02}) (english {anamorphosis.n.01} "anamorphosis" "anamorphism") (new-wordnet-type {eutrophication.n.01} {organic_process.n.01}) (english {eutrophication.n.01} "eutrophication") (new-wordnet-type {erythropoiesis.n.01} {organic_process.n.01}) (english {erythropoiesis.n.01} "erythropoiesis") (new-wordnet-type {effacement.n.01} {organic_process.n.01}) (english {effacement.n.01} "effacement") (new-wordnet-type {ecchymosis.n.02} {organic_process.n.01}) (english {ecchymosis.n.02} "ecchymosis") (new-wordnet-type {eburnation.n.01} {organic_process.n.01}) (english {eburnation.n.01} "eburnation") (new-wordnet-type {digestion.n.02} {organic_process.n.01}) (english {digestion.n.02} "digestion") (new-wordnet-type {gastric_digestion.n.01} {digestion.n.02}) (english {gastric_digestion.n.01} "gastric digestion") (new-wordnet-type {deossification.n.01} {organic_process.n.01}) (english {deossification.n.01} "deossification") (new-wordnet-type {defoliation.n.01} {organic_process.n.01}) (english {defoliation.n.01} "defoliation") (new-wordnet-type {cytokinesis.n.01} {organic_process.n.01}) (english {cytokinesis.n.01} "cytokinesis") (new-wordnet-type {crossing_over.n.01} {organic_process.n.01}) (english {crossing_over.n.01} "crossing over" "crossover") (new-wordnet-type {cell_division.n.01} {organic_process.n.01}) (english {cell_division.n.01} "cell division" "cellular division") (new-wordnet-type {mitosis.n.01} {cell_division.n.01}) (english {mitosis.n.01} "mitosis") (new-wordnet-type {meiosis.n.01} {cell_division.n.01}) (english {meiosis.n.01} "meiosis" "miosis" "reduction division") (new-wordnet-type {nondisjunction.n.01} {meiosis.n.01}) (english {nondisjunction.n.01} "nondisjunction") (new-wordnet-type {cleavage.n.03} {cell_division.n.01}) (english {cleavage.n.03} "cleavage" "segmentation") (new-wordnet-type {amitosis.n.01} {cell_division.n.01}) (english {amitosis.n.01} "amitosis") (new-wordnet-type {catabolism.n.01} {organic_process.n.01}) (english {catabolism.n.01} "catabolism" "katabolism" "dissimilation" "destructive metabolism") (new-wordnet-type {carbon_cycle.n.01} {organic_process.n.01}) (english {carbon_cycle.n.01} "carbon cycle") (new-wordnet-type {bodily_process.n.01} {organic_process.n.01}) (english {bodily_process.n.01} "bodily process" "body process" "bodily function" "activity") (new-wordnet-type {transpiration.n.02} {bodily_process.n.01}) (english {transpiration.n.02} "transpiration") (new-wordnet-type {tanning.n.01} {bodily_process.n.01}) (english {tanning.n.01} "tanning") (new-wordnet-type {sleeping.n.03} {bodily_process.n.01}) (english {sleeping.n.03} "sleeping") (new-wordnet-type {sleepwalking.n.01} {sleeping.n.03}) (english {sleepwalking.n.01} "sleepwalking" "somnambulism" "somnambulation" "noctambulism" "noctambulation") (new-wordnet-type {sleep_talking.n.01} {sleeping.n.03}) (english {sleep_talking.n.01} "sleep talking" "somniloquy" "somniloquism") (new-wordnet-type {nap.n.04} {sleeping.n.03}) (english {nap.n.04} "nap" "catnap" "cat sleep" "forty winks" "short sleep" "snooze") (new-wordnet-type {zizz.n.02} {nap.n.04}) (english {zizz.n.02} "zizz") (new-wordnet-type {siesta.n.01} {nap.n.04}) (english {siesta.n.01} "siesta") (new-wordnet-type {doze.n.01} {sleeping.n.03}) (english {doze.n.01} "doze" "drowse") (new-wordnet-type {sexual_activity.n.01} {bodily_process.n.01}) (english {sexual_activity.n.01} "sexual activity" "sexual practice" "sex" "sex activity") (new-wordnet-type {sexual_love.n.02} {sexual_activity.n.01}) (english {sexual_love.n.02} "sexual love" "lovemaking" "making love" "love" "love life") (new-wordnet-type {sexual_intercourse.n.01} {sexual_activity.n.01}) (english {sexual_intercourse.n.01} "sexual intercourse" "intercourse" "sex act" "copulation" "coitus" "coition" "sexual congress" "congress" "sexual relation" "relation" "carnal knowledge") (new-wordnet-type {unlawful_carnal_knowledge.n.01} {sexual_intercourse.n.01}) (english {unlawful_carnal_knowledge.n.01} "unlawful carnal knowledge" "criminal congress") (new-wordnet-type {incest.n.01} {unlawful_carnal_knowledge.n.01}) (english {incest.n.01} "incest") (new-wordnet-type {extramarital_sex.n.01} {unlawful_carnal_knowledge.n.01}) (english {extramarital_sex.n.01} "extramarital sex" "free love") (new-wordnet-type {fornication.n.01} {extramarital_sex.n.01}) (english {fornication.n.01} "fornication") (new-wordnet-type {adultery.n.01} {extramarital_sex.n.01}) (english {adultery.n.01} "adultery" "criminal conversation" "fornication") (new-wordnet-type {penetration.n.06} {sexual_intercourse.n.01}) (english {penetration.n.06} "penetration") (new-wordnet-type {hank_panky.n.01} {sexual_intercourse.n.01}) (english {hank_panky.n.01} "hank panky") (new-wordnet-type {fuck.n.01} {sexual_intercourse.n.01}) (english {fuck.n.01} "fuck" "fucking" "screw" "screwing" "ass" "nooky" "nookie" "piece of ass" "piece of tail" "roll in the hay" "shag" "shtup") (new-wordnet-type {defloration.n.02} {sexual_intercourse.n.01}) (english {defloration.n.02} "defloration") (new-wordnet-type {safe_sex.n.01} {sexual_activity.n.01}) (english {safe_sex.n.01} "safe sex") (new-wordnet-type {reproduction.n.05} {sexual_activity.n.01}) (english {reproduction.n.05} "reproduction" "procreation" "breeding" "facts of life") (new-wordnet-type {miscegenation.n.01} {reproduction.n.05}) (english {miscegenation.n.01} "miscegenation" "crossbreeding" "interbreeding") (new-wordnet-type {generation.n.07} {reproduction.n.05}) (english {generation.n.07} "generation" "multiplication" "propagation") (new-wordnet-type {biogenesis.n.02} {generation.n.07}) (english {biogenesis.n.02} "biogenesis" "biogeny") (new-wordnet-type {promiscuity.n.01} {sexual_activity.n.01}) (english {promiscuity.n.01} "promiscuity" "promiscuousness" "sleeping around") (new-wordnet-type {one-night_stand.n.01} {promiscuity.n.01}) (english {one-night_stand.n.01} "one-night stand") (new-wordnet-type {pleasure.n.05} {sexual_activity.n.01}) (english {pleasure.n.05} "pleasure") (new-wordnet-type {perversion.n.02} {sexual_activity.n.01}) (english {perversion.n.02} "perversion" "sexual perversion") (new-wordnet-type {sodomy.n.01} {perversion.n.02}) (english {sodomy.n.01} "sodomy" "buggery" "anal sex" "anal intercourse") (new-wordnet-type {paraphilia.n.01} {perversion.n.02}) (english {paraphilia.n.01} "paraphilia") (new-wordnet-type {zoophilia.n.01} {paraphilia.n.01}) (english {zoophilia.n.01} "zoophilia" "zoophilism") (new-wordnet-type {voyeurism.n.01} {paraphilia.n.01}) (english {voyeurism.n.01} "voyeurism") (new-wordnet-type {pedophilia.n.01} {paraphilia.n.01}) (english {pedophilia.n.01} "pedophilia" "paedophilia") (new-wordnet-type {pederasty.n.01} {paraphilia.n.01}) (english {pederasty.n.01} "pederasty" "paederasty") (new-wordnet-type {fetishism.n.02} {paraphilia.n.01}) (english {fetishism.n.02} "fetishism" "fetichism") (new-wordnet-type {exhibitionism.n.02} {paraphilia.n.01}) (english {exhibitionism.n.02} "exhibitionism" "immodesty") (new-wordnet-type {oral_sex.n.01} {perversion.n.02}) (english {oral_sex.n.01} "oral sex" "head") (new-wordnet-type {soixante-neuf.n.01} {oral_sex.n.01}) (english {soixante-neuf.n.01} "soixante-neuf" "sixty-nine") (new-wordnet-type {fellatio.n.01} {oral_sex.n.01}) (english {fellatio.n.01} "fellatio" "fellation") (new-wordnet-type {cock_sucking.n.01} {fellatio.n.01}) (english {cock_sucking.n.01} "cock sucking" "blowjob") (new-wordnet-type {cunnilingus.n.01} {oral_sex.n.01}) (english {cunnilingus.n.01} "cunnilingus" "cunnilinctus") (new-wordnet-type {outercourse.n.01} {sexual_activity.n.01}) (english {outercourse.n.01} "outercourse") (new-wordnet-type {lechery.n.01} {sexual_activity.n.01}) (english {lechery.n.01} "lechery") (new-wordnet-type {homosexuality.n.01} {sexual_activity.n.01}) (english {homosexuality.n.01} "homosexuality" "homosexualism" "homoeroticism" "queerness" "gayness") (new-wordnet-type {pederasty.n.01} {homosexuality.n.01}) (english {pederasty.n.01} "pederasty" "paederasty") (new-wordnet-type {lesbianism.n.01} {homosexuality.n.01}) (english {lesbianism.n.01} "lesbianism" "sapphism") (new-wordnet-type {tribadism.n.01} {lesbianism.n.01}) (english {tribadism.n.01} "tribadism") (new-wordnet-type {inversion.n.07} {homosexuality.n.01}) (english {inversion.n.07} "inversion" "sexual inversion") (new-wordnet-type {heterosexuality.n.01} {sexual_activity.n.01}) (english {heterosexuality.n.01} "heterosexuality" "heterosexualism" "straightness") (new-wordnet-type {foreplay.n.01} {sexual_activity.n.01}) (english {foreplay.n.01} "foreplay" "arousal" "stimulation") (new-wordnet-type {feel.n.04} {foreplay.n.01}) (english {feel.n.04} "feel") (new-wordnet-type {caressing.n.01} {foreplay.n.01}) (english {caressing.n.01} "caressing" "cuddling" "fondling" "hugging" "kissing" "necking" "petting" "smooching" "snuggling") (new-wordnet-type {snogging.n.01} {caressing.n.01}) (english {snogging.n.01} "snogging") (new-wordnet-type {coupling.n.03} {sexual_activity.n.01}) (english {coupling.n.03} "coupling" "mating" "pairing" "conjugation" "union" "sexual union") (new-wordnet-type {servicing.n.01} {coupling.n.03}) (english {servicing.n.01} "servicing" "service") (new-wordnet-type {inbreeding.n.01} {coupling.n.03}) (english {inbreeding.n.01} "inbreeding") (new-wordnet-type {hybridization.n.01} {coupling.n.03}) (english {hybridization.n.01} "hybridization" "hybridisation" "crossbreeding" "crossing" "cross" "interbreeding" "hybridizing") (new-wordnet-type {testcross.n.01} {hybridization.n.01}) (english {testcross.n.01} "testcross" "test-cross") (new-wordnet-type {reciprocal_cross.n.01} {hybridization.n.01}) (english {reciprocal_cross.n.01} "reciprocal cross" "reciprocal") (new-wordnet-type {monohybrid_cross.n.01} {hybridization.n.01}) (english {monohybrid_cross.n.01} "monohybrid cross") (new-wordnet-type {dihybrid_cross.n.01} {hybridization.n.01}) (english {dihybrid_cross.n.01} "dihybrid cross") (new-wordnet-type {disassortative_mating.n.01} {coupling.n.03}) (english {disassortative_mating.n.01} "disassortative mating") (new-wordnet-type {assortative_mating.n.01} {coupling.n.03}) (english {assortative_mating.n.01} "assortative mating") (new-wordnet-type {conception.n.02} {sexual_activity.n.01}) (english {conception.n.02} "conception") (new-wordnet-type {carnal_abuse.n.01} {sexual_activity.n.01}) (english {carnal_abuse.n.01} "carnal abuse") (new-wordnet-type {bondage.n.03} {sexual_activity.n.01}) (english {bondage.n.03} "bondage") (new-wordnet-type {bisexuality.n.02} {sexual_activity.n.01}) (english {bisexuality.n.02} "bisexuality") (new-wordnet-type {bestiality.n.02} {sexual_activity.n.01}) (english {bestiality.n.02} "bestiality" "zooerastia" "zooerasty") (new-wordnet-type {autoeroticism.n.01} {sexual_activity.n.01}) (english {autoeroticism.n.01} "autoeroticism" "autoerotism") (new-wordnet-type {masturbation.n.01} {autoeroticism.n.01}) (english {masturbation.n.01} "masturbation" "onanism") (new-wordnet-type {self-stimulation.n.01} {masturbation.n.01}) (english {self-stimulation.n.01} "self-stimulation" "self-abuse") (new-wordnet-type {jacking_off.n.01} {masturbation.n.01}) (english {jacking_off.n.01} "jacking off" "jerking off" "hand job" "wank") (new-wordnet-type {frottage.n.01} {masturbation.n.01}) (english {frottage.n.01} "frottage") (new-wordnet-type {respiration.n.02} {bodily_process.n.01}) (english {respiration.n.02} "respiration") (new-wordnet-type {reaction.n.03} {bodily_process.n.01}) (english {reaction.n.03} "reaction" "response") (new-wordnet-type {tropism.n.01} {reaction.n.03}) (english {tropism.n.01} "tropism") (new-wordnet-type {trophotropism.n.01} {tropism.n.01}) (english {trophotropism.n.01} "trophotropism") (new-wordnet-type {thermotropism.n.01} {tropism.n.01}) (english {thermotropism.n.01} "thermotropism") (new-wordnet-type {phototropism.n.01} {tropism.n.01}) (english {phototropism.n.01} "phototropism") (new-wordnet-type {neurotropism.n.01} {tropism.n.01}) (english {neurotropism.n.01} "neurotropism") (new-wordnet-type {meteortropism.n.01} {tropism.n.01}) (english {meteortropism.n.01} "meteortropism") (new-wordnet-type {heliotropism.n.01} {tropism.n.01}) (english {heliotropism.n.01} "heliotropism") (new-wordnet-type {geotropism.n.01} {tropism.n.01}) (english {geotropism.n.01} "geotropism") (new-wordnet-type {ergotropism.n.01} {tropism.n.01}) (english {ergotropism.n.01} "ergotropism") (new-wordnet-type {transfusion_reaction.n.01} {reaction.n.03}) (english {transfusion_reaction.n.01} "transfusion reaction") (new-wordnet-type {taxis.n.01} {reaction.n.03}) (english {taxis.n.01} "taxis") (new-wordnet-type {chemotaxis.n.01} {taxis.n.01}) (english {chemotaxis.n.01} "chemotaxis") (new-wordnet-type {positive_chemotaxis.n.01} {chemotaxis.n.01}) (english {positive_chemotaxis.n.01} "positive chemotaxis") (new-wordnet-type {negative_chemotaxis.n.01} {chemotaxis.n.01}) (english {negative_chemotaxis.n.01} "negative chemotaxis") (new-wordnet-type {reflex.n.01} {reaction.n.03}) (english {reflex.n.01} "reflex" "reflex response" "reflex action" "instinctive reflex" "innate reflex" "inborn reflex" "unconditioned reflex" "physiological reaction") (new-wordnet-type {yawn.n.01} {reflex.n.01}) (english {yawn.n.01} "yawn" "yawning" "oscitance" "oscitancy") (new-wordnet-type {pandiculation.n.01} {yawn.n.01}) (english {pandiculation.n.01} "pandiculation") (new-wordnet-type {vomit.n.03} {reflex.n.01}) (english {vomit.n.03} "vomit" "vomiting" "emesis" "regurgitation" "disgorgement" "puking") (new-wordnet-type {rumination.n.03} {vomit.n.03}) (english {rumination.n.03} "rumination") (new-wordnet-type {hyperemesis.n.01} {vomit.n.03}) (english {hyperemesis.n.01} "hyperemesis") (new-wordnet-type {hyperemesis_gravidarum.n.01} {hyperemesis.n.01}) (english {hyperemesis_gravidarum.n.01} "hyperemesis gravidarum") (new-wordnet-type {hematemesis.n.01} {vomit.n.03}) (english {hematemesis.n.01} "hematemesis" "haematemesis") (new-wordnet-type {tremble.n.01} {reflex.n.01}) (english {tremble.n.01} "tremble" "shiver" "shake") (new-wordnet-type {suckling_reflex.n.01} {reflex.n.01}) (english {suckling_reflex.n.01} "suckling reflex") (new-wordnet-type {stretch_reflex.n.01} {reflex.n.01}) (english {stretch_reflex.n.01} "stretch reflex" "myotactic reflex") (new-wordnet-type {startle.n.01} {reflex.n.01}) (english {startle.n.01} "startle" "jump" "start") (new-wordnet-type {wince.n.02} {startle.n.01}) (english {wince.n.02} "wince" "flinch") (new-wordnet-type {startle_response.n.01} {startle.n.01}) (english {startle_response.n.01} "startle response" "startle reaction") (new-wordnet-type {startle_reflex.n.01} {startle.n.01}) (english {startle_reflex.n.01} "startle reflex" "Moro reflex") (new-wordnet-type {sneeze.n.01} {reflex.n.01}) (english {sneeze.n.01} "sneeze" "sneezing" "sternutation") (new-wordnet-type {rooting_reflex.n.01} {reflex.n.01}) (english {rooting_reflex.n.01} "rooting reflex") (new-wordnet-type {plantar_reflex.n.01} {reflex.n.01}) (english {plantar_reflex.n.01} "plantar reflex") (new-wordnet-type {pilomotor_reflex.n.01} {reflex.n.01}) (english {pilomotor_reflex.n.01} "pilomotor reflex" "gooseflesh" "goose bump" "goosebump" "goose pimple" "goose skin" "horripilation") (new-wordnet-type {pharyngeal_reflex.n.01} {reflex.n.01}) (english {pharyngeal_reflex.n.01} "pharyngeal reflex" "gag reflex") (new-wordnet-type {mydriasis.n.01} {reflex.n.01}) (english {mydriasis.n.01} "mydriasis") (new-wordnet-type {micturition_reflex.n.01} {reflex.n.01}) (english {micturition_reflex.n.01} "micturition reflex") (new-wordnet-type {light_reflex.n.01} {reflex.n.01}) (english {light_reflex.n.01} "light reflex" "pupillary reflex" "miosis" "myosis") (new-wordnet-type {knee_jerk.n.01} {reflex.n.01}) (english {knee_jerk.n.01} "knee jerk" "knee-jerk reflex" "patellar reflex") (new-wordnet-type {hiccup.n.01} {reflex.n.01}) (english {hiccup.n.01} "hiccup" "hiccough" "singultus") (new-wordnet-type {gulp.n.02} {reflex.n.01}) (english {gulp.n.02} "gulp" "gulping") (new-wordnet-type {fart.n.01} {reflex.n.01}) (english {fart.n.01} "fart" "farting" "flatus" "wind" "breaking wind") (new-wordnet-type {electric_shock.n.03} {reflex.n.01}) (english {electric_shock.n.03} "electric shock" "electrical shock" "shock") (new-wordnet-type {defecation_reflex.n.01} {reflex.n.01}) (english {defecation_reflex.n.01} "defecation reflex" "rectal reflex") (new-wordnet-type {blush.n.02} {reflex.n.01}) (english {blush.n.02} "blush" "flush") (new-wordnet-type {blink.n.01} {reflex.n.01}) (english {blink.n.01} "blink" "eye blink" "blinking" "wink" "winking" "nictitation" "nictation") (new-wordnet-type {palpebration.n.01} {blink.n.01}) (english {palpebration.n.01} "palpebration") (new-wordnet-type {belch.n.01} {reflex.n.01}) (english {belch.n.01} "belch" "belching" "burp" "burping" "eructation") (new-wordnet-type {babinski.n.01} {reflex.n.01}) (english {babinski.n.01} "Babinski" "Babinski reflex" "Babinski sign") (new-wordnet-type {accommodation_reflex.n.01} {reflex.n.01}) (english {accommodation_reflex.n.01} "accommodation reflex") (new-wordnet-type {rebound.n.02} {reaction.n.03}) (english {rebound.n.02} "rebound") (new-wordnet-type {passage.n.08} {reaction.n.03}) (english {passage.n.08} "passage" "passing") (new-wordnet-type {overreaction.n.01} {reaction.n.03}) (english {overreaction.n.01} "overreaction") (new-wordnet-type {learned_reaction.n.01} {reaction.n.03}) (english {learned_reaction.n.01} "learned reaction" "learned response") (new-wordnet-type {conditional_reflex.n.01} {learned_reaction.n.01}) (english {conditional_reflex.n.01} "conditional reflex" "conditioned reflex" "acquired reflex" "conditional reaction" "conditioned reaction" "conditional response" "conditioned response") (new-wordnet-type {conditioned_avoidance.n.01} {conditional_reflex.n.01}) (english {conditioned_avoidance.n.01} "conditioned avoidance" "conditioned avoidance response") (new-wordnet-type {kinesis.n.01} {reaction.n.03}) (english {kinesis.n.01} "kinesis") (new-wordnet-type {immune_response.n.01} {reaction.n.03}) (english {immune_response.n.01} "immune response" "immune reaction" "immunologic response") (new-wordnet-type {humoral_immune_response.n.01} {immune_response.n.01}) (english {humoral_immune_response.n.01} "humoral immune response") (new-wordnet-type {complement_fixation.n.01} {immune_response.n.01}) (english {complement_fixation.n.01} "complement fixation") (new-wordnet-type {cell-mediated_immune_response.n.01} {immune_response.n.01}) (english {cell-mediated_immune_response.n.01} "cell-mediated immune response") (new-wordnet-type {anamnestic_response.n.01} {immune_response.n.01}) (english {anamnestic_response.n.01} "anamnestic response" "anamnestic reaction") (new-wordnet-type {galvanic_skin_response.n.01} {reaction.n.03}) (english {galvanic_skin_response.n.01} "galvanic skin response" "GSR" "psychogalvanic response" "electrodermal response" "electrical skin response" "Fere phenomenon" "Tarchanoff phenomenon") (new-wordnet-type {double_take.n.01} {reaction.n.03}) (english {double_take.n.01} "double take") (new-wordnet-type {automatism.n.01} {reaction.n.03}) (english {automatism.n.01} "automatism") (new-wordnet-type {answer.n.05} {reaction.n.03}) (english {answer.n.05} "answer") (new-wordnet-type {psilosis.n.02} {bodily_process.n.01}) (english {psilosis.n.02} "psilosis") (new-wordnet-type {placentation.n.01} {bodily_process.n.01}) (english {placentation.n.01} "placentation") (new-wordnet-type {pinocytosis.n.01} {bodily_process.n.01}) (english {pinocytosis.n.01} "pinocytosis") (new-wordnet-type {phagocytosis.n.01} {bodily_process.n.01}) (english {phagocytosis.n.01} "phagocytosis") (new-wordnet-type {perspiration.n.02} {bodily_process.n.01}) (english {perspiration.n.02} "perspiration" "sweating" "diaphoresis" "sudation" "hidrosis") (new-wordnet-type {hyperhidrosis.n.01} {perspiration.n.02}) (english {hyperhidrosis.n.01} "hyperhidrosis" "hyperidrosis" "polyhidrosis") (new-wordnet-type {peristalsis.n.01} {bodily_process.n.01}) (english {peristalsis.n.01} "peristalsis" "vermiculation") (new-wordnet-type {overactivity.n.01} {bodily_process.n.01}) (english {overactivity.n.01} "overactivity") (new-wordnet-type {opsonization.n.01} {bodily_process.n.01}) (english {opsonization.n.01} "opsonization" "opsonisation") (new-wordnet-type {lactation.n.02} {bodily_process.n.01}) (english {lactation.n.02} "lactation") (new-wordnet-type {lacrimation.n.01} {bodily_process.n.01}) (english {lacrimation.n.01} "lacrimation" "lachrymation" "tearing" "watering") (new-wordnet-type {insemination.n.02} {bodily_process.n.01}) (english {insemination.n.02} "insemination") (new-wordnet-type {artificial_insemination.n.01} {insemination.n.02}) (english {artificial_insemination.n.01} "artificial insemination" "AI") (new-wordnet-type {hypostasis.n.02} {bodily_process.n.01}) (english {hypostasis.n.02} "hypostasis") (new-wordnet-type {healing.n.01} {bodily_process.n.01}) (english {healing.n.01} "healing") (new-wordnet-type {union.n.06} {healing.n.01}) (english {union.n.06} "union" "conglutination") (new-wordnet-type {convalescence.n.01} {healing.n.01}) (english {convalescence.n.01} "convalescence" "recuperation" "recovery") (new-wordnet-type {rally.n.03} {convalescence.n.01}) (english {rally.n.03} "rally") (new-wordnet-type {lysis.n.01} {convalescence.n.01}) (english {lysis.n.01} "lysis") (new-wordnet-type {festering.n.01} {bodily_process.n.01}) (english {festering.n.01} "festering" "suppuration" "maturation") (new-wordnet-type {expectoration.n.01} {bodily_process.n.01}) (english {expectoration.n.01} "expectoration") (new-wordnet-type {discharge.n.04} {bodily_process.n.01}) (english {discharge.n.04} "discharge" "emission" "expelling") (new-wordnet-type {menstruation.n.01} {discharge.n.04}) (english {menstruation.n.01} "menstruation" "menses" "menstruum" "catamenia" "period" "flow") (new-wordnet-type {oligomenorrhea.n.01} {menstruation.n.01}) (english {oligomenorrhea.n.01} "oligomenorrhea") (new-wordnet-type {menorrhagia.n.01} {menstruation.n.01}) (english {menorrhagia.n.01} "menorrhagia" "hypermenorrhea") (new-wordnet-type {elimination.n.02} {discharge.n.04}) (english {elimination.n.02} "elimination" "evacuation" "excretion" "excreting" "voiding") (new-wordnet-type {micturition.n.01} {elimination.n.02}) (english {micturition.n.01} "micturition" "urination") (new-wordnet-type {peeing.n.01} {micturition.n.01}) (english {peeing.n.01} "peeing" "pee" "pissing" "piss") (new-wordnet-type {oliguria.n.02} {micturition.n.01}) (english {oliguria.n.02} "oliguria") (new-wordnet-type {nocturia.n.01} {micturition.n.01}) (english {nocturia.n.01} "nocturia" "nycturia") (new-wordnet-type {lithuresis.n.01} {micturition.n.01}) (english {lithuresis.n.01} "lithuresis") (new-wordnet-type {leak.n.03} {micturition.n.01}) (english {leak.n.03} "leak" "wetting" "making water" "passing water") (new-wordnet-type {incontinence.n.01} {elimination.n.02}) (english {incontinence.n.01} "incontinence" "incontinency") (new-wordnet-type {enuresis.n.01} {incontinence.n.01}) (english {enuresis.n.01} "enuresis" "urinary incontinence") (new-wordnet-type {urge_incontinence.n.01} {enuresis.n.01}) (english {urge_incontinence.n.01} "urge incontinence") (new-wordnet-type {stress_incontinence.n.01} {enuresis.n.01}) (english {stress_incontinence.n.01} "stress incontinence") (new-wordnet-type {overflow_incontinence.n.01} {enuresis.n.01}) (english {overflow_incontinence.n.01} "overflow incontinence") (new-wordnet-type {bed-wetting.n.01} {enuresis.n.01}) (english {bed-wetting.n.01} "bed-wetting") (new-wordnet-type {defecation.n.01} {elimination.n.02}) (english {defecation.n.01} "defecation" "laxation" "shitting") (new-wordnet-type {urochesia.n.01} {defecation.n.01}) (english {urochesia.n.01} "urochesia" "urochezia") (new-wordnet-type {shit.n.04} {defecation.n.01}) (english {shit.n.04} "shit" "dump") (new-wordnet-type {hematochezia.n.01} {defecation.n.01}) (english {hematochezia.n.01} "hematochezia" "haematochezia") (new-wordnet-type {bowel_movement.n.01} {defecation.n.01}) (english {bowel_movement.n.01} "bowel movement" "movement" "bm") (new-wordnet-type {ejaculation.n.02} {discharge.n.04}) (english {ejaculation.n.02} "ejaculation") (new-wordnet-type {premature_ejaculation.n.01} {ejaculation.n.02}) (english {premature_ejaculation.n.01} "premature ejaculation") (new-wordnet-type {nocturnal_emission.n.01} {ejaculation.n.02}) (english {nocturnal_emission.n.01} "nocturnal emission") (new-wordnet-type {crying.n.01} {bodily_process.n.01}) (english {crying.n.01} "crying" "weeping" "tears") (new-wordnet-type {wailing.n.01} {crying.n.01}) (english {wailing.n.01} "wailing" "bawling") (new-wordnet-type {sob.n.03} {crying.n.01}) (english {sob.n.03} "sob" "sobbing") (new-wordnet-type {snivel.n.01} {crying.n.01}) (english {snivel.n.01} "snivel" "sniveling") (new-wordnet-type {control.n.03} {bodily_process.n.01}) (english {control.n.03} "control") (new-wordnet-type {motor_control.n.01} {control.n.03}) (english {motor_control.n.01} "motor control") (new-wordnet-type {consumption.n.01} {bodily_process.n.01}) (english {consumption.n.01} "consumption" "ingestion" "intake" "uptake") (new-wordnet-type {swallow.n.02} {consumption.n.01}) (english {swallow.n.02} "swallow" "drink" "deglutition") (new-wordnet-type {sip.n.01} {swallow.n.02}) (english {sip.n.01} "sip") (new-wordnet-type {gulp.n.01} {swallow.n.02}) (english {gulp.n.01} "gulp" "draft" "draught" "swig") (new-wordnet-type {aerophagia.n.01} {swallow.n.02}) (english {aerophagia.n.01} "aerophagia") (new-wordnet-type {sucking.n.01} {consumption.n.01}) (english {sucking.n.01} "sucking" "suck" "suction") (new-wordnet-type {eating.n.01} {consumption.n.01}) (english {eating.n.01} "eating" "feeding") (new-wordnet-type {tasting.n.03} {eating.n.01}) (english {tasting.n.03} "tasting" "savoring" "savouring" "relishing" "degustation") (new-wordnet-type {supping.n.01} {eating.n.01}) (english {supping.n.01} "supping") (new-wordnet-type {scatophagy.n.01} {eating.n.01}) (english {scatophagy.n.01} "scatophagy") (new-wordnet-type {repletion.n.02} {eating.n.01}) (english {repletion.n.02} "repletion" "surfeit") (new-wordnet-type {omophagia.n.01} {eating.n.01}) (english {omophagia.n.01} "omophagia") (new-wordnet-type {necrophagia.n.01} {eating.n.01}) (english {necrophagia.n.01} "necrophagia" "necrophagy") (new-wordnet-type {mycophagy.n.01} {eating.n.01}) (english {mycophagy.n.01} "mycophagy") (new-wordnet-type {lunching.n.01} {eating.n.01}) (english {lunching.n.01} "lunching") (new-wordnet-type {graze.n.02} {eating.n.01}) (english {graze.n.02} "graze" "grazing") (new-wordnet-type {feasting.n.01} {eating.n.01}) (english {feasting.n.01} "feasting" "banqueting") (new-wordnet-type {engorgement.n.02} {eating.n.01}) (english {engorgement.n.02} "engorgement") (new-wordnet-type {dining.n.01} {eating.n.01}) (english {dining.n.01} "dining") (new-wordnet-type {dutch_treat.n.01} {dining.n.01}) (english {dutch_treat.n.01} "Dutch treat") (new-wordnet-type {coprophagy.n.01} {eating.n.01}) (english {coprophagy.n.01} "coprophagy" "coprophagia") (new-wordnet-type {browse.n.03} {eating.n.01}) (english {browse.n.03} "browse" "browsing") (new-wordnet-type {bite.n.08} {eating.n.01}) (english {bite.n.08} "bite" "chomp") (new-wordnet-type {nip.n.06} {bite.n.08}) (english {nip.n.06} "nip" "pinch") (new-wordnet-type {nibble.n.02} {bite.n.08}) (english {nibble.n.02} "nibble") (new-wordnet-type {munch.n.02} {bite.n.08}) (english {munch.n.02} "munch") (new-wordnet-type {drinking.n.01} {consumption.n.01}) (english {drinking.n.01} "drinking" "imbibing" "imbibition") (new-wordnet-type {potation.n.02} {drinking.n.01}) (english {potation.n.02} "potation") (new-wordnet-type {gulping.n.02} {drinking.n.01}) (english {gulping.n.02} "gulping" "swilling" "guzzling") (new-wordnet-type {breathing.n.01} {bodily_process.n.01}) (english {breathing.n.01} "breathing" "external respiration" "respiration" "ventilation") (new-wordnet-type {wheeze.n.01} {breathing.n.01}) (english {wheeze.n.01} "wheeze") (new-wordnet-type {snuffle.n.01} {breathing.n.01}) (english {snuffle.n.01} "snuffle" "sniffle" "snivel") (new-wordnet-type {snore.n.02} {breathing.n.01}) (english {snore.n.02} "snore" "snoring" "stertor") (new-wordnet-type {smoke.n.07} {breathing.n.01}) (english {smoke.n.07} "smoke" "smoking") (new-wordnet-type {puffing.n.01} {smoke.n.07}) (english {puffing.n.01} "puffing") (new-wordnet-type {second_wind.n.02} {breathing.n.01}) (english {second_wind.n.02} "second wind") (new-wordnet-type {periodic_breathing.n.01} {breathing.n.01}) (english {periodic_breathing.n.01} "periodic breathing" "Cheyne-Stokes respiration") (new-wordnet-type {panting.n.01} {breathing.n.01}) (english {panting.n.01} "panting" "heaving") (new-wordnet-type {hypopnea.n.01} {breathing.n.01}) (english {hypopnea.n.01} "hypopnea") (new-wordnet-type {hyperventilation.n.01} {breathing.n.01}) (english {hyperventilation.n.01} "hyperventilation") (new-wordnet-type {hyperpnea.n.01} {breathing.n.01}) (english {hyperpnea.n.01} "hyperpnea") (new-wordnet-type {eupnea.n.01} {breathing.n.01}) (english {eupnea.n.01} "eupnea" "eupnoea") (new-wordnet-type {artificial_respiration.n.01} {breathing.n.01}) (english {artificial_respiration.n.01} "artificial respiration") (new-wordnet-type {abdominal_breathing.n.01} {breathing.n.01}) (english {abdominal_breathing.n.01} "abdominal breathing") (new-wordnet-type {breath.n.01} {bodily_process.n.01}) (english {breath.n.01} "breath") (new-wordnet-type {inhalation.n.01} {breath.n.01}) (english {inhalation.n.01} "inhalation" "inspiration" "aspiration" "intake" "breathing in") (new-wordnet-type {puff.n.07} {inhalation.n.01}) (english {puff.n.07} "puff" "drag" "pull") (new-wordnet-type {toke.n.01} {puff.n.07}) (english {toke.n.01} "toke") (new-wordnet-type {gasp.n.01} {inhalation.n.01}) (english {gasp.n.01} "gasp" "pant") (new-wordnet-type {exhalation.n.02} {breath.n.01}) (english {exhalation.n.02} "exhalation" "expiration" "breathing out") (new-wordnet-type {wind.n.03} {exhalation.n.02}) (english {wind.n.03} "wind")